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:
parent
57d77f92cb
commit
5540d7082c
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue