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 <sevoku@xamarin.com>2016-01-17 14:22:26 +0300
committerVsevolod Kukol <sevoku@xamarin.com>2016-01-17 15:51:22 +0300
commitb4940a68d66f9c1355e7f2dfb67392f1eb1fa629 (patch)
treea4311ef22f43c691f90596486efab7bde85a1d3d /main/src/core/MonoDevelop.Ide/gtkrc.mac-dark
parentdfc6d154c02c694f49192848c0e277bd7ce9117d (diff)
[Ide] Fix link label hover background
This is a temp workaround. Link label drawing must be fixed in the Gtk engine. It should not draw any prelight background at all.
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/gtkrc.mac-dark')
-rw-r--r--main/src/core/MonoDevelop.Ide/gtkrc.mac-dark8
1 files changed, 8 insertions, 0 deletions
diff --git a/main/src/core/MonoDevelop.Ide/gtkrc.mac-dark b/main/src/core/MonoDevelop.Ide/gtkrc.mac-dark
index 29d21d0b8a..d833865352 100644
--- a/main/src/core/MonoDevelop.Ide/gtkrc.mac-dark
+++ b/main/src/core/MonoDevelop.Ide/gtkrc.mac-dark
@@ -445,6 +445,11 @@ style "spin-button" = "wider"
}
}
+style "link-label-fix"
+{
+ base[PRELIGHT] = @bg_color # disable link hover background
+}
+
### Apply the styles
@@ -521,3 +526,6 @@ widget "*MonoDevelop.PropertyGridToolbar.GtkRadioButton" style "toggle-button"
# BooleanEditorCell must always have murrine style
widget_class "*BooleanEditor*" style "propertygrid-radio-or-check-box"
+
+# disable hover background on link labels
+class "GtkLabel" style "link-label-fix" \ No newline at end of file