added terminal specific styles

This commit is contained in:
Sam Hewitt 2015-04-07 20:25:43 -04:00
parent 3fdd726853
commit f053ce79e0
3 changed files with 90 additions and 9 deletions

View File

@ -96,4 +96,86 @@ VteTerminal {
/*-TerminalScreen-background-darkness: 0.95;*/
background-color: @terminal_background;
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;
}

View File

@ -20,13 +20,12 @@
* Unity Colors *
****************/
@define-color unity #636E73;
@define-color unity_panel #454D50;
@define-color unity_panel_text #dbdee0;
@define-color backdrop_unity #636E73;
@define-color backdrop_unity_text #909598;
@define-color unity_text #dbdee0;
@define-color backdrop_unity_text #909598;
@define-color unity #636E73; /* Unity window border color */
@define-color backdrop_unity #454D50; /* Backdrop Unity window border color */
@define-color unity_text #dbdee0; /* Unity window text color */
@define-color backdrop_unity_text #909598; /* Backdrop Unity window text color */
@define-color unity_panel #454D50; /* Unity panel color */
@define-color unity_panel_text #dbdee0; /* Unity panel text color */
/*********************
* Unity Decorations *

View File

@ -68,7 +68,7 @@
/* Troughs */
.scrollbars-junction, /* the small square between scrollbars!!! */
.scrollbar.trough {
border-radius: 10px;
/*border-radius: 10px;*/
background-image: none;
background:@background;
border-width: 0;