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.
128 lines
3.1 KiB
128 lines
3.1 KiB
14 years ago
|
/***********
|
||
|
* Borders *
|
||
|
***********/
|
||
|
/* border and inner stroke */
|
||
|
.button,
|
||
|
.frame,
|
||
|
.notebook {
|
||
|
-unico-border-gradient: -gtk-gradient (linear, left top, left bottom,
|
||
|
from (shade (@theme_bg_color, 0.7)),
|
||
|
to (shade (@theme_bg_color, 0.7)));
|
||
|
-unico-inner-stroke-style: custom;
|
||
|
-unico-inner-stroke-color: alpha (shade (@theme_bg_color, 1.26), 0.4);
|
||
|
}
|
||
|
|
||
|
.button:insensitive,
|
||
|
.frame:insensitive,
|
||
|
.notebook:insensitive {
|
||
|
-unico-border-gradient: -gtk-gradient (linear, left top, left bottom,
|
||
|
from (shade (@theme_bg_color, 0.8)),
|
||
|
to (shade (@theme_bg_color, 0.8)));
|
||
|
}
|
||
|
|
||
|
/* inset */
|
||
|
.button:active,
|
||
|
.button:insensitive,
|
||
|
.check,
|
||
|
.entry,
|
||
|
.radio {
|
||
|
-unico-outer-stroke-style: custom;
|
||
|
-unico-outer-stroke-gradient: -gtk-gradient (linear, left top, left bottom,
|
||
|
from (alpha (shade (@theme_bg_color, 0.9), 0.6)),
|
||
|
to (alpha (shade (@theme_bg_color, 1.05), 0.6)));
|
||
|
}
|
||
|
|
||
|
/* shadow */
|
||
|
.button,
|
||
|
.primary-toolbar.toolbar.raised.button,
|
||
|
.check:active,
|
||
|
.frame,
|
||
|
.notebook .button,
|
||
|
.notebook,
|
||
|
.radio:active {
|
||
|
-unico-outer-stroke-style: custom;
|
||
|
-unico-outer-stroke-gradient: -gtk-gradient (linear, left top, left bottom,
|
||
|
from (alpha (shade (@theme_bg_color, 0.05), 0.05)),
|
||
|
to (alpha (shade (@theme_bg_color, 0.05), 0.09)));
|
||
|
}
|
||
|
|
||
|
/* frame */
|
||
|
.frame {
|
||
|
border-radius: 0;
|
||
|
-unico-border-gradient: -gtk-gradient (linear, left top, left bottom,
|
||
|
from (shade (@theme_bg_color, 0.8)),
|
||
|
to (shade (@theme_bg_color, 0.8)));
|
||
|
}
|
||
|
|
||
|
/* GtkScrolledWindow */
|
||
|
GtkScrolledWindow.frame {
|
||
|
border-style: solid;
|
||
|
border-color: @internal_element_color;
|
||
|
border-width: 1;
|
||
|
border-radius: 0;
|
||
|
}
|
||
|
|
||
|
/****************
|
||
|
* Text Entries *
|
||
|
****************/
|
||
|
.entry,
|
||
|
.toolbar.entry {
|
||
|
background-color: @theme_base_color;
|
||
|
background-image: none;
|
||
|
border-radius: 2;
|
||
|
border-width: 1;
|
||
|
border-style: solid;
|
||
|
-unico-border-gradient: -gtk-gradient (linear,
|
||
|
left top, left bottom,
|
||
|
from (shade (@theme_border_color_b, 1.00)),
|
||
|
to (shade (@theme_border_color_a, 1.00)));
|
||
|
padding: 2;
|
||
|
}
|
||
|
|
||
|
.entry:focused {
|
||
|
border-color: @theme_selected_bg_color;
|
||
|
-unico-border-gradient: none;
|
||
|
}
|
||
|
|
||
|
.entry:insensitive {
|
||
|
background-color: @insensitive_bg_color;
|
||
|
-unico-border-gradient: -gtk-gradient (linear,
|
||
|
left top, left bottom,
|
||
|
from (shade (@inactive_frame_border_a, 1.00)),
|
||
|
to (shade (@inactive_frame_border_b, 1.00)));
|
||
|
}
|
||
|
|
||
|
.entry.progressbar {
|
||
|
background-color: @theme_selected_bg_color;
|
||
|
color: @theme_selected_fg_color;
|
||
|
border-width: 1;
|
||
|
border-radius: 1;
|
||
|
border-color: @progressbar_border;
|
||
|
}
|
||
|
|
||
|
/**************
|
||
|
* Separators *
|
||
|
**************/
|
||
|
GtkSeparator {
|
||
|
border-style: solid;
|
||
|
border-color: shade (@theme_bg_color, 0.9);
|
||
|
-unico-border-gradient: none;
|
||
|
-unico-inner-stroke-style: custom;
|
||
|
-unico-inner-stroke-color: alpha (shade (@theme_bg_color, 1.26), 0.3);
|
||
|
}
|
||
|
|
||
|
.button GtkSeparator {
|
||
|
border-style: solid;
|
||
|
border-color: shade (@button_bg_color, 0.9);
|
||
|
-unico-inner-stroke-style: custom;
|
||
|
-unico-inner-stroke-color: alpha (shade (@button_bg_color, 1.26), 0.3);
|
||
|
}
|
||
|
|
||
|
.menuitem.separator {
|
||
|
border-style: solid;
|
||
|
border-color: alpha (@theme_bg_color, 0.45);
|
||
|
-unico-border-gradient: none;
|
||
|
-unico-inner-stroke-style: custom;
|
||
|
-unico-inner-stroke-color: alpha (shade (@bg_color, 1.26), 0.3);
|
||
|
}
|