1
0

fix: Tnixc bug collection 3 (#231)

* fix: Unchecked switches

* fix: Checkbox toggles
This commit is contained in:
Jade Herd
2023-10-06 22:32:07 -04:00
committed by GitHub
parent f5e2942882
commit 4fa55851f6
2 changed files with 15 additions and 5 deletions

View File

@@ -306,7 +306,8 @@ div[class|="contentRegion"] {
// unchecked
div[class|="control"] {
> div[style*="background-color: hsl(218, calc(var(--saturation-factor, 1) * 4.6%), 46.9%)"] {
> div[style*="background-color: hsl(218, calc(var(--saturation-factor, 1) * 4.6%), 46.9%)"],
> div[style$="background-color: rgb(128, 132, 142);"] {
background-color: $surface2 !important;
}
}

View File

@@ -267,11 +267,9 @@ section[class|="positionContainer"] {
}
> div[class|="focusLock"] > div[class|="root"] {
box-shadow:
0 0 0 1px $surface0,
box-shadow: 0 0 0 1px $surface0,
0 2px 10px 0 hsla(0, calc(var(--saturation-factor, 1) * 0%), 0%, 0.1);
-webkit-box-shadow:
0 0 0 1px $surface0,
-webkit-box-shadow: 0 0 0 1px $surface0,
0 2px 10px 0 hsla(0, calc(var(--saturation-factor, 1) * 0%), 0%, 0.1);
}
@@ -425,6 +423,17 @@ div[class|="layerContainer"] {
}
}
}
// Checkbox toggles
div[class|="checkbox"] {
&[class*="checked-"] {
border: none;
svg path {
fill: $crust;
}
}
}
}
// add game