diff --git a/pages/settings.mako b/pages/settings.mako index 2834838..b602e56 100644 --- a/pages/settings.mako +++ b/pages/settings.mako @@ -42,10 +42,9 @@ <% background_options = [ - ("plain-brown", "Use a plain tiled background (brown version)."), - ("plain-blue", "Use a plain tiled background (blue version)."), + ("plain", "Use a plain tiled background (default)"), ("potd", 'Use the current Wikimedia Commons Picture of the Day, unfiltered. Certain POTDs may be unsuitable as backgrounds due to their aspect ratio or subject matter (generally portraits do not work well).'), - ("list", 'Randomly select from a subset of previous Commons Pictures of the Day that work well as widescreen backgrounds, refreshed daily (default).'), + ("list", 'Randomly select from a subset of previous Commons Pictures of the Day that work well as widescreen backgrounds, refreshed daily.'), ] selected = cookies["EarwigBackground"].value if "EarwigBackground" in cookies else "list" %>\ diff --git a/pages/support/header.mako b/pages/support/header.mako index 846e72e..12e0807 100644 --- a/pages/support/header.mako +++ b/pages/support/header.mako @@ -29,9 +29,9 @@ % endfor - <% selected = cookies["EarwigBackground"].value if "EarwigBackground" in cookies else "list" %>\ - % if selected in ["plain-brown", "plain-blue"]: - + <% selected = cookies["EarwigBackground"].value if "EarwigBackground" in cookies else "plain" %>\ + % if selected == "plain": + % else: <% bg_url = set_background(cookies, selected) %>\ diff --git a/static/images/background-blue.png b/static/images/background-blue.png deleted file mode 100644 index 94818e6..0000000 Binary files a/static/images/background-blue.png and /dev/null differ diff --git a/static/images/background-brown.png b/static/images/background-brown.png deleted file mode 100644 index 5bc01a5..0000000 Binary files a/static/images/background-brown.png and /dev/null differ diff --git a/static/images/background.png b/static/images/background.png new file mode 100644 index 0000000..819c271 Binary files /dev/null and b/static/images/background.png differ