Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Schampijer <simon@schampijer.de>2012-03-16 09:27:19 (GMT)
committer Simon Schampijer <simon@schampijer.de>2012-03-16 09:27:19 (GMT)
commit57ac8e63e4e15f21ddca8feb5d229aead8de892f (patch)
treee602338b68fb18fdeeb7bd7a5e885ef0ab03b6c2
parent7464b808eb12b1df650952e3c8214acff1d1360f (diff)
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 <simon@schampijer.de>
-rw-r--r--gtk3/theme/gtk-widgets.css.em20
1 files changed, 15 insertions, 5 deletions
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 {