diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-10-01 21:51:52 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-10-01 21:51:52 +0200 |
commit | b0c566703735f28a86cb44dd089c1760b9e44da4 (patch) | |
tree | a5ccce4eb419fe92a775502affc379ba2cd8dc28 | |
parent | b8408828cdf1110ea514ca24db62e30f2e462e9e (diff) | |
download | rpg-b0c566703735f28a86cb44dd089c1760b9e44da4.tar.gz rpg-b0c566703735f28a86cb44dd089c1760b9e44da4.tar.bz2 |
Try to fix checkboxes in media manager in FF3
This patch fixes the position of the option checkboxes in the mediamanager
for Firefox 3. It might have broken them in other browsers.
Please test everybody.
darcs-hash:20081001195152-7ad00-31afd4b01294f0d83d90e5ecc337ede95f22c425.gz
-rw-r--r-- | lib/tpl/default/media.css | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/tpl/default/media.css b/lib/tpl/default/media.css index 81a439289..e1e05cd99 100644 --- a/lib/tpl/default/media.css +++ b/lib/tpl/default/media.css @@ -64,6 +64,8 @@ it's dirty, so any "real" fixes are welcome */ #media__opts input { float: left; + display: block; + margin-top: 4px; position: absolute; } *+html #media__opts input, @@ -74,7 +76,8 @@ it's dirty, so any "real" fixes are welcome */ #media__opts label { display: block; float: left; - margin-left: 30px; + margin-left: 20px; + margin-bottom: 4px; } *+html #media__opts label, * html #media__opts label { |