mirror of
https://github.com/penpot/penpot.git
synced 2025-01-25 07:58:49 -05:00
fix select colors
This commit is contained in:
parent
799ce01f14
commit
4d1e4ef4c9
3 changed files with 10 additions and 10 deletions
|
@ -855,9 +855,9 @@ input[type=range]:focus::-ms-fill-upper {
|
|||
&:hover {
|
||||
|
||||
&::after {
|
||||
background-color: $primary-ui-bg;
|
||||
background-color: $color-white;
|
||||
border-radius: $br-small;
|
||||
color: $medium-ui-text;
|
||||
color: $intense-ui-text;
|
||||
content: attr(alt);
|
||||
font-size: $fs11;
|
||||
font-weight: bold;
|
||||
|
@ -905,7 +905,7 @@ input[type=range]:focus::-ms-fill-upper {
|
|||
|
||||
&::after {
|
||||
align-items: center;
|
||||
background-color: $input-bg;
|
||||
background-color: $color-white;
|
||||
box-sizing: border-box;
|
||||
border-radius: 0;
|
||||
color: $intense-ui-text;
|
||||
|
|
|
@ -79,9 +79,9 @@
|
|||
}
|
||||
|
||||
.dropdown {
|
||||
background-color: $secondary-ui-bg;
|
||||
background-color: $color-white;
|
||||
border-radius: $br-small;
|
||||
border: 1px solid $soft-ui-border;
|
||||
border: 1px solid $color-gray-10;
|
||||
min-width: 150px;
|
||||
padding: 0 $small;
|
||||
position: absolute;
|
||||
|
@ -96,13 +96,13 @@
|
|||
padding: $small 0;
|
||||
|
||||
svg {
|
||||
fill: $medium-ui-text;
|
||||
fill: $color-gray-40;
|
||||
height: 12px;
|
||||
width: 12px;
|
||||
}
|
||||
|
||||
span {
|
||||
color: $medium-ui-text;
|
||||
color: $color-gray-40;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
|
|
|
@ -201,15 +201,15 @@
|
|||
}
|
||||
|
||||
.input-select {
|
||||
color: $intense-ui-text;
|
||||
color: $soft-ui-text;
|
||||
|
||||
&:focus {
|
||||
color: darken($intense-ui-text, 8%);
|
||||
color: lighten($soft-ui-text, 8%);
|
||||
}
|
||||
|
||||
option {
|
||||
color: $intense-ui-text;
|
||||
background: $secondary-ui-bg;
|
||||
background: $color-white;
|
||||
font-size: $fs12;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue