[dark theme] changed inlined colors in button's style
This commit is contained in:
parent
aa0b644648
commit
c6e3387643
|
@ -94,7 +94,7 @@
|
||||||
&::after {
|
&::after {
|
||||||
content: ' ';
|
content: ' ';
|
||||||
position: absolute;
|
position: absolute;
|
||||||
border: 1px solid #000;
|
border: 1px solid #000; // need variable in colors table
|
||||||
border-left: 0 none;
|
border-left: 0 none;
|
||||||
border-right: 0 none;
|
border-right: 0 none;
|
||||||
width: 6px;
|
width: 6px;
|
||||||
|
@ -109,7 +109,7 @@
|
||||||
width: 10px;
|
width: 10px;
|
||||||
height: 7px;
|
height: 7px;
|
||||||
bottom: 2px;
|
bottom: 2px;
|
||||||
background-color: #ffd112;
|
background-color: #ffd112; // need variable in colors table
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
@ -157,7 +157,7 @@
|
||||||
&.active:not(.disabled) {
|
&.active:not(.disabled) {
|
||||||
.caret-up, .caret-down {
|
.caret-up, .caret-down {
|
||||||
&::after {
|
&::after {
|
||||||
border-color: #FFFFFF;
|
border-color: @background-normal;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -286,7 +286,7 @@
|
||||||
.btn.small;
|
.btn.small;
|
||||||
|
|
||||||
&.bg-white {
|
&.bg-white {
|
||||||
background-color: #fff;
|
background-color: @background-normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:before,
|
&:before,
|
||||||
|
@ -383,7 +383,7 @@
|
||||||
&:active:not(.disabled),
|
&:active:not(.disabled),
|
||||||
&.active:not(.disabled) {
|
&.active:not(.disabled) {
|
||||||
background-color: @highlight-button-pressed;
|
background-color: @highlight-button-pressed;
|
||||||
color: #fff;
|
//color: #fff; btn-category has no text
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
|
@ -396,7 +396,7 @@
|
||||||
|
|
||||||
&[disabled],
|
&[disabled],
|
||||||
&.disabled {
|
&.disabled {
|
||||||
color: #000;
|
//color: #000; btn-category has no text
|
||||||
opacity: @btn-disabled-opacity;
|
opacity: @btn-disabled-opacity;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -564,7 +564,7 @@
|
||||||
.over,
|
.over,
|
||||||
&:active,
|
&:active,
|
||||||
&.active {
|
&.active {
|
||||||
background: #fff !important;
|
background: @background-normal !important;
|
||||||
.box-shadow(none) !important;
|
.box-shadow(none) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -598,7 +598,7 @@
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
|
|
||||||
&.bg-white {
|
&.bg-white {
|
||||||
background-color: #fff;
|
background-color: @background-normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
|
@ -839,7 +839,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
&.primary {
|
&.primary {
|
||||||
color: #fff;
|
color: @text-inverse;
|
||||||
background-color: @background-primary-dialog-button;
|
background-color: @background-primary-dialog-button;
|
||||||
|
|
||||||
&:hover:not(.disabled),
|
&:hover:not(.disabled),
|
||||||
|
|
Loading…
Reference in a new issue