diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-06-09 15:41:06 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2017-06-13 11:17:43 +0200 |
commit | 3f549609b9cca603418ad7b55401658627e99977 (patch) | |
tree | 75373a0edca02f8b1467860c18fc48a81d48d983 /apps/files/css | |
parent | 0554dba69eeb7caff308caf914331e80ed14380c (diff) | |
download | nextcloud-server-3f549609b9cca603418ad7b55401658627e99977.tar.gz nextcloud-server-3f549609b9cca603418ad7b55401658627e99977.zip |
Style quota entry in files view
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'apps/files/css')
-rw-r--r-- | apps/files/css/files.scss | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/apps/files/css/files.scss b/apps/files/css/files.scss index 9fcc10caf46..7a9381662fc 100644 --- a/apps/files/css/files.scss +++ b/apps/files/css/files.scss @@ -108,6 +108,9 @@ .nav-icon-trashbin { background-image: url('../img/delete.svg?v=1'); } +.nav-icon-quota { + background-image: url('../img/quota.svg?v=1'); +} #app-navigation .nav-files a.nav-icon-files { width: auto; @@ -752,11 +755,22 @@ table.dragshadow td.size { #quota { margin: 0 !important; border: none; - div { - border-radius: 0; + background-color: transparent; + + .quota-container { + height: 5px; + border-radius: 3px; + + div { + height: 100%; + background-color: $color-primary; + } } } -#quotatext { - padding: 3px; +#quotatext, +#quotatext-additional { + padding: 0; + height: 30px; + line-height: 30px; } |