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:
authorVáclav Vančura <vaclav@vancura.org>2017-05-10 13:08:36 +0300
committerVáclav Vančura <vaclav@vancura.org>2017-05-10 13:08:36 +0300
commitc0a9e0b91074fb26f875fe899aff9f74eab5ffa2 (patch)
tree75c0fbad9eaa7bb87a584e13b579d8a1d60c1a5a /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui
parentd3076636559843970d1274ea5037e5dfcd7c4e89 (diff)
[Ide] Information tooltips now use white not-so-disturbing background
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Styles.cs11
1 files changed, 5 insertions, 6 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Styles.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Styles.cs
index 585ec5cb00..a43ac9df79 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Styles.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Gui/Styles.cs
@@ -435,6 +435,11 @@ namespace MonoDevelop.Ide.Gui
KeyBindingsPanel.KeyConflictBackgroundColor = StatusErrorBackgroundColor;
KeyBindingsPanel.KeyConflictForegroundColor = StatusErrorTextColor;
+ // Tooltips
+ StatusInformationBackgroundColor = Color.FromName ("#eeeeee");
+ StatusInformationTextColor = Color.FromName ("#272727");
+ InformationBoxForegroundColor = Color.FromName ("#272727");
+
if (Changed != null)
Changed (null, EventArgs.Empty);
}
@@ -460,10 +465,7 @@ namespace MonoDevelop.Ide.Gui
PropertyPadDividerColor = Color.FromName ("#efefef");
// these colors need to match colors from status icons
- StatusInformationBackgroundColor = Color.FromName ("#87b6f0");
- StatusInformationTextColor = BaseBackgroundColor;
InformationBoxBackgroundColor = StatusInformationBackgroundColor;
- InformationBoxForegroundColor = Color.FromName ("#000000");
InformationForegroundColor = Color.FromName ("#5785bd");
StatusWarningBackgroundColor = Color.FromName ("#f1c40f");
@@ -579,10 +581,7 @@ namespace MonoDevelop.Ide.Gui
PropertyPadDividerColor = SeparatorColor;
// these colors need to match colors from status icons
- StatusInformationBackgroundColor = Color.FromName ("#8fc1ff");
- StatusInformationTextColor = Color.FromName ("#394d66");
InformationBoxBackgroundColor = StatusInformationBackgroundColor;
- InformationBoxForegroundColor = Color.FromName ("#000000");
InformationForegroundColor = Color.FromName ("#9cc8ff");
StatusWarningBackgroundColor = Color.FromName ("#ffcf0f");