about: don't use eye bleeding orange with the new background

This commit is contained in:
Hylke Bons 2012-02-17 02:19:54 +01:00
parent 17cc623027
commit 13f1cc07a0
3 changed files with 4 additions and 4 deletions

View file

@ -65,7 +65,7 @@ namespace SparkleShare {
InvokeOnMainThread (delegate {
UpdatesTextField.StringValue = "A newer version (" + new_version + ") is available!";
UpdatesTextField.TextColor =
NSColor.FromCalibratedRgba (0.96f, 0.47f, 0.0f, 1.0f); // Tango Orange #2
NSColor.FromCalibratedRgba (0.45f, 0.62f, 0.81f, 1.0f);
});
};
@ -73,7 +73,7 @@ namespace SparkleShare {
InvokeOnMainThread (delegate {
UpdatesTextField.StringValue = "You are running the latest version.";
UpdatesTextField.TextColor =
NSColor.FromCalibratedRgba (0.45f, 0.62f, 0.81f, 1.0f); // Tango Sky Blue #1
NSColor.FromCalibratedRgba (0.45f, 0.62f, 0.81f, 1.0f);
});
};

View file

@ -384,7 +384,7 @@ namespace SparkleShare {
TableView.SelectRow (Controller.SelectedPluginIndex, false);
(AddressTextField.Delegate as SparkleTextFieldDelegate).StringValueChanged += delegate {
(AddressTextField.Delegate as SparkleTextFieldDelegate).StringValueChanged += delegate {
Controller.CheckAddPage (
AddressTextField.StringValue,
PathTextField.StringValue,

View file

@ -66,7 +66,7 @@ namespace SparkleShare {
Controller.NewVersionEvent += delegate (string new_version) {
Application.Invoke (delegate {
this.updates.Markup = String.Format ("<span font_size='small' fgcolor='#f57900'>{0}</span>",
this.updates.Markup = String.Format ("<span font_size='small' fgcolor='#729fcf'>{0}</span>",
String.Format (_("A newer version ({0}) is available!"), new_version));
this.updates.ShowAll ();