diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-04-01 11:20:16 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-04-01 11:20:16 +0200 |
commit | 18acfa8bb32e4bf990292df27e80d0d4433dac5c (patch) | |
tree | 708f35a7ad56774ccbea53fa5e83551b82a6452b /core | |
parent | a94ac41512ecffd9bb3ef659d3457b8af12d2306 (diff) | |
parent | 2be2a5d2c5d8cbc671c4f301eb337fee20023538 (diff) | |
download | nextcloud-server-18acfa8bb32e4bf990292df27e80d0d4433dac5c.tar.gz nextcloud-server-18acfa8bb32e4bf990292df27e80d0d4433dac5c.zip |
Merge pull request #7915 from owncloud/replace-personalblock
Replace personalblock with .section
Diffstat (limited to 'core')
-rw-r--r-- | core/css/apps.css | 22 | ||||
-rw-r--r-- | core/css/styles.css | 16 |
2 files changed, 23 insertions, 15 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index 0e6a080c9cd..8eb3bdd683e 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -151,9 +151,6 @@ transition: padding-bottom 500ms ease 0s; padding-bottom: 40px; } -#app-navigation .personalblock > legend { /* TODO @Raydiation: still needed? */ - padding: 10px 0; margin: 0; -} #app-navigation .error { color: #dd1144; } @@ -242,3 +239,22 @@ button.loading { padding-right: 30px; } + +/* general styles for the content area */ +.section { + display: block; + padding: 30px; + color: #555; + border-top: 1px solid #ddd; +} +.section h2 { + font-size: 20px; + font-weight: normal; + margin-bottom: 7px; +} +/* slight position correction of checkboxes and radio buttons */ +.section input[type="checkbox"], +.section input[type="radio"] { + vertical-align: -2px; + margin-right: 4px; +} diff --git a/core/css/styles.css b/core/css/styles.css index 2bc9717f930..8a12057529d 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -798,20 +798,12 @@ 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: 30px; - color: #555; - border-top: 1px solid #ddd; -} -#body-settings .personalblock#quota { position:relative; padding:0; } -#body-settings #controls+.helpblock { position:relative; margin-top:3em; } code { font-family:"Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", monospace; } +#quota { + position: relative; + padding: 0; +} #quota div { padding: 0; background-color: rgb(220,220,220); |