adjust timer style to current controls style
This commit is contained in:
parent
32af7c6cd6
commit
2d3d6a0cf6
1 changed files with 14 additions and 6 deletions
|
@ -5956,8 +5956,11 @@ output {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
margin: 0 14px;
|
margin: 0 14px;
|
||||||
background: hsl(234,10%,19%);
|
background: white;
|
||||||
color: white;
|
color: hsl(60,1%,34%);
|
||||||
|
border-right: 1px solid hsl(198,18%,86%);
|
||||||
|
border-bottom: 1px solid hsl(198,18%,86%);
|
||||||
|
border-radius: 3px 3px 0 0;
|
||||||
|
|
||||||
&.select-box--vertical .select-value {
|
&.select-box--vertical .select-value {
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
|
@ -5974,12 +5977,16 @@ output {
|
||||||
.select-box-header {
|
.select-box-header {
|
||||||
@extend label;
|
@extend label;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
color: hsl(240,2%,60%);
|
color: inherit;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding: 8px 10px;
|
padding: 8px 10px;
|
||||||
flex-basis: 100%;
|
flex-basis: 100%;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
background: hsl(197, 20%, 93%);
|
||||||
|
border-left: 1px solid hsl(198,18%,86%);
|
||||||
|
border-top: 1px solid hsl(198,18%,86%);
|
||||||
|
border-radius: 3px 3px 0 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.select-value {
|
.select-value {
|
||||||
|
@ -5989,13 +5996,14 @@ output {
|
||||||
min-height: 34px;
|
min-height: 34px;
|
||||||
background-clip: content-box;
|
background-clip: content-box;
|
||||||
box-shadow:
|
box-shadow:
|
||||||
1px 0 hsl(240,5%,27%) inset,
|
1px 0 hsl(198,18%,86%) inset,
|
||||||
0 1px hsl(240,5%,27%) inset;
|
0 1px hsl(198,18%,86%) inset;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
|
||||||
&.is-selected {
|
&.is-selected {
|
||||||
background-color: hsl(203,65%,55%);
|
background-color: $highlight-color;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
color: white;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue