Skip to content

Commit 46684ae

Browse files
committed
UI: keep border bottom visible on floating toolbar
1 parent ec8d8aa commit 46684ae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web/css/styles.min.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1205,7 +1205,7 @@ a {
12051205
.l-separator.selected,
12061206
.l-separator {
12071207
height: 1px;
1208-
background-color: #ddd;
1208+
border-top: 1px solid #ddd;
12091209
}
12101210

12111211
div.l-content > div.l-separator:nth-of-type(2) {
@@ -1220,6 +1220,8 @@ div.l-content > div.l-separator:nth-of-type(4) {
12201220
width: 100%;
12211221
position: fixed;
12221222
z-index: 110;
1223+
border-top: none;
1224+
border-bottom: 1px solid #ddd;
12231225
}
12241226

12251227
.l-sort {

web/js/app.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1009,15 +1009,13 @@ hover_menu = function() {
10091009
nav_a.css({'min-height': 111 - st + 'px'});
10101010
nav_context.css({'margin-top': 181 - st + 'px'});
10111011
sep_2.css({'box-shadow':'none'});
1012-
sep_2.css({'background-color': '#ddd'});
10131012
sep_2.css({'height': '1px'});
10141013
}
10151014

10161015
if(st > 112){
10171016
sep_1.css({'margin-top': '100px'});
10181017
sep_2.css({'margin-top': '130px'});
10191018
sep_2.css({'height': '15px'});
1020-
sep_2.css({'background-color': '#fff'});
10211019
nav_a.css({'height': '0'});
10221020
nav_a.css({'min-height': '0'});
10231021
nav_context.css({'margin-top': '101px'});

0 commit comments

Comments
 (0)