diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-04 15:08:27 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-04 15:08:27 -0400 |
commit | d1cb73cb55ce2ecf185e2554a878a689113a01e4 (patch) | |
tree | a8a3cbf15ff99c1a66a7760b7efa29ebf42e8742 /doc/style.css | |
parent | 6e2f9e97f3eb2e8e7ecdc2bdcf053a1323df4af8 (diff) | |
download | ikiwiki-d1cb73cb55ce2ecf185e2554a878a689113a01e4.tar ikiwiki-d1cb73cb55ce2ecf185e2554a878a689113a01e4.tar.gz |
set background color of floating divs
If a floating div is next to (and in front of) a div that takes up the
whole screen width, and has a background color set, that color can bleed
through into the floating div. One exampe of this is inline's blogpost
form. Avoid it by setting the background color of the floating element.
Diffstat (limited to 'doc/style.css')
-rw-r--r-- | doc/style.css | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/style.css b/doc/style.css index 0e3bfb3e6..c7dc070cd 100644 --- a/doc/style.css +++ b/doc/style.css @@ -205,6 +205,8 @@ div.recentchanges { margin-left: 40px; margin-bottom: 40px; padding: 2ex 2ex; + background: white; + color: black !important; } /* outlines */ @@ -272,6 +274,8 @@ input#openid_url { margin-bottom: 1ex; padding: 1ex 1ex; border: 1px solid #aaa; + background: white; + color: black !important; } /* Provided for use by template plugin for floating note boxes. */ @@ -283,6 +287,8 @@ input#openid_url { padding: 1ex 1ex; border: 1px solid #aaa; width: 25% + background: white; + color: black !important; } /* Used by the popup template and for backlinks hiding. */ |