Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-19 01:00:04 +0400
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-07-19 01:00:04 +0400
commit100eb2b611872255d83d38620f01adede789c9a1 (patch)
tree80f47cfac7953eeef14f6003c5596051813d3a6c /apps/files_external/css
parent279a71acb37ac373703ed05050771ef971b5d9a1 (diff)
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.css24
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; }