mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-10 18:27:25 +03:00
Fixed styles for disabled inputs in dark theme
This commit is contained in:
parent
83791157ce
commit
9703eba6ec
3 changed files with 17 additions and 2 deletions
|
@ -129,8 +129,14 @@ body,
|
|||
border-color: var(--input-border-color);
|
||||
}
|
||||
|
||||
.card .form-control,
|
||||
.card .form-control:hover {
|
||||
.form-control.disabled,
|
||||
.form-control:disabled {
|
||||
background-color: var(--input-disabled-color);
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.card .form-control:not(:disabled),
|
||||
.card .form-control:not(:disabled):hover {
|
||||
background-color: var(--input-color);
|
||||
}
|
||||
|
||||
|
|
|
@ -9,6 +9,7 @@ $lightBorderColor: rgba(0, 0, 0, .125);
|
|||
$lightActiveColor: $lightGrey;
|
||||
$lightBrandColor: $mainColor;
|
||||
$lightInputColor: $lightPrimaryColor;
|
||||
$lightDisabledInputColor: $lightColor;
|
||||
$lightBorderInputColor: rgba(0, 0, 0, .19);
|
||||
|
||||
// Dark theme colors
|
||||
|
@ -20,6 +21,7 @@ $darkBorderColor: rgba(0, 0, 0, .2);
|
|||
$darkActiveColor: $darkSecondaryColor;
|
||||
$darkBrandColor: #0b2d4e;
|
||||
$darkInputColor: darken($darkPrimaryColor, 2%);
|
||||
$darkDisabledInputColor: lighten($darkPrimaryColor, 2%);
|
||||
$darkBorderInputColor: rgba(0, 0, 0, .3);
|
||||
|
||||
html:not([data-theme='dark']) {
|
||||
|
@ -31,6 +33,7 @@ html:not([data-theme='dark']) {
|
|||
--active-color: #{$lightActiveColor};
|
||||
--brand-color: #{$lightBrandColor};
|
||||
--input-color: #{$lightInputColor};
|
||||
--input-disabled-color: #{$lightDisabledInputColor};
|
||||
--input-border-color: #{$lightBorderInputColor};
|
||||
}
|
||||
|
||||
|
@ -43,5 +46,6 @@ html[data-theme='dark'] {
|
|||
--active-color: #{$darkActiveColor};
|
||||
--brand-color: #{$darkBrandColor};
|
||||
--input-color: #{$darkInputColor};
|
||||
--input-disabled-color: #{$darkDisabledInputColor};
|
||||
--input-border-color: #{$darkBorderInputColor};
|
||||
}
|
||||
|
|
|
@ -21,6 +21,11 @@
|
|||
background-color: var(--input-color);
|
||||
}
|
||||
|
||||
.dropdown-btn__toggle.dropdown-btn__toggle.disabled,
|
||||
.dropdown-btn__toggle.dropdown-btn__toggle:disabled {
|
||||
background-color: var(--input-disabled-color);
|
||||
}
|
||||
|
||||
.dropdown-btn__toggle.dropdown-btn__toggle:after {
|
||||
@include vertical-align();
|
||||
|
||||
|
|
Loading…
Reference in a new issue