theme scrollbars
This commit is contained in:
parent
de08a25c14
commit
37a64beb32
2
jslib
2
jslib
|
@ -1 +1 @@
|
||||||
Subproject commit e0d5a4d8b706f3b44a07d2d77e1bf127a117179d
|
Subproject commit c512b9b3ce9d1cbc432e2a42232526cbb8ca25f8
|
|
@ -110,12 +110,17 @@ content::-webkit-scrollbar-track {
|
||||||
}
|
}
|
||||||
|
|
||||||
content::-webkit-scrollbar-thumb {
|
content::-webkit-scrollbar-thumb {
|
||||||
background-color: rgba(100,100,100,.2);
|
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
margin-right: 1px;
|
margin-right: 1px;
|
||||||
|
|
||||||
|
@include themify($themes) {
|
||||||
|
background-color: themed('scrollbarColor');
|
||||||
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: rgba(100,100,100,.4);
|
@include themify($themes) {
|
||||||
|
background-color: themed('scrollbarHoverColor');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,13 @@ $themes: (
|
||||||
borderColorDark: $border-color-dark,
|
borderColorDark: $border-color-dark,
|
||||||
backgroundColor: $background-color,
|
backgroundColor: $background-color,
|
||||||
backgroundColorAlt: #ffffff,
|
backgroundColorAlt: #ffffff,
|
||||||
|
scrollbarColor: rgba(100,100,100,.2),
|
||||||
|
scrollbarHoverColor: rgba(100,100,100,.4),
|
||||||
|
boxBackgroundColor: $box-background-color,
|
||||||
|
boxBackgroundHoverColor: $box-background-hover-color,
|
||||||
|
boxBorderColor: $box-border-color,
|
||||||
|
tabBackgroundColor: #ffffff,
|
||||||
|
tabBackgroundHoverColor: $list-item-hover,
|
||||||
headerColor: #ffffff,
|
headerColor: #ffffff,
|
||||||
headerBackgroundColor: $brand-primary,
|
headerBackgroundColor: $brand-primary,
|
||||||
headerBackgroundHoverColor: rgba(255, 255, 255, 0.1),
|
headerBackgroundHoverColor: rgba(255, 255, 255, 0.1),
|
||||||
|
@ -51,11 +58,6 @@ $themes: (
|
||||||
headerInputColor: #ffffff,
|
headerInputColor: #ffffff,
|
||||||
headerInputPlaceholderColor: lighten($brand-primary, 35%),
|
headerInputPlaceholderColor: lighten($brand-primary, 35%),
|
||||||
listItemBackgroundHoverColor: $list-item-hover,
|
listItemBackgroundHoverColor: $list-item-hover,
|
||||||
boxBackgroundColor: $box-background-color,
|
|
||||||
boxBackgroundHoverColor: $box-background-hover-color,
|
|
||||||
boxBorderColor: $box-border-color,
|
|
||||||
tabBackgroundColor: #ffffff,
|
|
||||||
tabBackgroundHoverColor: $list-item-hover,
|
|
||||||
disabledIconColor: $list-icon-color,
|
disabledIconColor: $list-icon-color,
|
||||||
headingColor: $gray-light,
|
headingColor: $gray-light,
|
||||||
labelColor: $gray-light,
|
labelColor: $gray-light,
|
||||||
|
@ -84,6 +86,8 @@ $themes: (
|
||||||
borderColorDark: #111111,
|
borderColorDark: #111111,
|
||||||
backgroundColor: #222222,
|
backgroundColor: #222222,
|
||||||
backgroundColorAlt: #3d3d3d,
|
backgroundColorAlt: #3d3d3d,
|
||||||
|
scrollbarColor: #4d4d4d,
|
||||||
|
scrollbarHoverColor: #5f5f5f,
|
||||||
boxBackgroundColor: #363636,
|
boxBackgroundColor: #363636,
|
||||||
boxBackgroundHoverColor: #3f3f3f,
|
boxBackgroundHoverColor: #3f3f3f,
|
||||||
boxBorderColor: #2f2f2f,
|
boxBorderColor: #2f2f2f,
|
||||||
|
|
Loading…
Reference in New Issue