diff options
author | Raghu Nayyar <me@iraghu.com> | 2014-08-05 10:57:12 +0530 |
---|---|---|
committer | Raghu Nayyar <me@iraghu.com> | 2014-08-05 10:57:12 +0530 |
commit | 5302f9aaddb17ac2f3bed86c0c9b177c5bc35ce0 (patch) | |
tree | ebd93ef9d4a09865fbf304143cbb6ec1ab048253 | |
parent | f4c7e3c1e9b108f105b8b8a8901d29ec1fe475b4 (diff) | |
parent | 349933fdd51ebb8d7de5a0817fee125e8528c9a2 (diff) | |
download | nextcloud-server-5302f9aaddb17ac2f3bed86c0c9b177c5bc35ce0.tar.gz nextcloud-server-5302f9aaddb17ac2f3bed86c0c9b177c5bc35ce0.zip |
Merge pull request #10143 from owncloud/fix-top-border
no top border for first settings item, detail enhancement
-rw-r--r-- | core/css/apps.css | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/css/apps.css b/core/css/apps.css index 6761677fb23..0fea77cea0d 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -274,6 +274,10 @@ button.loading { color: #555; border-top: 1px solid #ddd; } +/* no top border for first settings item */ +.section:first-child { + border-top: none; +} .section h2 { font-size: 20px; margin-bottom: 7px; |