A fork of the Materia GTK theme.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 _a11y.scss

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