Fix granite widgets

pull/70/head v2.0
Satyajit Sahoo 2013-09-17 13:59:50 +05:30
parent 824fb29335
commit 00d5c1535d
1 changed files with 32 additions and 4 deletions

View File

@ -27,6 +27,7 @@
border-radius: 0; border-radius: 0;
background-color: shade(@theme_bg_color, 0.9); background-color: shade(@theme_bg_color, 0.9);
background-image: none; background-image: none;
color: @theme_fg_color;
} }
.dynamic-notebook .notebook tab:nth-child(first) { .dynamic-notebook .notebook tab:nth-child(first) {
@ -38,6 +39,7 @@
border-color: shade(@theme_bg_color, 0.8); border-color: shade(@theme_bg_color, 0.8);
border-top-color: @theme_selected_bg_color; border-top-color: @theme_selected_bg_color;
background-color: shade(@theme_bg_color, 1.08); background-color: shade(@theme_bg_color, 1.08);
background-image: none;
color: @theme_fg_color; color: @theme_fg_color;
} }
@ -75,12 +77,14 @@
border-color: shade(@theme_base_color, 0.8); border-color: shade(@theme_base_color, 0.8);
border-radius: 2px; border-radius: 2px;
background-color:@theme_base_color; background-color:@theme_base_color;
background-image: none;
color: @theme_text_color; color: @theme_text_color;
} }
.content-view, .content-view,
.content-view GtkViewport { .content-view GtkViewport {
background-color: @theme_base_color; background-color: @theme_base_color;
background-image: none;
} }
.content-view * { .content-view * {
@ -146,6 +150,7 @@
border-radius: 0; border-radius: 0;
border-style: none; border-style: none;
background-color: @menu_bg_color; background-color: @menu_bg_color;
background-image: none;
color: @menu_fg_color; color: @menu_fg_color;
} }
@ -156,6 +161,7 @@
.source-list.view { .source-list.view {
border-radius: 0; border-radius: 0;
background-color: @theme_bg_color; background-color: @theme_bg_color;
background-image: none;
color: mix(@theme_fg_color, @theme_bg_color, 0.1); color: mix(@theme_fg_color, @theme_bg_color, 0.1);
} }
@ -167,11 +173,13 @@
.source-list.view:selected, .source-list.view:selected,
.source-list.view:prelight:selected { .source-list.view:prelight:selected {
background-color: @theme_selected_bg_color; background-color: @theme_selected_bg_color;
background-image: none;
color: @theme_selected_fg_color; color: @theme_selected_fg_color;
} }
.source-list.view:prelight { .source-list.view:prelight {
background-color: shade(@theme_bg_color, 1.08); background-color: shade(@theme_bg_color, 1.08);
background-image: none;
} }
.source-list.badge, .source-list.badge,
@ -194,6 +202,7 @@
.content-view .button.noundo { .content-view .button.noundo {
border-color: shade(@error_bg_color, 0.8); border-color: shade(@error_bg_color, 0.8);
background-color: shade(@error_bg_color, 1.08); background-color: shade(@error_bg_color, 1.08);
background-image: none;
color: @error_fg_color; color: @error_fg_color;
} }
@ -201,18 +210,21 @@
.content-view .button.noundo:hover { .content-view .button.noundo:hover {
border-color: shade(@error_bg_color, 0.7); border-color: shade(@error_bg_color, 0.7);
background-color: @error_bg_color; background-color: @error_bg_color;
background-image: none;
} }
.button.noundo:active, .button.noundo:active,
.content-view .button.noundo:active { .content-view .button.noundo:active {
border-color: shade(@error_bg_color, 0.8); border-color: shade(@error_bg_color, 0.8);
background-color: shade(@error_bg_color, 0.95); background-color: shade(@error_bg_color, 0.95);
background-image: none;
} }
.button.noundo:active:hover, .button.noundo:active:hover,
.content-view .button.noundo:active:hover { .content-view .button.noundo:active:hover {
border-color: shade(@error_bg_color, 0.7); border-color: shade(@error_bg_color, 0.7);
background-color: shade(@error_bg_color, 0.97); background-color: shade(@error_bg_color, 0.97);
background-image: none;
} }
.button.noundo GtkLabel, .button.noundo GtkLabel,
@ -227,6 +239,7 @@
.content-view .button.affirmative { .content-view .button.affirmative {
border-color: shade(@theme_selected_bg_color, 0.8); border-color: shade(@theme_selected_bg_color, 0.8);
background-color: shade(@theme_selected_bg_color, 1.08); background-color: shade(@theme_selected_bg_color, 1.08);
background-image: none;
color: @theme_selected_fg_color; color: @theme_selected_fg_color;
} }
@ -234,18 +247,21 @@
.content-view .button.affirmative:hover { .content-view .button.affirmative:hover {
border-color: shade(@theme_selected_bg_color, 0.7); border-color: shade(@theme_selected_bg_color, 0.7);
background-color: @theme_selected_bg_color; background-color: @theme_selected_bg_color;
background-image: none;
} }
.button.affirmative:active, .button.affirmative:active,
.content-view .button.affirmative:active { .content-view .button.affirmative:active {
border-color: shade(@theme_selected_bg_color, 0.8); border-color: shade(@theme_selected_bg_color, 0.8);
background-color: shade(@theme_selected_bg_color, 0.95); background-color: shade(@theme_selected_bg_color, 0.95);
background-image: none;
} }
.button.affirmative:active:hover, .button.affirmative:active:hover,
.content-view .button.affirmative:active:hover { .content-view .button.affirmative:active:hover {
border-color: shade(@theme_selected_bg_color, 0.7); border-color: shade(@theme_selected_bg_color, 0.7);
background-color: shade(@theme_selected_bg_color, 0.97); background-color: shade(@theme_selected_bg_color, 0.97);
background-image: none;
} }
.button.affirmative GtkLabel, .button.affirmative GtkLabel,
@ -395,6 +411,7 @@ GraniteWidgetsPopOver {
GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver .sidebar.view,
GraniteWidgetsPopOver * { GraniteWidgetsPopOver * {
background-color: transparent; background-color: transparent;
background-image: none;
color: @menu_fg_color; color: @menu_fg_color;
} }
@ -403,6 +420,7 @@ GraniteWidgetsPopOver .sidebar.view:selected:focus,
GraniteWidgetsPopOver *:selected, GraniteWidgetsPopOver *:selected,
GraniteWidgetsPopOver *:selected:focus { GraniteWidgetsPopOver *:selected:focus {
background-color: @theme_selected_bg_color; background-color: @theme_selected_bg_color;
background-image: none;
color: @theme_selected_fg_color; color: @theme_selected_fg_color;
} }
@ -434,18 +452,18 @@ GraniteWidgetsPopOver .button:active:hover {
/* linked buttons */ /* linked buttons */
GraniteWidgetsPopOver .linked .button { GraniteWidgetsPopOver .linked .button {
box-shadow: inset -1px 0 shade(@menu_bg, 0.9); box-shadow: inset -1px 0 shade(@menu_bg_color, 0.9);
} }
GraniteWidgetsPopOver .linked .button:active { GraniteWidgetsPopOver .linked .button:active {
box-shadow: inset -1px 0 shade(@menu_bg, 0.9), box-shadow: inset -1px 0 shade(@menu_bg_color, 0.9),
inset 1px 0 alpha(@dark_shadow, 0.07), inset 1px 0 alpha(@dark_shadow, 0.07),
inset 0 1px alpha(@dark_shadow, 0.08), inset 0 1px alpha(@dark_shadow, 0.08),
inset 0 -1px alpha(@dark_shadow, 0.05); inset 0 -1px alpha(@dark_shadow, 0.05);
} }
GraniteWidgetsPopOver .linked .button:insensitive { GraniteWidgetsPopOver .linked .button:insensitive {
box-shadow: inset -1px 0 shade(@menu_bg, 0.9); box-shadow: inset -1px 0 shade(@menu_bg_color, 0.9);
} }
/* remove box shadow from last-child and only-child */ /* remove box shadow from last-child and only-child */
@ -487,6 +505,7 @@ GraniteWidgetsPopOver *.separator {
border-width: 0; border-width: 0;
border-radius: 2px; border-radius: 2px;
background-color: transparent; background-color: transparent;
background-image: none;
} }
.button.app:hover { .button.app:hover {
@ -531,6 +550,7 @@ GraniteWidgetsPopOver *.separator {
border-color: shade(@theme_base_color, 0.7); border-color: shade(@theme_base_color, 0.7);
border-radius: 2px; border-radius: 2px;
background-color: @theme_base_color; background-color: @theme_base_color;
background-image: none;
} }
.files-overlay-bar GtkLabel { .files-overlay-bar GtkLabel {
@ -545,6 +565,7 @@ GraniteWidgetsPopOver *.separator {
border-color: shade(@theme_base_color, 0.7); border-color: shade(@theme_base_color, 0.7);
border-radius: 0; border-radius: 0;
background-color: @theme_base_color; background-color: @theme_base_color;
background-image: none;
color: @theme_text_color; color: @theme_text_color;
} }
@ -553,6 +574,7 @@ GraniteWidgetsPopOver *.separator {
-GtkTreeView-grid-line-width: 0; -GtkTreeView-grid-line-width: 0;
background-color: @theme_base_color; background-color: @theme_base_color;
background-image: none;
color: @theme_text_color; color: @theme_text_color;
} }
@ -560,6 +582,7 @@ GraniteWidgetsPopOver *.separator {
border-width: 0; border-width: 0;
border-style: none; border-style: none;
background-color: shade(@theme_base_color, 0.97); background-color: shade(@theme_base_color, 0.97);
background-image: none;
} }
@ -567,10 +590,12 @@ GraniteWidgetsPopOver *.separator {
border-width: 0; border-width: 0;
border-style: none; border-style: none;
background-color: shade(@theme_base_color, 1.0); background-color: shade(@theme_base_color, 1.0);
background-image: none;
} }
.album-list-view GtkTreeView row:selected { .album-list-view GtkTreeView row:selected {
background-color: @selected_bg_color; background-color: @selected_bg_color;
background-image: none;
color: @selected_fg_color; color: @selected_fg_color;
} }
@ -578,8 +603,8 @@ GraniteWidgetsPopOver *.separator {
* birdie * * birdie *
**********/ **********/
BirdieWidgetsTweetList * { BirdieWidgetsTweetList * {
background-image: none;
background-color: transparent; background-color: transparent;
background-image: none;
} }
/********* /*********
@ -598,6 +623,7 @@ BirdieWidgetsTweetList * {
border-color: shade(@theme_base_color, 0.7); border-color: shade(@theme_base_color, 0.7);
border-radius: 2px; border-radius: 2px;
background-color: @theme_base_color; background-color: @theme_base_color;
background-image: none;
color: @theme_text_color; color: @theme_text_color;
} }
@ -612,6 +638,7 @@ BirdieWidgetsTweetList * {
*********/ *********/
.panel { .panel {
background-color: @panel_bg_color; background-color: @panel_bg_color;
background-image: none;
color: @panel_fg_color; color: @panel_fg_color;
font: bold; font: bold;
} }
@ -633,6 +660,7 @@ BirdieWidgetsTweetList * {
.wingpanel-indicator-button { .wingpanel-indicator-button {
padding: 0 2px; padding: 0 2px;
background-color: transparent; background-color: transparent;
background-image: none;
color: @panel_fg_color; color: @panel_fg_color;
} }