mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
Merge pull request #2505 from awesomerobot/master
fixing d-dropdown heading overlap
This commit is contained in:
commit
c2fa382471
1 changed files with 26 additions and 13 deletions
|
@ -158,22 +158,29 @@
|
||||||
margin: 0;
|
margin: 0;
|
||||||
list-style: none;
|
list-style: none;
|
||||||
}
|
}
|
||||||
li:not(.category) {
|
|
||||||
|
li:not(.category):not(.heading) {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
line-height: 16px;
|
line-height: 16px;
|
||||||
|
|
||||||
.fa {
|
.fa {
|
||||||
margin-right: 3px;
|
margin-right: 3px;
|
||||||
}
|
}
|
||||||
a {display: block;
|
|
||||||
padding: 5px;
|
|
||||||
|
|
||||||
|
a {
|
||||||
|
display: block;
|
||||||
|
padding: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover a:not(.badge-notification) {
|
&:hover a:not(.badge-notification) {
|
||||||
background-color: scale-color($highlight, $lightness: 60%);
|
background-color: scale-color($highlight, $lightness: 60%);
|
||||||
}
|
}
|
||||||
button {margin-left: 5px;}
|
|
||||||
|
|
||||||
|
button {margin-left: 5px;}
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading a:hover {
|
||||||
|
background-color: scale-color($highlight, $lightness: 60%);
|
||||||
}
|
}
|
||||||
|
|
||||||
.selected {
|
.selected {
|
||||||
|
@ -225,14 +232,20 @@
|
||||||
margin-top: -22px;
|
margin-top: -22px;
|
||||||
margin-left: 60px;
|
margin-left: 60px;
|
||||||
}
|
}
|
||||||
|
.heading {
|
||||||
|
padding: 5px 5px 5px 0;
|
||||||
|
a {padding: 0 5px;}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Search
|
// Search
|
||||||
|
|
||||||
&#search-dropdown {
|
&#search-dropdown {
|
||||||
.heading {
|
.heading {
|
||||||
padding: 5px;
|
padding: 5px 0 5px 5px;
|
||||||
|
.filter {
|
||||||
|
padding: 0 5px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue