mirror of
https://github.com/kognise/water.css.git
synced 2025-08-16 10:04:41 +02:00
Merge branch 'master' into feature/disabled-form-elements
This commit is contained in:
@@ -12,6 +12,9 @@ $code: #ffbe85 !default;
|
||||
$button-hover: #324759 !default;
|
||||
$animation-duration: 0.1s !default;
|
||||
|
||||
$scrollbar-thumb: $button-hover;
|
||||
$scrollbar-thumb-hover: lighten($button-hover, 8%);
|
||||
|
||||
$form-placeholder: #a9a9a9 !default;
|
||||
$form-text: #ffffff !default;
|
||||
|
||||
|
@@ -12,6 +12,9 @@ $code: #000000 !default;
|
||||
$button-hover: #dddddd !default;
|
||||
$animation-duration: 0.1s !default;
|
||||
|
||||
$scrollbar-thumb: darken($button-hover, 3%);
|
||||
$scrollbar-thumb-hover: darken($button-hover, 10%);
|
||||
|
||||
$form-placeholder: #949494 !default;
|
||||
$form-text: #000000 !default;
|
||||
|
||||
|
@@ -24,4 +24,23 @@ th {
|
||||
|
||||
tbody tr:nth-child(even) {
|
||||
background-color: $background-alt;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
height: 10px;
|
||||
width: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: $background-alt;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: $scrollbar-thumb;
|
||||
border-radius: 6px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background: $scrollbar-thumb-hover;
|
||||
}
|
Reference in New Issue
Block a user