linux eventlog: use white background color for spinner

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

View file

@ -85,6 +85,11 @@ namespace SparkleShare {
this.content_wrapper = new EventBox ();
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 () {
Editable = false
};
@ -117,7 +122,6 @@ namespace SparkleShare {
Add (layout_vertical);
// Hook up the controller events
Controller.HideWindowEvent += delegate {
Application.Invoke (delegate {
HideAll ();

View file

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

View file

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