diff --git a/pages/settings.mako b/pages/settings.mako index b602e56..0581e5c 100644 --- a/pages/settings.mako +++ b/pages/settings.mako @@ -42,11 +42,11 @@ <% background_options = [ - ("plain", "Use a plain tiled background (default)"), + ("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.'), ] - selected = cookies["EarwigBackground"].value if "EarwigBackground" in cookies else "list" + selected = cookies["EarwigBackground"].value if "EarwigBackground" in cookies else "plain" %>\ % for i, (value, desc) in enumerate(background_options): diff --git a/static/images/background.png b/static/images/background.png index 819c271..0d95bc1 100644 Binary files a/static/images/background.png and b/static/images/background.png differ