mirror of
https://github.com/grassmunk/Chicago95.git
synced 2025-07-27 07:34:36 +02:00
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 {
|
check:checked {
|
||||||
-gtk-icon-source: url("assets/checkbox-checked.png");
|
-gtk-icon-source: url("assets/checkbox-checked.png");
|
||||||
-gtk-icon-transform: none;
|
-gtk-icon-transform: none;
|
||||||
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
check:not(:checked) {
|
check:not(:checked) {
|
||||||
-gtk-icon-source: url("assets/checkbox-unchecked.png");
|
-gtk-icon-source: url("assets/checkbox-unchecked.png");
|
||||||
-gtk-icon-transform: none;
|
-gtk-icon-transform: none;
|
||||||
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
check:indeterminate {
|
check:indeterminate {
|
||||||
-gtk-icon-source: url("assets/checkbox-mixed.png");
|
-gtk-icon-source: url("assets/checkbox-mixed.png");
|
||||||
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
check:disabled:checked {
|
check:disabled:checked {
|
||||||
-gtk-icon-source: url("assets/checkbox-checked-insensitive.png");
|
-gtk-icon-source: url("assets/checkbox-checked-insensitive.png");
|
||||||
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
check:disabled:not(checked) {
|
check:disabled:not(checked) {
|
||||||
-gtk-icon-source: url("assets/checkbox-unchecked-insensitive.png");
|
-gtk-icon-source: url("assets/checkbox-unchecked-insensitive.png");
|
||||||
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
check:indeterminate:disabled {
|
check:indeterminate:disabled {
|
||||||
-gtk-icon-source: url("assets/checkbox-mixed-insensitive.png");
|
-gtk-icon-source: url("assets/checkbox-mixed-insensitive.png");
|
||||||
|
background: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user