You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
989 B
44 lines
989 B
/***************
|
|
* ProgressBar *
|
|
***************/
|
|
|
|
GtkProgressBar {
|
|
padding: 1;
|
|
border-radius: 12;
|
|
border-style: solid;
|
|
}
|
|
|
|
GtkProgressBar.progressbar {
|
|
border-color: none;
|
|
background-image: -gtk-gradient (linear,
|
|
left top,
|
|
left bottom,
|
|
from (@progressbar_gr_color_a),
|
|
to (@progressbar_gr_color_b));
|
|
}
|
|
|
|
GtkProgressBar.progressbar.vertical {
|
|
background-image: -gtk-gradient (linear,
|
|
left top,
|
|
right top,
|
|
from (@progressbar_gr_color_a),
|
|
to (@progressbar_gr_color_b));
|
|
}
|
|
|
|
GtkProgressBar.trough {
|
|
border-color: @border_trough_color;
|
|
background-image: -gtk-gradient (linear,
|
|
left top,
|
|
left bottom,
|
|
from (@trough_gr_color_a),
|
|
to (@trough_gr_color_b));
|
|
}
|
|
|
|
GtkProgressBar.trough.vertical {
|
|
background-image: -gtk-gradient (linear,
|
|
left top,
|
|
right top,
|
|
from (@trough_gr_color_a),
|
|
to (@trough_gr_color_b));
|
|
}
|