Various fixes
parent
2712fe8149
commit
d52653bef4
|
@ -2,7 +2,7 @@
|
||||||
* dynamic notebooks *
|
* dynamic notebooks *
|
||||||
*********************/
|
*********************/
|
||||||
.dynamic-notebook {
|
.dynamic-notebook {
|
||||||
background-color: shade(@theme_bg_color, 1.02);
|
background-color: shade(@theme_bg_color, 1.08);
|
||||||
background-image: none;
|
background-image: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
border-width: 1px;
|
border-width: 1px;
|
||||||
border-color: shade(@theme_bg_color, 0.8);
|
border-color: shade(@theme_bg_color, 0.8);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background-color: shade(@theme_bg_color, 1.02);
|
background-color: shade(@theme_bg_color, 1.08);
|
||||||
color: @theme_fg_color;
|
color: @theme_fg_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -61,15 +61,13 @@
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: shade(@theme_bg_color, 0.8);
|
border-color: shade(@theme_bg_color, 0.8);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
background-color:shade(@theme_bg_color, 1.08);
|
||||||
from (@theme_base_color),
|
color: @theme_fg_color;
|
||||||
to (shade(@theme_base_color, 0.97)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-view .entry {
|
.content-view .entry {
|
||||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
background-color: @theme_base_color;
|
||||||
from (shade(@theme_base_color, 0.97)),
|
color: @theme_text_color;
|
||||||
to (@theme_base_color));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-view .title,
|
.content-view .title,
|
||||||
|
@ -110,9 +108,9 @@
|
||||||
border-width: 0 0 1px 0;
|
border-width: 0 0 1px 0;
|
||||||
border-style: solid;
|
border-style: solid;
|
||||||
border-color: shade(@theme_bg_color, 0.8);
|
border-color: shade(@theme_bg_color, 0.8);
|
||||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
background-image: none;
|
||||||
from (shade(@theme_bg_color, 0.96)),
|
background-color: @theme_bg_color;
|
||||||
to (shade(@theme_bg_color, 0.94)));
|
|
||||||
-GtkWidget-window-dragging: true;
|
-GtkWidget-window-dragging: true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -152,10 +150,8 @@
|
||||||
*************/
|
*************/
|
||||||
GraniteWidgetsStatusBar {
|
GraniteWidgetsStatusBar {
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
background-image: none;
|
||||||
from (shade(shade(@theme_bg_color, 1.02), 1.1)),
|
background-color: @theme_bg_color;
|
||||||
to (shade(shade(@theme_bg_color, 1.02), 0.9)));
|
|
||||||
|
|
||||||
box-shadow: inset 0 1px shade(@theme_bg_color, 0.8);
|
box-shadow: inset 0 1px shade(@theme_bg_color, 0.8);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -177,9 +173,8 @@ GraniteWidgetsPopOver {
|
||||||
|
|
||||||
.popover_bg {
|
.popover_bg {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
background-image: none;
|
||||||
from (shade(@menu_bg_color, 1.02)),
|
background-color: @menu_bg_color;
|
||||||
to (shade(@menu_bg_color, 1.0)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
GraniteWidgetsPopOver .sidebar.view,
|
GraniteWidgetsPopOver .sidebar.view,
|
||||||
|
@ -202,10 +197,8 @@ GraniteWidgetsPopOver .button:hover:active {
|
||||||
}
|
}
|
||||||
|
|
||||||
GraniteWidgetsPopOver .entry {
|
GraniteWidgetsPopOver .entry {
|
||||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
background-image: none;
|
||||||
from (shade(@theme_base_color, 0.97)),
|
background-color: @theme_base_color;
|
||||||
to (@theme_base_color));
|
|
||||||
|
|
||||||
color: @theme_text_color;
|
color: @theme_text_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -216,10 +209,9 @@ GraniteWidgetsPopOver .entry {
|
||||||
|
|
||||||
.app:hover,
|
.app:hover,
|
||||||
.app:focus {
|
.app:focus {
|
||||||
background-image: -gtk-gradient(linear, left top, left bottom,
|
border-color: shade(@theme_selected_bg_color, 0.90);
|
||||||
from (shade(@theme_selected_bg_color, 1.1)),
|
background-image: none;
|
||||||
to (shade(@theme_selected_bg_color, 0.9)));
|
background-color: @theme_selected_bg_color;
|
||||||
|
|
||||||
color: @theme_selected_fg_color;
|
color: @theme_selected_fg_color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -439,10 +439,15 @@ column-header:last-child .button {
|
||||||
/****************
|
/****************
|
||||||
* drawing area *
|
* drawing area *
|
||||||
****************/
|
****************/
|
||||||
|
|
||||||
GtkDrawingArea {
|
GtkDrawingArea {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GtkDrawingArea:insensitive {
|
||||||
|
background-color: shade(@theme_bg_color, 0.90);
|
||||||
|
}
|
||||||
|
|
||||||
/************
|
/************
|
||||||
* gucharmap *
|
* gucharmap *
|
||||||
*************/
|
*************/
|
||||||
|
@ -941,10 +946,10 @@ GtkTreeMenu .menuitem * {
|
||||||
|
|
||||||
.notebook tab {
|
.notebook tab {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
border-color: shade(@theme_bg_color, 0.90);
|
border-color: shade(@theme_bg_color, 0.85);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: shade(@theme_bg_color, 0.95);
|
background-color: shade(@theme_bg_color, 0.90);
|
||||||
}
|
}
|
||||||
|
|
||||||
.notebook tab:active {
|
.notebook tab:active {
|
||||||
|
@ -1164,18 +1169,18 @@ GtkScale.mark {
|
||||||
|
|
||||||
GtkScale.trough {
|
GtkScale.trough {
|
||||||
margin: 7px 0;
|
margin: 7px 0;
|
||||||
border-color: shade(@theme_bg_color, 0.8);
|
border-color: shade(@theme_bg_color, 0.85);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: shade(@theme_bg_color, 0.95);
|
background-color: shade(@theme_bg_color, 0.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
GtkScale.trough.vertical {
|
GtkScale.trough.vertical {
|
||||||
margin: 0 7px;
|
margin: 0 7px;
|
||||||
border-color: shade(@theme_bg_color, 0.8);
|
border-color: shade(@theme_bg_color, 0.85);
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
background-image: none;
|
background-image: none;
|
||||||
background-color: shade(@theme_bg_color, 0.95);
|
background-color: shade(@theme_bg_color, 0.85);
|
||||||
}
|
}
|
||||||
|
|
||||||
.menubar .menuitem .scale.highlight.left,
|
.menubar .menuitem .scale.highlight.left,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/* Default color scheme */
|
/* Default color scheme */
|
||||||
@define-color bg_color #dedede;
|
@define-color bg_color #dedede;
|
||||||
@define-color fg_color #555555;
|
@define-color fg_color #555555;
|
||||||
@define-color base_color #f1f1f1;
|
@define-color base_color #f9f9f9;
|
||||||
@define-color text_color #555555;
|
@define-color text_color #555555;
|
||||||
@define-color selected_bg_color #d64937;
|
@define-color selected_bg_color #d64937;
|
||||||
@define-color selected_fg_color #f9f9f9;
|
@define-color selected_fg_color #f9f9f9;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
[Settings]
|
[Settings]
|
||||||
gtk-color-scheme = "base_color:#eeeeee\nbg_color:#dddddd\ntooltip_bg_color:#2d2d2d\nselected_bg_color:#d64937\ntext_color:#888888\nfg_color:#888888;\ntooltip_fg_color:#f9f9f9\nselected_fg_color:#f9f9f9\nlink_color:#569be4"
|
gtk-color-scheme = "base_color:#f9f9f9\nbg_color:#dedede\ntooltip_bg_color:#2d2d2d\nselected_bg_color:#d64937\ntext_color:#555555\nfg_color:#555555;\ntooltip_fg_color:#f9f9f9\nselected_fg_color:#f9f9f9\nlink_color:#d64937"
|
||||||
gtk-auto-mnemonics = 1
|
gtk-auto-mnemonics = 1
|
||||||
gtk-visible-focus = automatic
|
gtk-visible-focus = automatic
|
||||||
|
|
Loading…
Reference in New Issue