1
0
mirror of https://github.com/Rnhmjoj/solarized-dark-ui synced 2025-01-24 11:34:19 +01:00

Add /deep/ combinator

To style scrollbars through shadow boundaries because there's bound to be components that don't bend over backwards to inherit this styling.
This commit is contained in:
Sebastian Kellgren 2015-01-09 13:30:05 +01:00
parent 68b2a3ed7f
commit a4e16ea0a9

View File

@ -7,3 +7,20 @@
.workspace {
background-color: @app-background-color;
}
.scrollbars-visible-always {
/deep/ ::-webkit-scrollbar {
width: 10px;
height: 10px;
}
/deep/ ::-webkit-scrollbar-track,
/deep/ ::-webkit-scrollbar-corner {
background: @scroll-background;
}
/deep/ ::-webkit-scrollbar-thumb {
background: @scroll-thumb;
box-shadow: 0 0 1px black inset;
}
}