-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstylesheet.css
68 lines (58 loc) · 1.54 KB
/
stylesheet.css
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
.QSAP-panel-grid {
box-shadow: none;
}
.QSAP-panel-separated {
/* Add spacing between panels */
margin-bottom: 5px;
margin-left: 5px;
/* There is too much blank space in the top and bottom of the new panel, we reduce it */
padding-top: 10px;
padding-bottom: 10px;
}
.QSAP-panel-merged {
/* There is too much blank space in the bottom of the new panel, we remove it.
* Unfortunatly, negative margins are not supported so we can't */
/*margin-bottom: -10px;*/
}
.QSAP-media-section .message {
/* Prevent the text from getting too large */
width: 100px;
}
.QSAP-media-section-optional {
/* Add margins because it's too close to sliders */
margin-bottom: 8px;
}
.QSAP-media-section-optional:last-child {
margin-bottom: 0px;
}
.QSAP-media-section-optional .message {
/* Make margins smaller */
margin: 2px 0px 0px 0px;
/* Smoother corners */
border-radius: 22px;
/* Allow for a more compact layout */
margin: 0px;
}
.QSAP-media-section-optional .message-icon-bin {
/* Compact layout */
padding: 12px;
padding-left: 15px;
padding-right: 0px;
}
.QSAP-media-section-optional .media-message-cover-icon.fallback {
/* Make the fallback icon (the note) the same size as other icons */
padding: 9px;
}
.QSAP-media-section-optional .message-media-control {
/* Move control buttons closer to each other */
padding-left: 5px;
padding-right: 5px;
}
.QSAP-application-volume-slider-label {
/* Align text with bar */
padding-left: 6px;
/* Make the text smaller */
font-size: 0.92em;
/* Nice ellepsis if the text overflow */
text-overflow: ellipsis;
}