-
Notifications
You must be signed in to change notification settings - Fork 344
Expand file tree
/
Copy pathnemo-style-fallback-mandatory.css
More file actions
48 lines (39 loc) · 1.42 KB
/
nemo-style-fallback-mandatory.css
File metadata and controls
48 lines (39 loc) · 1.42 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
/* Things that can traditionally be controlled by the user theme, but that we *must*
* have regardless, for a usable application. A couple things that we cannot do without. */
/* Inactive F3 pane shading */
.nemo-window .nemo-inactive-pane .view:not(:selected), .nemo-window .nemo-inactive-pane iconview {
background-color: @theme_unfocused_bg_color;
}
/* Hide selection highlight and focus cursor in the inactive pane */
.nemo-window .nemo-inactive-pane .view:selected {
background-color: alpha(@theme_unfocused_selected_bg_color, 0.4);
color: @theme_fg_color;
}
.nemo-window .nemo-inactive-pane .view:focus {
outline-width: 0;
outline-offset: 0;
-gtk-outline-radius: 0;
}
/* Rename box styling in the icon view. */
.nemo-window .nemo-window-pane widget.entry {
border: 1px solid;
border-radius: 3px;
color: @theme_fg_color;
border-color: @theme_selected_bg_color;
background-color: @theme_bg_color;
}
.nemo-window .nemo-window-pane widget.entry:selected {
border: 1px solid;
border-radius: 3px;
color: @theme_selected_fg_color;
border-color: @theme_selected_bg_color;
background-color: @theme_selected_bg_color;
}
/* Floating bar in the bottom of a file view, used when the 'status bar' is turned off */
.floating-bar {
border: 1px solid;
border-radius: 3px 3px 0 0;
border-bottom-width: 0;
color: @theme_selected_fg_color;
background-color: @theme_selected_bg_color;
}