-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathnemo-style-desktop.css
More file actions
45 lines (40 loc) · 1.44 KB
/
nemo-style-desktop.css
File metadata and controls
45 lines (40 loc) · 1.44 KB
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
/* Desktop icon label text shadows.
*
* Nemo applies one of these classes (shadow-normal / shadow-darker /
* shadow-darkest) to the icon container based on the user's preference.
* If "Use GTK theme" is enabled and the current theme provides its own
* .nemo-desktop styling, this entire stylesheet is not loaded — the
* theme controls text appearance directly.
*/
/* Shadow variant: Normal (traditional nemo default) */
.nemo-desktop.nemo-canvas-item.shadow-normal {
color: #eeeeee;
text-shadow: 1px 1px alpha(black, 0.8);
}
/* Shadow variant: Darker */
.nemo-desktop.nemo-canvas-item.shadow-darker {
color: #eeeeee;
text-shadow: 1px 1px black;
}
/* Shadow variant: Darkest */
.nemo-desktop.nemo-canvas-item.shadow-darkest {
color: #eeeeee;
text-shadow: 1px 1px black, 1px 0px alpha(black, 0.6), 0px 1px alpha(black, 0.6);
}
/* Hover for shadow modes */
.nemo-desktop.nemo-canvas-item.shadow-normal:hover,
.nemo-desktop.nemo-canvas-item.shadow-darker:hover,
.nemo-desktop.nemo-canvas-item.shadow-darkest:hover {
background-color: alpha(black, 0.5);
background-image: none;
text-shadow: none;
}
/* Selected for shadow modes */
.nemo-desktop.nemo-canvas-item.shadow-normal:selected,
.nemo-desktop.nemo-canvas-item.shadow-darker:selected,
.nemo-desktop.nemo-canvas-item.shadow-darkest:selected {
background-color: alpha(@theme_selected_bg_color, 0.8);
background-image: none;
text-shadow: none;
color: #f5f5f5;
}