Parent: [2d4bf5] (diff)

Download this file

common.css    43 lines (37 with data), 1.3 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
/* We keep the system default size for the general widget. But we have to
* specify the sizes (smaller) in some other places, and, because
* there are no relative sizes in qss, this has to be done in absolute
* values, based on an assumption of a 10pt size for the system default
* If you need bigger sizes, uncomment and increase the QWidget value, than
* increase the other sizes in proportion. Also change cdbrowser/common.css for
* the directory browser area. */
QWidget {
/* font-size: 16pt;*/
}
/* Player area title. Default 10 */
QLabel#lab_title {
font-size: 10pt;
font-weight: bold;
}
/* Playlist and player area labels except title. Default 7 */
QLabel#lab_artist, QLabel#lab_album, QLabel#curTime, QLabel#endTime {
font-size: 7pt;
}
/* Titles in playlist entries. Default 8 */
QLabel#pl_lab_title {
font-size: 8pt;
font-weight: bold;
}
/* Other playlist entry fields. Default 6 pt */
QLabel#pl_lab_artist, QLabel#pl_lab_album, QLabel#pl_lab_time {
font-size: 6pt;
}
QLabel#lab_totalTime {
font-weight: bold;
}
/* Note that having a minimal resource file and setting the button here
was the only way I found to style the tab close button which is otherwise
an ugly red thing */
QTabBar::close-button {
image: url(:/icons/cross.png)
}