summaryrefslogtreecommitdiffstats
path: root/data/theme/gnome-shell-sass/widgets/_a11y.scss
blob: 31b5c4b7e288720f8ba1db704d82a3a517f32b42 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Pointer location
.ripple-pointer-location {
  width: $ripple_size;
  height: $ripple_size;
  border-radius: $ripple_size * 0.5; // radius equals the size of the box to give us the curve
  background-color: lighten(transparentize($selected_bg_color, 0.7), 30%);
  box-shadow: 0 0 2px 2px lighten($selected_bg_color, 20%);
}

// Pointer accessibility notifications
.pie-timer {
  width: 60px;
  height: 60px;
  -pie-border-width: 3px;
  -pie-border-color: $selected_bg_color;
  -pie-background-color: lighten(transparentize($selected_bg_color, 0.7), 40%);
}

// Screen zoom/Magnifier
.magnifier-zoom-region {
  border: 2px solid $selected_bg_color;

  &.full-screen { border-width: 0; }
}