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:
authorStephane V <stephane@vergeylen.eu>2014-07-16 00:33:30 +0400
committerStephane V <stephane@vergeylen.eu>2014-07-16 00:33:30 +0400
commit934229d1fb839190f64f56f27e4849a46725a7a6 (patch)
tree2dda9078edc7cdff737204bcaa795f98f41b0614 /apps/files_external/css
parent10b59f101f324dc1379d48b6a7d3daeb48de7e08 (diff)
Fix #9590. Fix #9612.
For external storage with lots of parameter settings (>4), wrap the content of the cell to let a full view of the parameters. The rows of the table are now always visible until the end (the trash icon is accessible). (Note : A strange 3px margin forces me to add a class on the row added by javascript, to be able to align them with the rows rendered by the server.)
Diffstat (limited to 'apps/files_external/css')
-rw-r--r--apps/files_external/css/settings.css14
1 files changed, 13 insertions, 1 deletions
diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css
index 758c52ae852..03416826a98 100644
--- a/apps/files_external/css/settings.css
+++ b/apps/files_external/css/settings.css
@@ -10,7 +10,19 @@ td.remove>img { visibility:hidden; padding-top:7px; }
tr:hover>td.remove>img { visibility:visible; cursor:pointer; }
#addMountPoint>td { border:none; }
#addMountPoint>td.applicable { visibility:hidden; }
-#selectBackend { margin-left:-10px; }
+
+#selectBackend {
+ margin-left:-10px;
+ width : 150px;
+}
+
+#externalStorage td.configuration, #externalStorage td.backend {
+ white-space : normal;
+}
+
+#externalStorage td.configuration input.added {
+ margin-right : 6px;
+}
#externalStorage label > input[type="checkbox"] {
margin-right: 3px;