linux eventlog: use white background color for spinner

This commit is contained in:
Hylke Bons 2012-03-24 20:23:07 +00:00
parent 20ac15b4aa
commit 8ad9e48830
3 changed files with 8 additions and 4 deletions

View file

@ -85,6 +85,11 @@ namespace SparkleShare {
this.content_wrapper = new EventBox (); this.content_wrapper = new EventBox ();
this.scrolled_window = new ScrolledWindow (); this.scrolled_window = new ScrolledWindow ();
Gdk.Color white = new Gdk.Color();
Gdk.Color.Parse ("white", ref white);
this.content_wrapper.ModifyBg (StateType.Normal, white);
this.web_view = new WebView () { this.web_view = new WebView () {
Editable = false Editable = false
}; };
@ -117,7 +122,6 @@ namespace SparkleShare {
Add (layout_vertical); Add (layout_vertical);
// Hook up the controller events
Controller.HideWindowEvent += delegate { Controller.HideWindowEvent += delegate {
Application.Invoke (delegate { Application.Invoke (delegate {
HideAll (); HideAll ();

View file

@ -216,8 +216,8 @@ namespace SparkleShare {
Application.Invoke (delegate { Application.Invoke (delegate {
address_entry.Text = text; address_entry.Text = text;
address_entry.Sensitive = (state == FieldState.Enabled); address_entry.Sensitive = (state == FieldState.Enabled);
address_example.Markup = "<span size=\"small\" fgcolor=\"" address_example.Markup = "<span size=\"small\" fgcolor=\"" +
+ SecondaryTextColor + "\">" + example_text + "</span>"; SecondaryTextColor + "\">" + example_text + "</span>";
}); });
}; };

View file

@ -61,7 +61,7 @@
} }
body { body {
background-color: #fafafa; background-color: #fff;
color: <!-- $body-color -->; color: <!-- $body-color -->;
font-size: <!-- $body-font-size -->; font-size: <!-- $body-font-size -->;
font-family: <!-- $body-font-family -->; font-family: <!-- $body-font-family -->;