diff options
author | Lucas Azevedo <lhs_azevedo@hotmail.com> | 2023-09-04 07:52:35 -0300 |
---|---|---|
committer | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2023-09-13 10:23:10 +0200 |
commit | 146e9eeb9f3c7d4462ea575788be9327a51413ea (patch) | |
tree | aca3efac658bca621b539ef3d054c1e52a6c512d /apps/files/css | |
parent | c6e6ebb9992882ad2a2bcd49252bffe2248103c4 (diff) | |
download | nextcloud-server-146e9eeb9f3c7d4462ea575788be9327a51413ea.tar.gz nextcloud-server-146e9eeb9f3c7d4462ea575788be9327a51413ea.zip |
Render inline system tags using new DAV properties API
Signed-off-by: Lucas Azevedo <lhs_azevedo@hotmail.com>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 1b5d10e6cd1..194d1542de9 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -406,40 +406,6 @@ table { z-index: 10; padding: 0 20px 0 0; } - - /* System tags */ - .system-tags { - --min-size: 32px; - display: flex; - justify-content: center; - align-items: center; - min-width: calc(var(--min-size) * 2); - max-width: 300px; - - .system-tags__tag { - padding: 5px 10px; - border: 1px solid; - border-radius: var(--border-radius-pill); - border-color: var(--color-border); - color: var(--color-text-maxcontrast); - height: var(--min-size); - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - line-height: 22px; // min-size - 2 * 5px padding - text-align: center; - - &--more { - overflow: visible; - text-overflow: initial; - } - - // Proper spacing if multiple shown - & + .system-tags__tag { - margin-left: 5px; - } - } - } } } |