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.

 _a11y.scss

View raw Download
text/plain • 690 B
ASCII text
        
            
1
// Pointer location
2
.ripple-pointer-location {
3
width: $ripple_size;
4
height: $ripple_size;
5
border-radius: $ripple_size * 0.5; // radius equals the size of the box to give us the curve
6
background-color: lighten(transparentize($selected_bg_color, 0.7), 30%);
7
box-shadow: 0 0 2px 2px lighten($selected_bg_color, 20%);
8
}
9
10
// Pointer accessibility notifications
11
.pie-timer {
12
width: 60px;
13
height: 60px;
14
-pie-border-width: 3px;
15
-pie-border-color: $selected_bg_color;
16
-pie-background-color: lighten(transparentize($selected_bg_color, 0.7), 40%);
17
}
18
19
// Screen zoom/Magnifier
20
.magnifier-zoom-region {
21
border: 2px solid $selected_bg_color;
22
23
&.full-screen { border-width: 0; }
24
}
25