86 lines
1.8 KiB
CSS
86 lines
1.8 KiB
CSS
/**
|
|
* App Window
|
|
*/
|
|
@define-color bg_color #2e3440;
|
|
@define-color window_bg @bg_color;
|
|
@define-color window_border_color #3b4252;
|
|
@define-color prefs_backgroud #eceff4;
|
|
|
|
/**
|
|
* Input
|
|
*/
|
|
@define-color selected_bg_color #4c566a;
|
|
@define-color selected_fg_color #eceff4;
|
|
@define-color input_color #e5e9f0;
|
|
@define-color caret_color darker(@input_color);
|
|
|
|
/**
|
|
* Result items
|
|
*/
|
|
@define-color item_name #d8dee9;
|
|
@define-color item_text #4c566a;
|
|
@define-color item_box_selected #3b4252;
|
|
@define-color item_text_selected #d8dee9;
|
|
@define-color item_name_selected #d8dee9;
|
|
@define-color item_shortcut_color #e5e9f0;
|
|
@define-color item_shortcut_shadow darker(@bg_color);
|
|
@define-color item_shortcut_color_sel #5e81ac;
|
|
@define-color item_shortcut_shadow_sel darker(@item_box_selected);
|
|
|
|
.app {
|
|
background-color: @window_bg;
|
|
border-color: @window_border_color;
|
|
}
|
|
|
|
.input {
|
|
color: @input_color;
|
|
}
|
|
|
|
/**
|
|
* Selected text in input
|
|
*/
|
|
.input *:selected,
|
|
.input *:focus,
|
|
*:selected:focus {
|
|
background-color: alpha (@selected_bg_color, 0.9);
|
|
color: @selected_fg_color;
|
|
}
|
|
|
|
.item-text {
|
|
color: @item_text;
|
|
}
|
|
.item-name {
|
|
color: @item_name;
|
|
}
|
|
|
|
.selected.item-box {
|
|
background-color: @item_box_selected;
|
|
border-left: 1px solid @window_border_color;
|
|
border-right: 1px solid @window_border_color;
|
|
}
|
|
.selected.item-box .item-text {
|
|
color: @item_text_selected;
|
|
}
|
|
.selected.item-box .item-name {
|
|
color: @item_name_selected;
|
|
}
|
|
.item-shortcut {
|
|
color: @item_shortcut_color;
|
|
text-shadow: 1px 1px 1px @item_shortcut_shadow;
|
|
}
|
|
.selected.item-box .item-shortcut {
|
|
color: @item_shortcut_color_sel;
|
|
text-shadow: 1px 1px 1px @item_shortcut_shadow_sel;
|
|
}
|
|
|
|
.prefs-btn {
|
|
opacity: 0.8;
|
|
}
|
|
.prefs-btn:hover {
|
|
background-color: @prefs_backgroud;
|
|
}
|
|
|
|
.no-window-shadow {
|
|
margin: -20px;
|
|
}
|