diff options
| author | Dominik Dröscher <dhn2@users.sourceforge.net> | 2007-03-09 19:01:40 +0000 |
|---|---|---|
| committer | Dominik Dröscher <dhn2@users.sourceforge.net> | 2007-03-09 19:01:40 +0000 |
| commit | d165af785d01640a82d6d8076fbb979b00a1ec38 (patch) | |
| tree | 640271d44c3ae33be14df19997cf5aef0dbb68e0 /phpBB/styles/subSilver | |
| parent | e43201191317b788c2df84302e77342b57c944ae (diff) | |
| download | forums-d165af785d01640a82d6d8076fbb979b00a1ec38.tar forums-d165af785d01640a82d6d8076fbb979b00a1ec38.tar.gz forums-d165af785d01640a82d6d8076fbb979b00a1ec38.tar.bz2 forums-d165af785d01640a82d6d8076fbb979b00a1ec38.tar.xz forums-d165af785d01640a82d6d8076fbb979b00a1ec38.zip | |
#8576
Introducing percentage based font sizing for the font-site BBCode
git-svn-id: file:///svn/phpbb/trunk@7157 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/subSilver')
| -rw-r--r-- | phpBB/styles/subSilver/template/bbcode.html | 2 | ||||
| -rw-r--r-- | phpBB/styles/subSilver/template/posting_buttons.html | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/styles/subSilver/template/bbcode.html b/phpBB/styles/subSilver/template/bbcode.html index 1f0e8a72d2..fe7ea4fa5d 100644 --- a/phpBB/styles/subSilver/template/bbcode.html +++ b/phpBB/styles/subSilver/template/bbcode.html @@ -48,7 +48,7 @@ <!-- BEGIN color --><span style="color: {COLOR}">{TEXT}</span><!-- END color --> -<!-- BEGIN size --><span style="font-size: {SIZE}px; line-height: normal">{TEXT}</span><!-- END size --> +<!-- BEGIN size --><span style="font-size: {SIZE}em; line-height: normal">{TEXT}</span><!-- END size --> <!-- BEGIN img --><img src="{URL}" alt="{L_IMAGE}" /><!-- END img --> diff --git a/phpBB/styles/subSilver/template/posting_buttons.html b/phpBB/styles/subSilver/template/posting_buttons.html index 28124a9ee6..110feafe80 100644 --- a/phpBB/styles/subSilver/template/posting_buttons.html +++ b/phpBB/styles/subSilver/template/posting_buttons.html @@ -69,11 +69,11 @@ <input type="button" class="btnbbcode" accesskey="d" name="addbbcode18" value="Flash" onclick="bbstyle(18)" onmouseover="helpline('d')" onmouseout="helpline('tip')" /> <!-- ENDIF --> <span class="genmed nowrap">{L_FONT_SIZE}: <select class="gensmall" name="addbbcode20" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" onmouseover="helpline('f')" onmouseout="helpline('tip')"> - <option value="7">{L_FONT_TINY}</option> - <option value="9">{L_FONT_SMALL}</option> - <option value="12" selected="selected">{L_FONT_NORMAL}</option> - <option value="18">{L_FONT_LARGE}</option> - <option value="24">{L_FONT_HUGE}</option> + <option value="50">{L_FONT_TINY}</option> + <option value="80">{L_FONT_SMALL}</option> + <option value="100" selected="selected">{L_FONT_NORMAL}</option> + <option value="150">{L_FONT_LARGE}</option> + <option value="200">{L_FONT_HUGE}</option> </select></span> </td> </tr> |
