blob: d3eb889ddae3af985215edd42c46e145d8af61e8 (
plain)
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
|
/*
* this is the MusE application style sheet
*/
/* TODO */
/*
QLabel#midiChannelLabel { font-size: 6pt }
MidiRack, EffectRack { font-size: 8pt }
QLabel#trackLabel { font-size: 6pt }
SimpleButton { font-size: 8pt }
QToolButton#routeButton { font-size: 8pt }
QToolButton#preButton { font-size: 8pt }
TimeCanvas {
qproperty-fontSize1: 6;
qproperty-fontSize2: 8;
qproperty-fontSize3: 8
}
QLabel#knobLabel { font-size: 8pt }
Awl--MidiVolEntry { font-size: 5pt }
Awl--MidiPanEntry { font-size: 5pt }
Awl--VolEntry { font-size: 5pt }
Awl--PanEntry { font-size: 5pt }
QLabel#AudioOut {
font-size: 7pt;
background-color: white;
}
QLabel#Group {
font-size: 7pt;
background-color: yellow;
}
QLabel#Wave {
font-size: 7pt;
background-color: rgb(0,255,0);
}
QLabel#AudioIn {
font-size: 7pt;
background-color: red;
}
QLabel#Synth {
font-size: 7pt;
background-color: blue;
}
QLabel#Midi {
font-size: 7pt;
background-color: gray;
}
QLabel#MidiOut {
font-size: 7pt;
background-color: gray;
}
QLabel#MidiIn {
font-size: 7pt;
background-color: gray;
}
QLabel#M-Synth {
font-size: 7pt;
background-color: gray;
}
*/
|