diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-10-04 18:35:46 +0300 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-05 11:23:49 +0200 |
commit | 2b521327c03974a7a45ebef2ce377346bdf9484d (patch) | |
tree | dde215939efad71bdd4889af2a7cc4c6ceea9879 /core | |
parent | cc1e69c1902a9cf6c6c68cdaa3f1eead09ca7a5c (diff) | |
download | nextcloud-server-2b521327c03974a7a45ebef2ce377346bdf9484d.tar.gz nextcloud-server-2b521327c03974a7a45ebef2ce377346bdf9484d.zip |
more elegant style for Personal and Admin settings
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 505e4dc03e8..6406bcd7e63 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -77,7 +77,10 @@ textarea:hover, textarea:focus, textarea:active { } input[type="checkbox"] { margin:0; padding:0; height:auto; width:auto; } input[type="checkbox"]:hover+label, input[type="checkbox"]:focus+label { color:#111 !important; } -#quota { cursor:default; } +#quota { + cursor: default; + margin: 30px; +} /* SCROLLING */ @@ -667,12 +670,15 @@ tr .action { width:16px; height:16px; } tr:hover .action:hover, .selectedActions a:hover, .header-action:hover { -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=100)"; filter:alpha(opacity=100); opacity:1; } tbody tr:hover, tr:active { background-color:#f8f8f8; } +#body-settings h2 { + font-size: 20px; + font-weight: normal; + margin-bottom: 7px; +} #body-settings .personalblock, #body-settings .helpblock { - padding: .5em 1em; - margin: 1em; - background-color: rgb(240,240,240); + padding: 30px; color: #555; - border-radius: 3px; + border-top: 1px solid #ddd; } #body-settings .personalblock#quota { position:relative; padding:0; } #body-settings #controls+.helpblock { position:relative; margin-top:3em; } |