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.

 _misc.scss

View raw Download
text/plain • 617 B
ASCII text
        
            
1
// Rubberband for select-area screenshots
2
.select-area-rubberband {
3
background-color: transparentize($selected_bg_color,0.7);
4
border: 1px solid $selected_bg_color;
5
}
6
7
// User icon
8
.user-icon {
9
background-size: contain;
10
color: $osd_fg_color;
11
border-radius: 99px;
12
&:hover {
13
color: lighten($osd_fg_color,30%);
14
}
15
}
16
17
.lightbox { background-color: black; }
18
.flashspot { background-color: white; }
19
20
21
// Hidden
22
.hidden { color: rgba(0,0,0,0);}
23
24
// Caps-lock warning
25
.caps-lock-warning-label {
26
text-align: center;
27
padding-bottom: 8px;
28
@include fontsize($base_font_size - 1);
29
color: $warning_color;
30
}
31