[SSE mobile]

This commit is contained in:
Maxim Kadushkin 2021-02-20 00:04:12 +03:00
parent df81b70d06
commit 2942114c82
3 changed files with 19 additions and 10 deletions

View file

@ -393,10 +393,14 @@
// input[type="number"] // input[type="number"]
input[type="number"]::placeholder { color: @darkGreen;} input[type="number"] {
input[type="number"]::-webkit-input-placeholder {color: @darkGreen;} &::placeholder,
input[type="number"]::-moz-placeholder {color: @darkGreen;} &::-webkit-input-placeholder,
input[type="number"]:-moz-placeholder {color: @darkGreen;} &::-moz-placeholder,
input[type="number"]:-ms-input-placeholder {color: @darkGreen;} &:-moz-placeholder,
&:-ms-input-placeholder
{
color: @darkGreen;
}
}
} }

View file

@ -4,7 +4,6 @@
@gray: #c4c4c4; @gray: #c4c4c4;
@green: #4cd964; @green: #4cd964;
@red: #f00; @red: #f00;
@background-normal: @white;
@autoColor: @black; @autoColor: @black;
.popup, .popover, .sheet-modal { .popup, .popover, .sheet-modal {
@ -302,7 +301,7 @@
} }
&.active { &.active {
.color-auto { .color-auto {
box-shadow: 0 0 0 1px @background-normal, 0 0 0 4px @themeColor; box-shadow: 0 0 0 1px @white, 0 0 0 4px @themeColor;
border-radius: 1px; border-radius: 1px;
} }
} }
@ -323,7 +322,7 @@
position: absolute; position: absolute;
width: 100%; width: 100%;
height: 100%; height: 100%;
box-shadow: 0 0 0 1px @background-normal, 0 0 0 4px @themeColor; box-shadow: 0 0 0 1px @white, 0 0 0 4px @themeColor;
z-index: 1; z-index: 1;
border-radius: 1px; border-radius: 1px;
} }
@ -348,7 +347,7 @@
.dynamic-colors { .dynamic-colors {
.empty-color { .empty-color {
background-color: @background-normal; background-color: @white;
} }
} }
} }

View file

@ -1,3 +1,9 @@
.md {
--background-normal: #f1f1f1;
}
@background-normal: var(--background-normal, #fff);
@border-regular-control: #cbcbcb; @border-regular-control: #cbcbcb;
@text-normal: #000; @text-normal: #000;