Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVsevolod Kukol <sevo@xamarin.com>2015-11-19 16:12:42 +0300
committerVsevolod Kukol <sevoku@xamarin.com>2015-11-29 18:54:19 +0300
commitd544ab3894dda5b80570f2e18169266f34d36888 (patch)
tree587a9fc68a1763490830cadabe0ac8ef4f39ed2d /main/src/core/MonoDevelop.Ide/gtkrc.win32-dark
parenta91307ea71a056cdf11647231be72da38b2e5d80 (diff)
[Windows] Optimize dark gtkrc styles
* fix inactive colors in lists * fix button foreground colors * optimize combo box style
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/gtkrc.win32-dark')
-rw-r--r--main/src/core/MonoDevelop.Ide/gtkrc.win32-dark48
1 files changed, 14 insertions, 34 deletions
diff --git a/main/src/core/MonoDevelop.Ide/gtkrc.win32-dark b/main/src/core/MonoDevelop.Ide/gtkrc.win32-dark
index c2b961f210..4b40033f7b 100644
--- a/main/src/core/MonoDevelop.Ide/gtkrc.win32-dark
+++ b/main/src/core/MonoDevelop.Ide/gtkrc.win32-dark
@@ -14,7 +14,7 @@ fg_color: #bfbfbf
base_color: #222
text_color: #bfbfbf
selected_bg_color: #649dd6
-selected_fg_color: #222
+selected_fg_color: #fff
tooltip_bg_color: #5a5a5a
tooltip_fg_color: #222222
tooltip_border_color: #b2b2b2"
@@ -72,7 +72,7 @@ style "default" {
GtkButton::default-border = { 0, 0, 0, 0 }
GtkButton::inner-border = { 2, 2, 2, 2 }
- GtkTreeView::odd-row-color = @base_color
+ GtkTreeView::odd-row-color = @bg_color
GtkScrolledWindow::scrollbar-spacing = 0
GtkScale::slider-length = 14
@@ -85,6 +85,7 @@ style "default" {
GtkTreeView::expander-size = 8
GtkExpander::expander-size = 8
GtkComboBox::arrow-size = 8
+ GtkComboBox::appears-as-list = 1
engine "xamarin" {
arrowstyle = 2
@@ -117,6 +118,12 @@ style "button" {
xthickness = 2
ythickness = 1
+ fg[NORMAL] = "#000"
+ fg[PRELIGHT] = "#000"
+ fg[SELECTED] = "#000"
+ fg[INSENSITIVE] = darker (@fg_color)
+ fg[ACTIVE] = "#000"
+
engine "wimp" {
}
}
@@ -185,11 +192,8 @@ style "tooltip"
style "treeview" = "default"
{
- GtkTreeView::odd-row-color = "#f5f5f5"
-
- base[SELECTED] = "#bcd0d4"
- base[ACTIVE] = "#bcd0d4"
- text[SELECTED] = "#000"
+ base[ACTIVE] = @selected_bg_color
+ text[ACTIVE] = @selected_fg_color
engine "xamarin" {
roundness = 0
@@ -200,8 +204,6 @@ style "treeview" = "default"
style "tree-header" = "wide"
{
- bg[NORMAL] = "#f2f2f2"
-
engine "xamarin" {
listviewheaderstyle = 3
separatorstyle = 1
@@ -216,33 +218,15 @@ style "icon-view" = "default"
text[SELECTED] = "#000"
}
-style "toolbar-combo-box" = "default"
-{
- fg[NORMAL] = @fg_color
- text[NORMAL] = @fg_color
- bg[NORMAL] = "#fff"
- base[NORMAL] = "#fff"
-
- engine "wimp" {
- comboboxstyle = 0
- arrowstyle = 2
- }
-}
-
style "combo-box" = "default"
{
- fg[NORMAL] = "#616161"
+ xthickness = 0
+ ythickness = 0
engine "wimp" {
- arrowstyle = 3
}
}
-style "combo-box-label" = "combo-box"
-{
- fg[NORMAL] = "#595959"
-}
-
style "notebook" = "default"
{
GtkNotebook::tab-overlap = 1
@@ -367,6 +351,7 @@ widget "*GtkEntry" style:highest "entry"
widget "*search-entry*" style "search-entry"
widget_class "*<GtkButton>" style "button"
+widget_class "*.GtkButton.*" style "button"
widget "*.GtkToggleButton" style "button"
widget "wizard_dialog" style "wizard-dialog"
@@ -397,10 +382,5 @@ widget_class "*.<GtkComboBox>.*" style "combo-box"
widget_class "*.<GtkComboBoxText>.*" style "combo-box"
widget_class "*.<GtkComboBoxEntry>.*" style "combo-box"
widget_class "*.<GtkComboBoxText>.<GtkEntry>" style "entry"
-widget_class "*.<GtkComboBox>.*.GtkLabel" style "combo-box-label"
-
-# Comboboxes within toolbars
-widget_class "*.<GtkToolbar>.*.<GtkComboBox>.*" style "toolbar-combo-box"
-widget "*MainToolbar*.GtkComboBox.*" style "toolbar-combo-box"
widget "gtk-tooltip*" style "tooltip"