Improved borders, troughs

This commit is contained in:
Eudaimon 2022-06-07 10:35:42 +02:00
parent 0b5caad422
commit 9c93b9f620
2 changed files with 9 additions and 9 deletions

View File

@ -168,6 +168,8 @@ label {
color: @disabled_fg; }*/ color: @disabled_fg; }*/
/*label:backdrop { /*label:backdrop {
color: @wm_unfocused_title; }*/ color: @wm_unfocused_title; }*/
label.error {color: @error_color}
label.warning {color: @warning_color}
.dim-label, label.separator, .titlebar:not(headerbar) .subtitle, .dim-label, label.separator, .titlebar:not(headerbar) .subtitle,
headerbar .subtitle { headerbar .subtitle {
@ -3576,9 +3578,9 @@ treeview.view radio {
* GtkScale and some common progressbar parts* * GtkScale and some common progressbar parts*
************/ ************/
scale trough, scale fill, progressbar trough, scrollbar trough, switch { scale trough, scale fill, progressbar trough, scrollbar trough, switch, levelbar trough {
border-radius: 5px; border-radius: 5px;
background-color: @borders; background-color: alpha(black,0.2);/*@borders;*/
padding: 1px; } padding: 1px; }
progressbar trough, scale trough, levelbar trough, scrollbar trough, switch, notebook > header { progressbar trough, scale trough, levelbar trough, scrollbar trough, switch, notebook > header {
/*box-shadow: inset 0 1px 2px 1px alpha(black, 0.3), inset 0 -1px 2px 1px alpha(@highlight_color, 0.3);*/ /*box-shadow: inset 0 1px 2px 1px alpha(black, 0.3), inset 0 -1px 2px 1px alpha(@highlight_color, 0.3);*/
@ -4095,12 +4097,10 @@ levelbar.vertical.discrete block {
levelbar trough { levelbar trough {
border: 1px solid; border: 1px solid;
padding: 1px;
border-radius: 5px;
color: @window_fg; color: @window_fg;
border-color: @borders; border: none;
background-color: @borders; }
/*box-shadow: inset 0 0 0 1px rgba(42, 145, 250, 0); */} /*box-shadow: inset 0 0 0 1px rgba(42, 145, 250, 0); */
/*levelbar trough:backdrop { /*levelbar trough:backdrop {
color: @window_fg; color: @window_fg;
border-color: @unfocused_borders; border-color: @unfocused_borders;
@ -4395,7 +4395,7 @@ scrolledwindow junction {
transition: 80ms ease-out; } transition: 80ms ease-out; }
separator { separator {
background: alpha(@borders, 0.1); background: alpha(@borders, 0.5);
min-width: 1px; min-width: 1px;
min-height: 1px; min-height: 1px;
margin: 0 0.5em; margin: 0 0.5em;

View File

@ -22,7 +22,7 @@
@define-color button_pushed_fg @button_fg; /*could need to be @selected_fg on some themes. Plasma does not have a setting for toggled buttons*/ @define-color button_pushed_fg @button_fg; /*could need to be @selected_fg on some themes. Plasma does not have a setting for toggled buttons*/
@define-color button_pushed_bg mix(@button_bg, @selected_bg, 0.5); /*Plasma does not have a setting for toggled buttons*/ @define-color button_pushed_bg mix(@button_bg, @selected_bg, 0.5); /*Plasma does not have a setting for toggled buttons*/
@define-color border_color shade(mix(@window_fg, @text_widget_bg, 0.5), 0.5); /* to honor Plasma's that would be @borders_breeze, instead of shade(...) */ @define-color border_color shade(mix(@window_fg, @text_widget_bg, 0.7), 1); /* to honor Plasma's that would be @borders_breeze, instead of shade(...) */
@define-color warning_color @warning_color_breeze; @define-color warning_color @warning_color_breeze;