diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-18 23:00:04 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-07-18 23:00:04 +0200 |
commit | 100eb2b611872255d83d38620f01adede789c9a1 (patch) | |
tree | 80f47cfac7953eeef14f6003c5596051813d3a6c /apps/files_external/css | |
parent | 279a71acb37ac373703ed05050771ef971b5d9a1 (diff) | |
download | nextcloud-server-100eb2b611872255d83d38620f01adede789c9a1.tar.gz nextcloud-server-100eb2b611872255d83d38620f01adede789c9a1.zip |
replace external storage status images with CSS, also use form to distinguish, fix #3910
Diffstat (limited to 'apps/files_external/css')
-rw-r--r-- | apps/files_external/css/settings.css | 24 |
1 files changed, 19 insertions, 5 deletions
diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index 94b453793b1..f2f40247b28 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -1,10 +1,24 @@ -td.status>span { display:inline-block; height:16px; width:16px; } -span.success { background-image: url('../img/success.png'); background-repeat:no-repeat; } -span.error { background-image: url('../img/error.png'); background-repeat:no-repeat; } -span.waiting { background-image: url('../img/waiting.png'); background-repeat:no-repeat; } +td.status > span { + display: inline-block; + height: 16px; + width: 16px; + vertical-align: text-bottom; +} + +span.success { + background: #37ce02; + border-radius: 8px; +} +span.error { + background: #ce3702; +} +span.waiting { + background: none; +} + td.mountPoint, td.backend { width:10em; } td.remove>img { visibility:hidden; padding-top:0.8em; } tr:hover>td.remove>img { visibility:visible; cursor:pointer; } #addMountPoint>td { border:none; } #addMountPoint>td.applicable { visibility:hidden; } -#selectBackend { margin-left:-10px; }
\ No newline at end of file +#selectBackend { margin-left:-10px; } |