File: _misc.scss

package info (click to toggle)
gnome-shell 49.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 22,804 kB
  • sloc: javascript: 75,083; ansic: 66,192; xml: 1,798; sh: 919; python: 666; makefile: 51
file content (53 lines) | stat: -rw-r--r-- 1,080 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Rubberband for select-area screenshots
.select-area-rubberband {
  background-color: st-transparentize(-st-accent-color,0.7);
  border: 1px solid -st-accent-color;
}

// User icon
.user-icon {
  background-size: contain;
  border-radius: $forced_circular_radius;
  icon-size: $base_icon_size * 4;

  background-color: transparentize($fg_color,0.95);
  color: $fg_color;

  & StIcon {
    padding: $base_padding * 2;
  }

  &.user-avatar {
    box-shadow:inset 0 0 0 1px transparentize($fg_color, 0.9);

    @if $contrast == 'high' {
      @include draw_hc_inset();
    }
  }
}

.lightbox { background-color: black; }
.flashspot { background-color: white; }

// Hidden
.hidden { color: transparent;}

// Caps-lock warning
.caps-lock-warning-label {
  text-align: center;
  padding-bottom: 8px;
  @extend %caption;
  color: $warning_color;
}

/* Workspace animation */

.workspace-animation {
  background-color: $system_bg_color;
}

/* Tiled window previews */
.tile-preview {
  background-color: st-transparentize(-st-accent-color,0.5);
  border: 1px solid -st-accent-color;
}