This file is indexed.

/usr/share/smplayer/themes/Masalla/style.qss is in smplayer-themes 1:17.3.0-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
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
85
86
87
88
89
90
91
92
93
94
95
QMenu {
	menu-scrollable: 1;
}

#time_label {
	/* color: white; */
	color: #505050;
	border: 0px solid transparent;
	font: bold 18px;
	padding-left: 10px;
	padding-right: 10px;
}

QToolTip {
	background-color: lightyellow;
	color: black;
	border: 1px solid silver;
	border-radius: 4px;
}


QToolBar > QSlider {
	/* border: 1px solid black; */
	min-height: 24px;
}

/* Horizontal */
QToolBar > QSlider::groove:horizontal {
	border: 1px solid #637EB8;
	background: white;
	height: 12px;
	border-radius: 3px;
}

QToolBar > QSlider::sub-page:horizontal {
	/*background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ABC7EC, stop: 1 #154A98);*/
	background-color: lightblue;
	border: 1px solid #777;
	height: 10px;
	border-radius: 4px;
}

QToolBar > QSlider::add-page:horizontal {
	background: #fff;
	border: 1px solid #154A98;
	height: 10px;
	border-radius: 4px;
}

QToolBar > QSlider::handle:horizontal{
	background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #fff, stop:1 #ABC7EC);
	border: 1px solid #777;
	width: 5px;
	margin-top: -4px;
	margin-bottom: -4px;
	border-radius: 2px;
}

/* Vertical */
QToolBar > QSlider::groove:vertical{
	border: 1px solid #637EB8;
	background: white;
	width: 7px;
	border-radius: 3px;
}

QToolBar > QSlider::add-page:vertical {
	background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, stop: 0 #ABC7EC, stop: 1 #154A98);
	border: 1px solid #154A98;
	width: 10px;
	border-radius: 4px;
}

QToolBar > QSlider::sub-page:vertical {
	background: #fff;
	border: 1px solid #777;
	width: 7px;
	border-radius: 4px;
}

QToolBar > QSlider::handle:vertical{
	background: qlineargradient(x1:0, y1:0, x2:1, y2:1, stop:0 #fff, stop:1 #ABC7EC);
	border: 1px solid #777;
	height: 5px;
	margin-left: -4px;
	margin-right: -4px;
	border-radius: 2px;
}

/* Horizontal and vertical */
QToolBar > QSlider::handle:horizontal:hover,
QToolBar > QSlider::handle:vertical:hover {
	border: 1px solid #154A98;
	border-radius: 3px;
}