diff options
author | Frank Karlitschek <frank@owncloud.org> | 2014-06-02 21:26:43 +0200 |
---|---|---|
committer | Frank Karlitschek <frank@owncloud.org> | 2014-06-02 21:26:43 +0200 |
commit | f12a5248a3ee4fd71ade32580afdf0455fbc6764 (patch) | |
tree | 5da750f091d84fe3c15495daca3ce999e90a187b /apps | |
parent | c88c0b9a13231478c626296d78aac7c1f66d87d9 (diff) | |
parent | fbe42a771f433a01e54f744998593ae4cf07ed82 (diff) | |
download | nextcloud-server-f12a5248a3ee4fd71ade32580afdf0455fbc6764.tar.gz nextcloud-server-f12a5248a3ee4fd71ade32580afdf0455fbc6764.zip |
Merge pull request #8820 from owncloud/design-details
Design details
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files/css/files.css | 15 | ||||
-rw-r--r-- | apps/files_external/css/settings.css | 5 |
2 files changed, 16 insertions, 4 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index decfdbd2cda..11cbc4b7f57 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -116,6 +116,12 @@ width: 230px; } +/* move Deleted Files to bottom of sidebar */ +.nav-trashbin { + position: absolute !important; + bottom: 0; +} + .app-files #app-settings { width: 229px; /* DUH */ } @@ -155,8 +161,9 @@ tr:hover span.extension { color: #777; } -table tr.mouseOver td { background-color:#eee; } -table th { height:24px; padding:0 8px; } +table tr.mouseOver td { + background-color: #eee; +} table th, table th a { color: #999; } @@ -179,7 +186,7 @@ table th .columntitle.name { } /* hover effect on sortable column */ table th a.columntitle:hover { - background-color: #F0F0F0; + color: #000; } table th .sort-indicator { width: 10px; @@ -266,7 +273,7 @@ table td.filename .nametext, .uploadtext, .modified { float:left; padding:14px 0 .modified { position: relative; - padding-left: 8px; + padding-left: 15px; overflow: hidden; text-overflow: ellipsis; width: 90%; diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index ee2c0aae64b..01dd5aece8c 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -20,3 +20,8 @@ tr:hover>td.remove>img { visibility:visible; cursor:pointer; } position: relative; top: 3px; } + + +#externalStorage td.status .success { + border-radius: 50%; +} |