diff options
author | Carl Schwan <carl@carlschwan.eu> | 2022-07-18 13:25:10 +0200 |
---|---|---|
committer | Carl Schwan <carl@carlschwan.eu> | 2022-07-18 13:55:36 +0200 |
commit | 0703d0fc6b8b2eb8d6534a922e91856ef7835298 (patch) | |
tree | ffe66e4afeeead0cee87bda77dcd397fc447fcf7 /apps/files/css/files.scss | |
parent | 929aaaa129519e554f56b19815d0e2ff0f41cd2b (diff) | |
download | nextcloud-server-0703d0fc6b8b2eb8d6534a922e91856ef7835298.tar.gz nextcloud-server-0703d0fc6b8b2eb8d6534a922e91856ef7835298.zip |
Fix quota nav item
- Spacing was not correctly set
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Diffstat (limited to 'apps/files/css/files.scss')
-rw-r--r-- | apps/files/css/files.scss | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index b77c6ca2bd1..6242eb4a5c0 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -886,37 +886,33 @@ table.dragshadow td.size { } } -#quota { +.quota-navigation-item { margin: 0 !important; border: none; border-radius: 0; background-color: transparent; z-index:1; + height: 44px; + display: flex !important; + flex-direction: column; + + &__text { + height: 30px; + } - > a[href='#'] { + &[href='#'] { // if no link is set, no mouse feedback &, * { cursor: default !important; } } - .quota-container { + &__container { height: 5px; border-radius: var(--border-radius); - - div { - height: 100%; - background-color: var(--color-primary); - } } } -#quotatext { - padding: 0; - height: 30px; - line-height: 30px; -} - /* GRID */ #filestable.view-grid:not(.hidden) { $grid-size: 160px; |