-
Notifications
You must be signed in to change notification settings - Fork 345
Expand file tree
/
Copy pathnemo-style-application.css
More file actions
52 lines (46 loc) · 1.64 KB
/
nemo-style-application.css
File metadata and controls
52 lines (46 loc) · 1.64 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
46
47
48
49
50
51
52
/* Desktop window structure — always applied regardless of theme.
* The desktop window must be transparent so the wallpaper shows through. */
.nemo-window.nemo-desktop-window notebook,
.nemo-window.nemo-desktop-window paned {
background-color: transparent;
}
.nemo-desktop-window,
.nemo-desktop-window:backdrop
{
box-shadow: none;
}
.nemo-canvas-item {
border-radius: 3px;
}
/* Custom widget property — controls nemo behavior, not appearance. */
.nemo-desktop {
-NemoIconContainer-activate-prelight-icon-label: true;
}
/* EelEditableLabel (inline rename entry on desktop).
* Always applied so the rename box stays legible over any wallpaper. */
.nemo-desktop.view .entry,
.nemo-desktop.view .entry:active,
.nemo-desktop.view .entry:focus,
.nemo-desktop.view .entry:backdrop {
border-image: none;
border-style: solid;
border-width: 1px;
border-color: #000000;
border-radius: 3px;
color: #000000;
caret-color: #000000;
text-shadow: none;
background-image: -gtk-gradient(linear,
left top, left bottom,
from (shade(rgba(255,255,255,1), 0.86)),
color-stop (0.15, shade(rgba(255,255,255,1), 0.96)),
color-stop (0.50, shade(rgba(255,255,255,1), 0.98)),
to (shade(rgba(255,255,255,1), 1.00)));
}
.nemo-desktop.view .entry:selected,
.nemo-desktop.view .entry:focus:selected,
.nemo-desktop.view .entry:backdrop:selected {
background-color: @theme_selected_bg_color;
color: @theme_selected_fg_color;
text-shadow: none;
}