Updated prettierrc

This commit is contained in:
2021-03-11 18:15:08 -06:00
parent c8b5d2351e
commit 468bdfa632
29 changed files with 131 additions and 188 deletions

View File

@@ -19,11 +19,11 @@ label.CheckBoxLabel {
/* Hide the browser's default checkbox */
label.CheckBoxLabel input[type='checkbox'] {
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
position: absolute;
opacity: 0;
cursor: pointer;
height: 0;
width: 0;
}
/* Create a custom checkbox */
@@ -42,7 +42,7 @@ label.CheckBoxLabel input[type='checkbox'] {
/* On mouse-over, add a grey background color */
label.CheckBoxLabel:hover input[type='checkbox'] ~ .CheckBoxCheckMark {
background-color: var(--control_background_hover);
background-color: var(--control_background_hover);
}
/* When the checkbox is checked, add a blue background */
@@ -52,9 +52,9 @@ label.CheckBoxLabel input:checked ~ .CheckBoxCheckMark {
/* Create the CheckBoxCheckMark/indicator (hidden when not checked) */
.CheckBoxCheckMark:after {
content: '';
position: absolute;
display: none;
content: '';
position: absolute;
display: none;
}
/* Show the CheckBoxCheckMark when checked */