Fixed a few bugs.

This commit is contained in:
Sam Hewitt 2015-02-27 15:08:13 -05:00
parent c76f0e3de8
commit c847cf5fa2
14 changed files with 116 additions and 22 deletions

View File

@ -0,0 +1,30 @@
# ==============================================================================
# FIREFOX SPECIFIC SETTINGS
# ==============================================================================
style "ff-default" {
GtkCheckButton::indicator-size = 14
engine "murrine" {
reliefstyle = 0
}
}
widget "MozillaGtkWidget*Toolbar*" style "toolbar"
#widget "MozillaGtkWidget*Statusbar*" style "ff-statusbar"
widget "MozillaGtkWidget*" style "ff-default"
# ------------------------------------------------------------------------------
# Some Firefox (3.0/3.5) GTK widgets hierarchy (maybe useful for someone)
# ------------------------------------------------------------------------------
# Top toolbars (and maybe others)
#widget "MozillaGtkWidget.GtkFixed.GtkHandleBox.GtkToolbar" style "theme-dark-toolbar"
# Findbar entry, gecko (all html) entry
#widget "MozillaGtkWidget.GtkFixed.GtkEntry" style "theme-dark-entry"
# ALL buttons
#widget "MozillaGtkWidget.GtkFixed.GtkButton" style "theme-dark-button"

View File

@ -2330,6 +2330,7 @@ widget "gtk-tooltip*" style "tooltips"
include "Apps/apps.rc" include "Apps/apps.rc"
include "Apps/chrome.rc" include "Apps/chrome.rc"
include "Apps/eclipse.rc" include "Apps/eclipse.rc"
include "Apps/firefox.rc"
include "Apps/gimp.rc" include "Apps/gimp.rc"
include "Apps/libreoffice.rc" include "Apps/libreoffice.rc"
include "Apps/panel.rc" include "Apps/panel.rc"

View File

@ -33,12 +33,6 @@ GduWindow .header-bar:backdrop {
background-color: shade(@disks,0.9); background-color: shade(@disks,0.9);
} }
GduVolumeGrid .toolbar { GduWindow .toolbar {
background-color: @disks; background-color: @disks;
} }
GduVolumeGrid,
GduVolumeGrid * {
color: @text;
}

View File

@ -77,7 +77,7 @@ GraniteWidgetsPopOver .button:active:hover {
* Welcome * * Welcome *
**********/ **********/
GraniteWidgetsWelcome {k GraniteWidgetsWelcome {
background-color: @base; background-color: @base;
} }
@ -95,7 +95,7 @@ GraniteWidgetsWelcome .h3 {
********/ ********/
.panel { .panel {
background-color: transparent; background: @panel;
color: #fff; color: #fff;
font-weight: bold; font-weight: bold;
} }

View File

@ -28,7 +28,7 @@
@define-color border #D8D8D8;/* Borders color */ @define-color border #D8D8D8;/* Borders color */
@define-color separator alpha(#000, 0.2);/* Separator color */ @define-color separator alpha(#000, 0.2);/* Separator color */
@define-color text @foreground;/* Text color */ @define-color text @foreground;/* Text color */
@define-color panel #576165;/* Panel color */ @define-color panel #454D50;/* Panel color */
@define-color header #636E73;/* Header color */ @define-color header #636E73;/* Header color */
@define-color backdrop_header #454D50; /* Header backdrop color */ @define-color backdrop_header #454D50; /* Header backdrop color */
@define-color header_text #fff;/* Header text color */ @define-color header_text #fff;/* Header text color */

View File

@ -57,9 +57,16 @@ GtkMessageDialog .titlebar:backdrop {
} }
GtkDialog, GtkDialog,
GtkAboutDialog,
GtkMessageDialog { GtkMessageDialog {
color: @text;
box-shadow: none; box-shadow: none;
} }
GtkDialog GtkLabel,
GtkAboutDialog GtkLabel,
GtkMessageDialog GtkLabel {
color: @text;
}
GtkDialog .toolbar { GtkDialog .toolbar {
background-image: none; background-image: none;

View File

@ -53,16 +53,23 @@
color: @backdrop_header_text; color: @backdrop_header_text;
} }
/* Subtitle */ /* Subtitle */
.header-bar .subtitle { .header-bar .subtitle {
font: 9; font: 9;
color: inherit;
} }
.header-bar .subtitle:backdrop { .header-bar .subtitle,
color: inherit; .header-bar .subtitle GtkLabel,
.header-bar .subtitle GtkImage {
color: alpha(@header_text, 0.8);
} }
.header-bar .subtitle:backdrop,
.header-bar .subtitle:backdrop GtkLabel,
.header-bar .subtitle:backdrop GtkImage {
color: alpha(@backdrop_header_text,0.8);
}
/* Separator */ /* Separator */
.header-bar .separator { .header-bar .separator {

View File

@ -137,6 +137,20 @@
box-shadow:inset 1px 0 0 0 @border; box-shadow:inset 1px 0 0 0 @border;
} }
/* Hover */
.notebook tab.top:hover {
box-shadow:inset 0 -3px 0 0 @border;
}
.notebook tab.bottom:hover {
box-shadow:inset 0 3px 0 0 @border;
}
.notebook tab.left:hover {
box-shadow:inset -3px 0 0 0 @border;
}
.notebook tab.right:hover {
box-shadow:inset 3px 0 0 0 @border;
}
/* Active */ /* Active */
.notebook tab.top:active { .notebook tab.top:active {
box-shadow:inset 0 -3px 0 0 @selection; box-shadow:inset 0 -3px 0 0 @selection;
@ -298,11 +312,25 @@
border: none; border: none;
background-image: none; background-image: none;
background: none; background: none;
border-radius: 16px; border-radius: 4px;
padding: 0; padding: 2px;
box-shadow: none; box-shadow: none;
} }
.notebook tab .button GtkImage {
color: @backdrop_text;
}
.notebook tab .button:hover GtkImage,
.notebook tab .button:active GtkImage {
color: @selection_foreground;
}
.notebook tab .button:backdrop GtkImage {
color: @backdrop_text;
}
.notebook tab .button:hover { .notebook tab .button:hover {
color: @foreground; color: @foreground;
background-color: alpha(#000, 0.1); background-color: alpha(#000, 0.1);

View File

@ -70,7 +70,7 @@
.scrollbar.trough { .scrollbar.trough {
border-radius: 10px; border-radius: 10px;
background-image: none; background-image: none;
background: none; background:@background;
border-width: 0; border-width: 0;
border-image: none; border-image: none;
} }

View File

@ -21,6 +21,7 @@
* Separators * * Separators *
**************/ **************/
GtkSeparator,
.separator, .separator,
.button .separator { .button .separator {
color: @separator; color: @separator;

View File

@ -18,13 +18,13 @@
/* Slider colors */ /* Slider colors */
@define-color slider @background; @define-color slider @background;
@define-color slider_border alpha(#000, 0.4); @define-color slider_border alpha(#000, 0.3);
@define-color backdrop_slider @backdrop_background; @define-color backdrop_slider @backdrop_background;
@define-color insensitive_slider @insensitive_background; @define-color insensitive_slider @insensitive_background;
/* Trough colors */ /* Trough colors */
@define-color trough shade(@base, 0.8); @define-color trough shade(@base, 0.8);
@define-color trough_border alpha(#000, 0.3); @define-color trough_border alpha(#000, 0.2);
@define-color backdrop_trough shade(@backdrop_base, 0.8); @define-color backdrop_trough shade(@backdrop_base, 0.8);
@define-color insensitive_trough shade(@insensitive_base, 0.8); @define-color insensitive_trough shade(@insensitive_base, 0.8);

View File

@ -56,16 +56,25 @@
font: Bold 11; font: Bold 11;
} }
/* Subtitle */
.titlebar .subtitle { .titlebar .subtitle {
color: @header_text; font: 9;
}
.titlebar .subtitle,
.titlebar .subtitle GtkLabel,
.titlebar .subtitle GtkImage {
color: alpha(@header_text,0.8);
} }
.titlebar .subtitle:backdrop, .titlebar .subtitle:backdrop,
.titlebar .title:backdrop { .titlebar .subtitle:backdrop GtkLabel,
color: @backdrop_header_text; .titlebar .subtitle:backdrop GtkImage {
color: alpha(@backdrop_header_text,0.8);
} }
/********************** /**********************
* Header bar buttons * * Header bar buttons *
**********************/ **********************/

View File

@ -172,6 +172,7 @@
} }
/* Images */ /* Images */
.toolbar GtkImage,
.toolbar .button GtkImage { .toolbar .button GtkImage {
color: @toolbar_text; color: @toolbar_text;
} }
@ -200,6 +201,7 @@
} }
/* Labels */ /* Labels */
.toolbar GtkLabel
.toolbar .button GtkLabel { .toolbar .button GtkLabel {
color: @toolbar_text; color: @toolbar_text;
} }

View File

@ -23,7 +23,7 @@
.frame { .frame {
background: none; background: none;
border: 1px solid @border; /*border: 1px solid @border;*/
color: @foreground; color: @foreground;
} }
@ -43,6 +43,21 @@
border:none; border:none;
} }
/*********
* Table *
*********/
GtkTable {
background: none;
border: 1px solid @border;
color: @text;
}
GtkTable GtkLabel {
color: @text;
}
/******** /********
* View * * View *
********/ ********/