_a11y.scss
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