52 lines
724 B
CSS
52 lines
724 B
CSS
|
window {
|
||
|
background: rgba(40, 42, 54, 0.8);
|
||
|
border: 2px solid rgba(189, 147, 249, 0.8);
|
||
|
}
|
||
|
|
||
|
trough {
|
||
|
background: #363847;
|
||
|
}
|
||
|
|
||
|
progress {
|
||
|
background: #79659f;
|
||
|
}
|
||
|
|
||
|
/* DEFAULT STYLE
|
||
|
window {
|
||
|
padding: 12px 20px;
|
||
|
border-radius: 999px;
|
||
|
border: none;
|
||
|
}
|
||
|
|
||
|
#container {
|
||
|
margin: 16px;
|
||
|
}
|
||
|
|
||
|
image, label {
|
||
|
color: @theme_fg_color;
|
||
|
}
|
||
|
|
||
|
progressbar:disabled,
|
||
|
image:disabled {
|
||
|
opacity: 0.5;
|
||
|
}
|
||
|
|
||
|
progressbar {
|
||
|
min-height: 6px;
|
||
|
border-radius: 999px;
|
||
|
background: transparent;
|
||
|
border: none;
|
||
|
}
|
||
|
trough {
|
||
|
min-height: inherit;
|
||
|
border-radius: inherit;
|
||
|
border: none;
|
||
|
background: alpha(@theme_fg_color, 0.5);
|
||
|
}
|
||
|
progress {
|
||
|
min-height: inherit;
|
||
|
border-radius: inherit;
|
||
|
border: none;
|
||
|
background: @theme_fg_color;
|
||
|
}*/
|