From 57ac8e63e4e15f21ddca8feb5d229aead8de892f Mon Sep 17 00:00:00 2001 From: Simon Schampijer Date: Fri, 16 Mar 2012 09:27:19 +0000 Subject: Theme the LinkInfo label that is displayed in Browse at the bottom left Set the color of the label and the background of it's parent the overlay. Labels don't create their own window to render themselves into. Instead, they draw themselves directly onto their parents window, so we have to set the background-color of the parent in order to set the labels' background color [1]. The patch does adjust the Browse entry names to be consistent. [1] http://developer.gnome.org/gtk-faq/stable/x810.html Signed-off-by: Simon Schampijer --- diff --git a/gtk3/theme/gtk-widgets.css.em b/gtk3/theme/gtk-widgets.css.em index 8c038cb..efbf638 100644 --- a/gtk3/theme/gtk-widgets.css.em +++ b/gtk3/theme/gtk-widgets.css.em @@ -294,24 +294,34 @@ SugarPaletteWindowWidget GtkToggleButton.button:active { background-color: @selection_grey; } -/* Browser notebook */ +/* Browse notebook */ -BrowserNotebook.notebook tab { +BrowseNotebook.notebook tab { background-color: @selection_grey; } -BrowserNotebook.notebook tab .button { +BrowseNotebook.notebook tab .button { border-radius: $(toolbutton_padding)px; } -BrowserNotebook.notebook tab:active { +BrowseNotebook.notebook tab:active { background-color: @toolbar_grey; } -BrowserNotebook.notebook tab:active *:active { +BrowseNotebook.notebook tab:active *:active { color: @white; } +BrowseLinkInfo { + color: @white; +} + +BrowseTabPage { + background-color: @black; +} + + + /* Control panel */ SugarSectionView { -- cgit v0.9.1