Select: font size in rich:select is not corrent
-----------------------------------------------
Key: RF-10744
URL:
https://issues.jboss.org/browse/RF-10744
Project: RichFaces
Issue Type: Bug
Security Level: Public (Everyone can see)
Components: component-input
Affects Versions: 4.0.0.CR1
Environment: Developer Demo, Chrome 10, Ubuntu
Reporter: Anton Belevich
Assignee: Konstantin Mishin
Priority: Critical
Fix For: 4.0.0.Final
see developer demo for rich-select
define style attribute for rich:select style="font-size: 2em;"
Result: the font size in input is 2px
may because in select.ecss on line 12:
.rf-sel-cntr {
...
font-size: 1px;
...
}
<in:select id="select" openOnEdit="true"
enableManualInput="true" defaultLabel="Select Value ..."
value="#{inputBean.value}" style="font-size:
2em;" styleClass="my-select-class"
title="Title">
<f:selectItem itemLabel="Label#1"
itemValue="Value#1"/>
<f:selectItem itemLabel="Label#2"
itemValue="Value#2"/>
<f:selectItem itemLabel="Label#3"
itemValue="Value#3"/>
<f:selectItem itemLabel="Label#4"
itemValue="Value#4"/>
<f:selectItem itemLabel="Label#5"
itemValue="Value#5"/>
<f:selectItem itemLabel="Label#6"
itemValue="Value#6"/>
<f:selectItem itemLabel="Label#7"
itemValue="Value#7"/>
<f:selectItem itemLabel="Label#8"
itemValue="Value#8"/>
<f:selectItem itemLabel="Label#9"
itemValue="Value#9"/>
<f:selectItem itemLabel="Label#10"
itemValue="Value#10"/>
<f:selectItem itemLabel="Label#11"
itemValue="Value#11"/>
<f:selectItem itemLabel="Label#12"
itemValue="Value#12"/>
<f:selectItem itemLabel="Label#13"
itemValue="Value#13"/>
<f:selectItem itemLabel="Label#14"
itemValue="Value#14"/>
<f:ajax event="change" execute="@form"
render="out"/>
</in:select>
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira