summaryrefslogtreecommitdiffstats
path: root/settings/css
diff options
context:
space:
mode:
authorAndreas Jacobsen <anjac@itu.dk>2017-07-24 10:15:01 +0200
committerAndreas Jacobsen <anjac@itu.dk>2017-07-24 10:15:01 +0200
commit25ada8208d2c9c23e5cf6aef542f54433b6faf78 (patch)
tree10e437317b8f8d9cfd7e74b47f701313eb38567f /settings/css
parent35494703f32bb011e66e2a896b36a185b17e10c2 (diff)
parent118f0d2b4db296b6d4275918813f89340425a4f6 (diff)
downloadnextcloud-server-25ada8208d2c9c23e5cf6aef542f54433b6faf78.tar.gz
nextcloud-server-25ada8208d2c9c23e5cf6aef542f54433b6faf78.zip
Merge branch 'clean-settings-layout' of https://github.com/andreasjacobsen93/server into clean-settings-layout
Diffstat (limited to 'settings/css')
-rw-r--r--settings/css/settings.css34
1 files changed, 31 insertions, 3 deletions
diff --git a/settings/css/settings.css b/settings/css/settings.css
index 3dd2d9babaa..f20c13eacb3 100644
--- a/settings/css/settings.css
+++ b/settings/css/settings.css
@@ -90,7 +90,7 @@ input#pass1, input#pass2, input#passwordbutton {
}
#avatarform .jcrop-keymgr {
- display:none !important;
+ display: none !important;
}
#displayavatar {
@@ -361,7 +361,7 @@ table.nostyle td {
max-width: 580px;
}
-#security table th{
+#security table th {
opacity: .5;
}
@@ -744,11 +744,17 @@ input#recoveryPassword {
height: 37px;
}
-select.quota-user {
+#userlist td.quota {
position: relative;
+ width: 10em;
+}
+
+select.quota-user {
+ position: absolute;
left: 0;
top: 0;
width: 10em;
+ height: 34px;
}
select.quota.active {
@@ -759,6 +765,20 @@ input.userFilter {
width: 200px;
}
+.quota_progress_container {
+ position: absolute;
+ left: 0;
+ top: 0;
+ width: 10em;
+ margin: 3px 3px 3px 0;
+ border-radius: 3px;
+}
+
+.quota_progress {
+ background-color: #eee;
+ height: 34px;
+}
+
/* positioning fixes */
#newuser {
padding-left: 3px;
@@ -1344,3 +1364,11 @@ doesnotexist:-o-prefocus, .strengthify-wrapper {
margin-bottom: 12px;
opacity: .7;
}
+
+.settings-caption {
+ font-weight: bold;
+ line-height: 44px;
+ padding: 0 12px;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+}