diff options
author | Raghu Nayyar <me@iraghu.com> | 2015-08-30 23:24:35 +0200 |
---|---|---|
committer | Raghu Nayyar <me@iraghu.com> | 2015-08-30 23:24:35 +0200 |
commit | 0167225686ba44907aa5e41d848e54fcb0ac7434 (patch) | |
tree | 28f457f0a7532a8c01cff520aff01ff573ab18dc | |
parent | b50ac6ff2fa632a0f9a07a91582b6b2de613e8ad (diff) | |
parent | 5d1fb8cb1191a278402e6c37959f4e0ac45c515b (diff) | |
download | nextcloud-server-0167225686ba44907aa5e41d848e54fcb0ac7434.tar.gz nextcloud-server-0167225686ba44907aa5e41d848e54fcb0ac7434.zip |
Merge pull request #18689 from owncloud/app-navigation-line
Introduce small line for navigation sidebar
-rw-r--r-- | apps/files/css/files.css | 1 | ||||
-rw-r--r-- | core/css/apps.css | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/apps/files/css/files.css b/apps/files/css/files.css index a9c85127c66..375666141ba 100644 --- a/apps/files/css/files.css +++ b/apps/files/css/files.css @@ -137,6 +137,7 @@ bottom: 44px; width: inherit !important; background-color: #fff; + border-right: 1px solid #eee; } /* double padding to account for Deleted files entry, issue with Firefox */ .app-files #app-navigation > ul li:nth-last-child(2) { diff --git a/core/css/apps.css b/core/css/apps.css index 846eba8e4bf..4118e6ea668 100644 --- a/core/css/apps.css +++ b/core/css/apps.css @@ -28,6 +28,7 @@ -moz-user-select: none; -ms-user-select: none; user-select: none; + border-right: 1px solid #eee; } #app-navigation > ul { position: relative; @@ -482,6 +483,10 @@ max-height: 300px; overflow-y: auto; } +#app-settings-content, +#app-settings-header { + border-right: 1px solid #eee; +} /* display input fields at full width */ #app-settings-content input[type='text'] { |