diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-14 17:22:05 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-05-14 17:22:05 +0000 |
commit | 1d94d1782c76f5c563fc0a6f6cdcb748044a2586 (patch) | |
tree | 07c010b21133c62a4abc72bc9b7d86c1c4882736 /phpBB/adm/style | |
parent | 20e008767a09f93aeb267a478df2f8cc92e24047 (diff) | |
download | forums-1d94d1782c76f5c563fc0a6f6cdcb748044a2586.tar forums-1d94d1782c76f5c563fc0a6f6cdcb748044a2586.tar.gz forums-1d94d1782c76f5c563fc0a6f6cdcb748044a2586.tar.bz2 forums-1d94d1782c76f5c563fc0a6f6cdcb748044a2586.tar.xz forums-1d94d1782c76f5c563fc0a6f6cdcb748044a2586.zip |
ok, a different approach due to IE... also tried to fix legend display for IE7.
- this is not tested with IE6, Opera, etc - if you notice problems... ;)
git-svn-id: file:///svn/phpbb/trunk@7573 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_users_signature.html | 20 | ||||
-rw-r--r-- | phpBB/adm/style/admin.css | 10 |
2 files changed, 16 insertions, 14 deletions
diff --git a/phpBB/adm/style/acp_users_signature.html b/phpBB/adm/style/acp_users_signature.html index b01f03cf9f..b45e61295e 100644 --- a/phpBB/adm/style/acp_users_signature.html +++ b/phpBB/adm/style/acp_users_signature.html @@ -84,15 +84,14 @@ </div> <p><input type="text" class="text full" style="border: 0; background: none;" name="helpbox" value="{L_STYLES_TIP}" /></p> - <div style="text-align: left;"> - <div style="width: 10%; float: right; margin-right: 1%;"><script type="text/javascript"><!-- - colorPalette('v', 17, 5); - //--></script> - </div> - <textarea name="signature" rows="10" cols="60" style="width: 86%;" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{SIGNATURE}</textarea> - </div> - <div> + <dl> + <dt style="width: 90px;"><script type="text/javascript"><!-- + colorPalette('v', 12, 10); + //--></script> + </dt> + <dd style="margin-left: 90px;"><textarea name="signature" rows="10" cols="60" style="width: 95%;" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);">{SIGNATURE}</textarea></dd> + <dd style="margin-left: 90px; margin-top: 5px;"> <!-- IF S_BBCODE_ALLOWED --> <label><input type="checkbox" class="radio" name="disable_bbcode"{S_BBCODE_CHECKED} /> {L_DISABLE_BBCODE}</label> <!-- ENDIF --> @@ -102,8 +101,9 @@ <!-- IF S_LINKS_ALLOWED --> <label><input type="checkbox" class="radio" name="disable_magic_url"{S_MAGIC_URL_CHECKED} /> {L_DISABLE_MAGIC_URL}</label> <!-- ENDIF --> - <br /><br /><strong>{L_OPTIONS}: </strong>{BBCODE_STATUS} :: {IMG_STATUS} :: {FLASH_STATUS} :: {URL_STATUS} :: {SMILIES_STATUS} - </div> + </dd> + <dd style="margin-left: 90px; margin-top: 10px;"><strong>{L_OPTIONS}: </strong>{BBCODE_STATUS} :: {IMG_STATUS} :: {FLASH_STATUS} :: {URL_STATUS} :: {SMILIES_STATUS}</dd> + </dl> </fieldset> <fieldset class="submit-buttons"> diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index ba258e9bb1..eea150ae6b 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -633,12 +633,13 @@ fieldset p { legend { padding: 1px 0; font-family: Tahoma,arial,Verdana,Sans-serif; - font-size: 0.85em; + font-size: .9em; font-weight: bold; color: #115098; + margin-top: -.4em; position: relative; text-transform: none; - line-height: 1.00em; + line-height: 1.2em; top: 0em; vertical-align: middle; } @@ -648,8 +649,9 @@ legend { top: -1.2em; } /* end */ * html legend { - margin-bottom: -10px; - margin-left: -7px; + margin: 0 0 -10px -7px; + line-height: 1em; + font-size: .85em; } /* Holly hack, .rtl comes after html */ |