fix: Disabled input color in dark mode
This commit is contained in:
parent
0ef74e3681
commit
8eddd49ea7
2 changed files with 5 additions and 2 deletions
|
|
@ -72,6 +72,9 @@
|
|||
--highlight-color: var(--gray-700);
|
||||
--yellow-highlight-color: var(--yellow-700);
|
||||
|
||||
// input
|
||||
--input-disabled-bg: none;
|
||||
|
||||
.frappe-card {
|
||||
.btn-default {
|
||||
background-color: var(--bg-color);
|
||||
|
|
|
|||
|
|
@ -60,7 +60,7 @@ $link-color: var(--text-color);
|
|||
// input
|
||||
$input-bg: var(--control-bg);
|
||||
$input-placeholder-color: var(--gray-500);
|
||||
$input-disabled-bg: var(--gray-200);
|
||||
$input-disabled-bg: var(--input-disabled-bg);
|
||||
$input-color: var(--text-color);
|
||||
$input-box-shadow: none;
|
||||
$input-focus-border-color: var(--gray-500);
|
||||
|
|
@ -135,9 +135,9 @@ $grid-breakpoints: (
|
|||
2xl: 1440px
|
||||
) !default;
|
||||
|
||||
@import 'dark';
|
||||
@import 'typography';
|
||||
@import '~bootstrap/scss/functions';
|
||||
@import '~bootstrap/scss/variables';
|
||||
@import "~bootstrap/scss/mixins";
|
||||
@import 'css_variables';
|
||||
@import 'dark';
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue