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
|
.preset-row {
padding: 6px 12px;
min-height: 40px;
}
.preset-row.selected label {
font-weight: bold;
}
.volume-separator {
margin-bottom: 0;
}
.volume-row {
padding: 0;
}
.volume-row:hover {
background: none;
}
.volume-row label {
padding: 12px 0 0 12px;
}
.volume-row scale {
padding: 6px 12px 12px;
}
button.playpause {
padding: 6px;
}
.sound-view {
background: @window_bg_color;
padding: 12px;
}
.sound-item {
border-radius: 12px;
padding: 12px;
padding-bottom: 6px;
}
.sound-item:hover {
background: alpha(currentColor, .04);
}
.sound-item image {
border-radius: 76px;
padding: 12px;
}
.sound-item image.accent {
background: alpha(@accent_bg_color, 0.2);
}
.sound-item > box scale {
padding-left: 0;
padding-right: 0;
}
.sound-item > box scale trough slider {
opacity: 0;
}
.sound-item > box scale trough highlight {
min-height: 9px;
min-width: 9px;
}
.sound-item > box scale trough highlight:disabled {
color: @window_fg_color;
background: alpha(currentColor, .30);
}
|