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
|
/* 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;
}
/* 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;
}
|