A fork of the Materia GTK theme.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 _check-box.scss

View raw Download
text/plain • 614 B
ASCII text
        
            
1
/* Check Boxes */
2
3
// these are equal to the size of the SVG assets
4
$check_height: 22px;
5
$check_width: 24px;
6
7
8
.check-box {
9
StBoxLayout { spacing: .8em; }
10
StBin {
11
width: $check_width;
12
height: $check_height;
13
background-image: url("resource:///org/gnome/shell/theme/checkbox-off.svg");
14
}
15
&:focus StBin { background-image: url("resource:///org/gnome/shell/theme/checkbox-off-focused.svg"); }
16
&:checked StBin { background-image: url("resource:///org/gnome/shell/theme/checkbox.svg"); }
17
&:focus:checked StBin { background-image: url("resource:///org/gnome/shell/theme/checkbox-focused.svg"); }
18
}