This file is indexed.

/usr/share/gnome-shell/extensions/pixel-saver@deadalnix.me/themes/Arc/style.css is in gnome-shell-extension-pixelsaver 1.10+git20161217-49f47bf-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
/* The box-bin element holds the button-box element which holds each window-button.
 *
 * Control spacing between each button via .button-box.
 */
.box-bin { 
	border-width: 0px;
	padding: 0px;
	margin: 0px;
}

.button-box {
	spacing: 4px;
}

/* The style for each individual window button */
.window-button {
	width: 24px;
	height: 20px;
}

/* The style for the window button when hovered over */
.window-button:hover {
}

/* Here you can style each individual button. You need to define style classes
 * ".minimize", ".maximize" and ".close".
 * You can additionally define styles for the :hover and :active pseudo classes
 * if you wish.
 * See the 'Radiance' style.css for an example of this.
 */
/* Style for the minimize button */
.minimize {
	background-image: url('titlebutton-min.png');
}

.minimize:hover {
	background-image: url('titlebutton-min-hover.png');
}

/* Style for the maximize button */
.maximize {
	background-image: url('titlebutton-max.png');
}

.maximize:hover {
	background-image: url('titlebutton-max-hover.png');
}

/* Style for the close button */
.close {
	background-image: url('titlebutton-close.png');
}

.close:hover {
	background-image: url('titlebutton-close-hover.png');
}