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.

 _search-entry.scss

View raw Download
text/plain • 757 B
ASCII text
        
            
1
// Search entry
2
3
%search-entry,
4
.search-entry {
5
width: 320px - 8px * 2;
6
padding: 0 8px;
7
border-radius: $corner-radius $corner-radius 0 0;
8
color: on(dark, text-disabled);
9
selection-background-color: on(dark, stroke);
10
selected-color: on(dark);
11
@include entry(normal, $fc: on(dark, stroke));
12
13
&:hover {
14
@include entry(hover, $fc: on(dark, stroke));
15
color: on(dark, text-disabled);
16
}
17
18
&:focus {
19
@include entry(focus, $fc: on(dark));
20
padding: 0 8px;
21
border: 0;
22
color: on(dark);
23
}
24
25
StLabel.hint-text {
26
color: on(dark, text2);
27
}
28
29
.search-entry-icon {
30
icon-size: 16px;
31
padding: 0 4px;
32
color: on(dark, text2);
33
}
34
35
&:hover,
36
&:focus {
37
.search-entry-icon {
38
color: on(dark);
39
}
40
}
41
}
42