-
Notifications
You must be signed in to change notification settings - Fork 344
Expand file tree
/
Copy pathnemo-style-application.css
More file actions
84 lines (71 loc) · 2.02 KB
/
nemo-style-application.css
File metadata and controls
84 lines (71 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/* Desktop text stuff */
.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;
}
NemoDesktopWindow GtkPaned {
background-color: transparent;
}
.nemo-canvas-item {
border-radius: 3px;
}
.nemo-desktop {
-NemoIconContainer-activate-prelight-icon-label: true;
}
.nemo-desktop.nemo-canvas-item {
color: #eeeeee;
text-shadow: 2px 2px 3px alpha(black, 0.8);
}
.nemo-desktop.nemo-canvas-item:hover {
background-color: alpha(black, 0.5);
background-image: none;
text-shadow: none;
}
.nemo-desktop.nemo-canvas-item:selected {
background-color: alpha(@theme_selected_bg_color, 0.8);
background-image: none;
text-shadow: none;
color: #f5f5f5;
}
/* EelEditableLabel (icon labels) */
.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;
}
#drop-bar:drop(active) {
box-shadow: none;
}
#drop-bar > revealer > box {
background-color: @theme_bg_color;
border-bottom: 1px solid @borders;
}
#drop-bar {
opacity: 1.0;
}