update: correct color for other selectors too.

This commit is contained in:
ItzNotABug
2024-09-26 17:27:41 +05:30
parent bfe9819b7c
commit caba7ec587
2 changed files with 8 additions and 8 deletions
@@ -65,11 +65,3 @@
<Helper type="warning">{error}</Helper>
{/if}
</FormItem>
<style>
/* TODO: remove this block once Pink V2 is incorporated */
:global(.theme-dark) input[type='checkbox']:not(:checked) {
background-color: transparent; /* take whatever color is behind*/
border: 1px solid var(--color-mid-neutral-70, #56565c);
}
</style>
+8
View File
@@ -194,4 +194,12 @@
}
}
}
/* TODO: remove this block once Pink V2 is incorporated */
:global(.theme-dark) input[type='checkbox']:not(:checked),
:global(.theme-dark) input[type='radio']:not(:checked),
:global(.theme-dark) input[type='switchbox']:not(:checked) {
background-color: transparent; /* take whatever color is behind */
border: 1px solid var(--color-mid-neutral-70, #56565c);
}
</style>