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.
28 lines
579 B
28 lines
579 B
/*********
|
|
* Switch *
|
|
**********/
|
|
|
|
GtkSwitch {
|
|
padding: 1;
|
|
border-radius: 12;
|
|
border-style: solid;
|
|
}
|
|
|
|
GtkSwitch.slider {
|
|
border-color: @progressbar_border_active_color;
|
|
background-image: -gtk-gradient (linear,
|
|
left top,
|
|
left bottom,
|
|
from (@progressbar_gr_color_a),
|
|
to (@progressbar_gr_color_b));
|
|
}
|
|
|
|
GtkSwitch.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));
|
|
}
|