diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-04-18 10:42:21 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-04-22 18:30:51 -0700 |
commit | 9546f4cc8a3ca6fa9f227864af06ce7e6463b030 (patch) | |
tree | 7bd57a552e41b822a5f77c43f6a4edffea1d31f8 /core/css | |
parent | 9476b0df79aae557b042f26a4e53f0f85352129e (diff) | |
download | nextcloud-server-9546f4cc8a3ca6fa9f227864af06ce7e6463b030.tar.gz nextcloud-server-9546f4cc8a3ca6fa9f227864af06ce7e6463b030.zip |
fix: Fix truncation on public shares
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core/css')
-rw-r--r-- | core/css/header.scss | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/css/header.scss b/core/css/header.scss index a9acb90adbd..eb7c4e8dcf4 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -230,6 +230,17 @@ flex: 1 1 100%; } +.header-info { + display: flex; + flex-direction: column; + overflow: hidden; +} + +.header-title { + overflow: hidden; + text-overflow: ellipsis; +} + .header-shared-by { color: var(--color-primary-element-text); position: relative; |