Minor update

This update adjusts the checkbox background to none to prevent white borders around a checkbox in GTK3 applications. This occurs because the image file for checkboxes has additional transparent space which can appear as a white border for some applications.
This commit is contained in:
EMH-Mark-I 2018-04-25 21:14:17 -05:00
parent 57d77f92cb
commit 5540d7082c
1 changed files with 6 additions and 0 deletions

View File

@ -402,27 +402,33 @@ radio {
check:checked {
-gtk-icon-source: url("assets/checkbox-checked.png");
-gtk-icon-transform: none;
background: none;
}
check:not(:checked) {
-gtk-icon-source: url("assets/checkbox-unchecked.png");
-gtk-icon-transform: none;
background: none;
}
check:indeterminate {
-gtk-icon-source: url("assets/checkbox-mixed.png");
background: none;
}
check:disabled:checked {
-gtk-icon-source: url("assets/checkbox-checked-insensitive.png");
background: none;
}
check:disabled:not(checked) {
-gtk-icon-source: url("assets/checkbox-unchecked-insensitive.png");
background: none;
}
check:indeterminate:disabled {
-gtk-icon-source: url("assets/checkbox-mixed-insensitive.png");
background: none;
}