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 • 541 B
ASCII text
        
            
1
// Pointer location
2
.ripple-pointer-location {
3
width: 50px;
4
height: 50px;
5
border-radius: (50px / 2); // radius equals the size of the box to give us the curve
6
box-shadow: none;
7
background-color: $overlay-selected;
8
}
9
10
// Pointer accessibility notifications
11
.pie-timer {
12
width: 60px;
13
height: 60px;
14
-pie-border-width: 0;
15
-pie-border-color: transparent;
16
-pie-background-color: $overlay-selected;
17
}
18
19
// Screen zoom/Magnifier
20
.magnifier-zoom-region {
21
border: 2px solid $primary;
22
23
&.full-screen {
24
border-width: 0;
25
}
26
}
27