added terminal specific styles
This commit is contained in:
@@ -97,3 +97,85 @@ VteTerminal {
|
|||||||
background-color: @terminal_background;
|
background-color: @terminal_background;
|
||||||
color: @terminal_text;
|
color: @terminal_text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*************
|
||||||
|
* Scrollbar *
|
||||||
|
*************/
|
||||||
|
|
||||||
|
|
||||||
|
TerminalWindow .scrollbar {
|
||||||
|
background-image: none;
|
||||||
|
border-style: solid;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
-GtkRange-trough-border: 2;
|
||||||
|
-GtkScrollbar-has-backward-stepper: false;
|
||||||
|
-GtkScrollbar-has-forward-stepper: false;
|
||||||
|
-GtkRange-slider-width: 6;
|
||||||
|
-GtkScrollbar-min-slider-length: 30;
|
||||||
|
|
||||||
|
-GtkRange-stepper-spacing: 0;
|
||||||
|
-GtkRange-trough-under-steppers: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Slider */
|
||||||
|
TerminalWindow .scrollbar.slider {
|
||||||
|
background-color: @terminal_text;
|
||||||
|
border-radius: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalWindow .scrollbar.slider:hover {
|
||||||
|
background-color: shade(@terminal_text, 1.1);
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalWindow .scrollbar.slider:active.
|
||||||
|
TerminalWindow .scrollbar.slider:prelight:active {
|
||||||
|
background-color: shade(@selection, 1.2);
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalWindow .scrollbar.slider:insensitive {
|
||||||
|
background-color: alpha(@insensitive_foreground, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalWindow .scrollbar.slider:backdrop {
|
||||||
|
background-color: alpha(@backdrop_foreground, 0.2);
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalWindow .scrollbar.slider.fine-tune:prelight:active {
|
||||||
|
background-image: none;
|
||||||
|
border: 3px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/* Troughs */
|
||||||
|
TerminalWindow .scrollbars-junction, /* the small square between scrollbars!!! */
|
||||||
|
TerminalWindow .scrollbar.trough {
|
||||||
|
/*border-radius: 10px;*/
|
||||||
|
background-image: none;
|
||||||
|
background: @terminal_background;
|
||||||
|
border-width: 0;
|
||||||
|
border-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalWindow .scrollbar.trough:insensitive {
|
||||||
|
background: none;
|
||||||
|
border: 3px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalWindow .scrollbars-junction:backdrop,
|
||||||
|
TerminalWindow .scrollbar.trough:backdrop {
|
||||||
|
background-image: none;
|
||||||
|
background: @terminal_background;
|
||||||
|
border-width: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
border-image: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
TerminalWindow .scrollbar.trough:insensitive:backdrop {
|
||||||
|
background-image: none;
|
||||||
|
background: none;
|
||||||
|
border-width: 0;
|
||||||
|
border-radius: 0;
|
||||||
|
border-image: none;
|
||||||
|
}
|
||||||
|
@@ -20,13 +20,12 @@
|
|||||||
* Unity Colors *
|
* Unity Colors *
|
||||||
****************/
|
****************/
|
||||||
|
|
||||||
@define-color unity #636E73;
|
@define-color unity #636E73; /* Unity window border color */
|
||||||
@define-color unity_panel #454D50;
|
@define-color backdrop_unity #454D50; /* Backdrop Unity window border color */
|
||||||
@define-color unity_panel_text #dbdee0;
|
@define-color unity_text #dbdee0; /* Unity window text color */
|
||||||
@define-color backdrop_unity #636E73;
|
@define-color backdrop_unity_text #909598; /* Backdrop Unity window text color */
|
||||||
@define-color backdrop_unity_text #909598;
|
@define-color unity_panel #454D50; /* Unity panel color */
|
||||||
@define-color unity_text #dbdee0;
|
@define-color unity_panel_text #dbdee0; /* Unity panel text color */
|
||||||
@define-color backdrop_unity_text #909598;
|
|
||||||
|
|
||||||
/*********************
|
/*********************
|
||||||
* Unity Decorations *
|
* Unity Decorations *
|
||||||
|
@@ -68,7 +68,7 @@
|
|||||||
/* Troughs */
|
/* Troughs */
|
||||||
.scrollbars-junction, /* the small square between scrollbars!!! */
|
.scrollbars-junction, /* the small square between scrollbars!!! */
|
||||||
.scrollbar.trough {
|
.scrollbar.trough {
|
||||||
border-radius: 10px;
|
/*border-radius: 10px;*/
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background:@background;
|
background:@background;
|
||||||
border-width: 0;
|
border-width: 0;
|
||||||
|
Reference in New Issue
Block a user