aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver/template/posting_buttons.html
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-05-02 16:19:35 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-05-02 16:19:35 +0000
commit15aee8920041aeaf3c9d8893341bc5470ec63ff8 (patch)
tree4494c33edf3c0961a93969688a9ef3e347ce1365 /phpBB/styles/prosilver/template/posting_buttons.html
parentf4b6f87641e60e8a2d746c8ac2e7b96bccf6d25d (diff)
downloadforums-15aee8920041aeaf3c9d8893341bc5470ec63ff8.tar
forums-15aee8920041aeaf3c9d8893341bc5470ec63ff8.tar.gz
forums-15aee8920041aeaf3c9d8893341bc5470ec63ff8.tar.bz2
forums-15aee8920041aeaf3c9d8893341bc5470ec63ff8.tar.xz
forums-15aee8920041aeaf3c9d8893341bc5470ec63ff8.zip
fixes for search button in header - #10389, #10225, #9548
added missing colour swatch to prosilver - #8657 language changes - #10387, #10375, #10373, #10353, #10279 line-height for font size (still not ideal) - #10317 Search load setting checked in sessions.php along with limit_load and also reset if not possible to determine load - #10383 Fix editing issues - #9660 git-svn-id: file:///svn/phpbb/trunk@7451 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver/template/posting_buttons.html')
-rw-r--r--phpBB/styles/prosilver/template/posting_buttons.html31
1 files changed, 30 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/posting_buttons.html b/phpBB/styles/prosilver/template/posting_buttons.html
index 35356f2e84..6da383def5 100644
--- a/phpBB/styles/prosilver/template/posting_buttons.html
+++ b/phpBB/styles/prosilver/template/posting_buttons.html
@@ -1,3 +1,4 @@
+
<script type="text/javascript">
<!--
var form_name = 'postform';
@@ -58,6 +59,33 @@
<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
<!-- IF S_BBCODE_ALLOWED -->
+<div id="colour_palette" style="display: none;">
+ <dl style="clear: left;">
+ <dt><label>{L_FONT_COLOR}:</label></dt>
+ <dd><script type="text/javascript">
+ <!--
+ function change_palette()
+ {
+ dE('colour_palette');
+ e = document.getElementById('colour_palette');
+
+ if (e.style.display == 'block')
+ {
+ document.getElementById('bbpalette').value = '{LA_FONT_COLOR_HIDE}';
+ }
+ else
+ {
+ document.getElementById('bbpalette').value = '{LA_FONT_COLOR}';
+ }
+ }
+
+ colorPalette('h', 15, 5);
+ //-->
+ </script>
+ </dd>
+ </dl>
+</div>
+
<div id="format-buttons">
<input type="button" class="button2" accesskey="b" name="addbbcode0" value=" B " style="font-weight:bold; width: 30px" onclick="bbstyle(0)" title="{L_BBCODE_B_HELP}" />
<input type="button" class="button2" accesskey="i" name="addbbcode2" value=" i " style="font-style:italic; width: 30px" onclick="bbstyle(2)" title="{L_BBCODE_I_HELP}" />
@@ -85,8 +113,9 @@
<option value="150">{L_FONT_LARGE}</option>
<option value="200">{L_FONT_HUGE}</option>
</select>
+ <input type="button" class="button2" name="bbpalette" id="bbpalette" value="{L_FONT_COLOR}" onclick="change_palette();" title="{L_BBCODE_S_HELP}" />
<!-- BEGIN custom_tags -->
<input type="button" class="button2" name="addbbcode{custom_tags.BBCODE_ID}" value="{custom_tags.BBCODE_TAG}" onclick="bbstyle({custom_tags.BBCODE_ID})" title="{custom_tags.BBCODE_HELPLINE}" />
<!-- END custom_tags -->
</div>
-<!-- ENDIF --> \ No newline at end of file
+<!-- ENDIF -->