Quantcast
Channel: phpBB.com
Viewing all articles
Browse latest Browse all 1705

phpBB Discussion • Re: [Discuss] phpBB 3.3.14-RC1 available for testing

$
0
0
The design of the select box in the bbcodes does not match the other buttons.
new-bbcode-select-box.png
My suggestion

added to color.css
after

Code:

input.disabled {color: #666666;}
add

Code:

/* Form select styles---------------------------------------- */select.select-box {color: #444444;border-color: #C7C3BF !important;background-color: #EFEFEF; /* Old browsers */ /* FF3.6+ */}
added to form.css
after

Code:

select {font-family: Verdana, Helvetica, Arial, sans-serif;font-weight: normal;cursor: pointer;vertical-align: middle;border: 1px solid transparent;padding: 1px;font-size: 1em;}
add

Code:

select.select-box {border: 1px solid transparent;border-radius: 4px;height: 24px;padding: 3px;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
change styles/prosilver/template/posting_buttons.html
from

Code:

<select name="addbbcode20" class="bbcode-size" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" title="{L_BBCODE_F_HELP}">
to

Code:

<select name="addbbcode20" class="bbcode-size select-box" onchange="bbfontstyle('[size=' + this.form.addbbcode20.options[this.form.addbbcode20.selectedIndex].value + ']', '[/size]');this.form.addbbcode20.selectedIndex = 2;" title="{L_BBCODE_F_HELP}">
Fits better
bbcode-select-box.png

Statistics: Posted by wintstar — Sun Nov 03, 2024 8:32 am



Viewing all articles
Browse latest Browse all 1705

Trending Articles