1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-19 19:32:31 +02:00

Merge branch 'master' into blockquotes

This commit is contained in:
Kognise
2019-04-11 13:22:01 -04:00
committed by GitHub
11 changed files with 107 additions and 9 deletions

View File

@@ -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;

View File

@@ -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;

View File

@@ -61,7 +61,10 @@ button:active {
transform: translateY(2px);
}
input:disabled {
input:disabled,
select:disabled,
button:disabled,
textarea:disabled {
cursor: not-allowed;
opacity: .5;
}

View File

@@ -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;
}