File: caja-desktop.css

package info (click to toggle)
caja 1.26.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 37,940 kB
  • sloc: ansic: 137,883; xml: 1,152; makefile: 1,083; perl: 54; sh: 20
file content (38 lines) | stat: -rw-r--r-- 1,435 bytes parent folder | download | duplicates (4)
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
/* Everything that themes must not override goes in this file */
/* This is loaded with GTK_STYLE_PROVIDER_PRIORITY_APPLICATION and overrides themes */

.caja-desktop-window,
.caja-desktop:not(:selected):not(:active):not(.rubberband),
/* unfortunately we also have to apply this to all views normal states for the
 * split view items not to have background */
.caja-canvas-item:not(:selected):not(:active):not(.rubberband){
	background-color: transparent;
	border: none;
}

/* desktop mode */
.caja-desktop.caja-canvas-item {
    color: #ffffff;
    text-shadow: 1px 1px alpha (#000000, 0.8);
}

.caja-desktop.caja-canvas-item:selected,
.caja-desktop.caja-canvas-item:active,
.caja-desktop.caja-canvas-item:hover {
    text-shadow: none;
}

/* remove possible theme settings for borders on scrolledwindow with gtk+-3.20 */
.caja-desktop-window > grid.vertical > box.vertical > box.vertical > box.vertical > scrolledwindow,
.caja-desktop-window > grid.vertical > box.vertical > box.vertical > box.vertical > scrolledwindow.frame,
.caja-desktop-window > grid.vertical > box.vertical > box.vertical > box.vertical > scrolledwindow > widget.view.caja-desktop {
   border-width: 0px;
   border-style: none;
   border-radius: 0px;
}

/* This is not on the desktop but will cause errors if themes can override */
/* Padding in slider buttons causes GTK errors in GTK 3.20 or later */
.caja-navigation-window .slider-button {
	padding: 0px;
}