Also good to mention that, thanks. Sometimes it's hard to limit the list to few tickets.P_I wrote: Tue Oct 22, 2024 6:54 pm I would also include https://tracker.phpbb.com/browse/PHPBB-17390 as a notable fix.
Correct, there are no CSS changes between 3.3.13 and 3.3.14-RC1.
I'd recommend either replying to the original ticket on the tracker or creating a follow up ticket that links to the previous ticket. However, in case you're not too familiar with JIRA it's also fine if you mention those issues here.LukeWCS wrote: Sat Oct 26, 2024 10:00 am Hello
A local test board with 3.3.13/8.3 upgraded to 3.3.14-rc1 without any problems.
I have a small objection regarding PHPBB-17359: Distinct disabled and not installed extensions in the list. Can I explain this here or would a dedicated topic in Area 51 be better? It is primarily about non-ideal text of the associated new language variable, and secondarily about the name of the language variable (current). It is also about an inconveniently named controller function (past).
doneMarc wrote: Sun Oct 27, 2024 7:23 am I'd recommend either replying to the original ticket on the tracker
Code: Select all
input.disabled {
color: #666666;
}
Code: Select all
/* Form select styles
---------------------------------------- */
select.select-box {
color: #444444;
border-color: #C7C3BF !important;
background-color: #EFEFEF; /* Old browsers */ /* FF3.6+ */
}
Code: Select all
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;
}
Code: Select all
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;
}
Code: Select all
<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}">
Code: Select all
<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}">
I love it!