re-arranged class to use nested sass
This commit is contained in:
parent
dbe49b45aa
commit
e8d6c53974
1 changed files with 18 additions and 14 deletions
|
@ -137,6 +137,7 @@ $w_h_sizes: (
|
|||
border-radius: 20px;
|
||||
background-color: var(--#{$prefix}-surface2);
|
||||
transition: all 0.1s linear;
|
||||
cursor: pointer;
|
||||
}
|
||||
.borderless-btn:hover {
|
||||
background-color: var(--#{$prefix}-overlay1);
|
||||
|
@ -205,19 +206,22 @@ table.table-striped {
|
|||
border-color: var(--#{$prefix}-overlay2);
|
||||
border-width: thin;
|
||||
transition: max-height 0.2s linear;
|
||||
}
|
||||
|
||||
.popup-menu select {
|
||||
font-size: 1em;
|
||||
border: none;
|
||||
border-radius: $border-radius;
|
||||
background-color: var(--#{$prefix}-mantle);
|
||||
color: var(--#{$prefix}-text);
|
||||
}
|
||||
.popup-menu input {
|
||||
width: 5em;
|
||||
font-size: 1em;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
|
||||
select {
|
||||
font-size: 1em;
|
||||
border: none;
|
||||
border-radius: $border-radius;
|
||||
background-color: var(--#{$prefix}-mantle);
|
||||
color: var(--#{$prefix}-text);
|
||||
}
|
||||
input {
|
||||
width: 5em;
|
||||
font-size: 1em;
|
||||
margin-left: 10px;
|
||||
margin-right: 10px;
|
||||
border-radius: $border-radius;
|
||||
border-style: solid;
|
||||
border-color: var(--#{$prefix}-text);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue