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.

 _notification.scss

View raw Download
text/plain • 1.29 kiB
ASCII text
        
            
1
/* Notifications & Mesage Tray */
2
3
$notification_banner_height: 64px;
4
$notification_banner_width: 34em;
5
6
// Banner notifications
7
.notification-banner {
8
min-height: $notification_banner_height;
9
width: $notification_banner_width;
10
11
.notification-actions {
12
spacing: 0;
13
}
14
15
.notification-button {
16
@extend %bubble_button;
17
}
18
}
19
20
// counter
21
.summary-source-counter {
22
font-size: $base_font_size - 1pt;
23
font-weight: bold;
24
height: 1.6em;
25
width: 1.6em;
26
-shell-counter-overlap-x: 3px;
27
-shell-counter-overlap-y: 3px;
28
background-color: $selected_bg_color;
29
color: $selected_fg_color;
30
border: 2px solid $fg_color;
31
box-shadow: 0 2px 2px rgba(0,0,0,0.5);
32
border-radius: 0.9em; // should be 0.8 but whatever; wish I could do 50%;
33
}
34
35
// chat bubbles
36
.chat-body { spacing: 5px; }
37
.chat-response { margin: 5px; }
38
.chat-log-message { color: darken($fg_color,10%); }
39
.chat-new-group { padding-top: 1em; }
40
.chat-received {
41
padding-left: 4px;
42
&:rtl { padding-left: 0px; padding-right: 4px; }
43
}
44
45
.chat-sent {
46
padding-left: 18pt;
47
color: lighten($fg_color, 15%);
48
&:rtl { padding-left: 0; padding-right: 18pt; }
49
}
50
51
.chat-meta-message {
52
padding-left: 4px;
53
@include fontsize($base_font_size - 2);
54
font-weight: bold;
55
color: lighten($fg_color,18%);
56
&:rtl { padding-left: 0; padding-right: 4px; }
57
}
58