re-arranged class to use nested sass

This commit is contained in:
Nickiel12 2024-01-23 19:21:31 -08:00
parent dbe49b45aa
commit e8d6c53974

View file

@ -137,6 +137,7 @@ $w_h_sizes: (
border-radius: 20px; border-radius: 20px;
background-color: var(--#{$prefix}-surface2); background-color: var(--#{$prefix}-surface2);
transition: all 0.1s linear; transition: all 0.1s linear;
cursor: pointer;
} }
.borderless-btn:hover { .borderless-btn:hover {
background-color: var(--#{$prefix}-overlay1); background-color: var(--#{$prefix}-overlay1);
@ -205,19 +206,22 @@ table.table-striped {
border-color: var(--#{$prefix}-overlay2); border-color: var(--#{$prefix}-overlay2);
border-width: thin; border-width: thin;
transition: max-height 0.2s linear; transition: max-height 0.2s linear;
}
select {
.popup-menu select { font-size: 1em;
font-size: 1em; border: none;
border: none; border-radius: $border-radius;
border-radius: $border-radius; background-color: var(--#{$prefix}-mantle);
background-color: var(--#{$prefix}-mantle); color: var(--#{$prefix}-text);
color: var(--#{$prefix}-text); }
} input {
.popup-menu input { width: 5em;
width: 5em; font-size: 1em;
font-size: 1em; margin-left: 10px;
margin-left: 10px; margin-right: 10px;
margin-right: 10px; border-radius: $border-radius;
border-style: solid;
border-color: var(--#{$prefix}-text);
}
} }