Fix round corners in theme selector, changes were previously comitted directly to the css file causing them to be overwritten
This commit is contained in:
parent
81a8f946b7
commit
c7a95ccb8b
|
@ -3,7 +3,7 @@
|
||||||
left: 10px
|
left: 10px
|
||||||
|
|
||||||
z-index: 1000;
|
z-index: 1000;
|
||||||
|
|
||||||
border-radius: 4px
|
border-radius: 4px
|
||||||
font-size: 0.7em
|
font-size: 0.7em
|
||||||
|
|
||||||
|
@ -12,7 +12,14 @@
|
||||||
padding: 2px 10px
|
padding: 2px 10px
|
||||||
line-height: 25px
|
line-height: 25px
|
||||||
white-space: nowrap
|
white-space: nowrap
|
||||||
|
|
||||||
|
&:hover:first-child,
|
||||||
|
&:hover:last-child {
|
||||||
|
border-top-left-radius: inherit;
|
||||||
|
border-top-right-radius: inherit;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 1250px) {
|
@media only screen and (max-width: 1250px) {
|
||||||
|
|
Loading…
Reference in New Issue