JBoss Rich Faces SVN: r5495 - in trunk/sandbox/ui/pickList/src/main/config: resources and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-01-21 11:20:29 -0500 (Mon, 21 Jan 2008)
New Revision: 5495
Added:
trunk/sandbox/ui/pickList/src/main/config/resources/
trunk/sandbox/ui/pickList/src/main/config/resources/resource-config.xml
Log:
Added: trunk/sandbox/ui/pickList/src/main/config/resources/resource-config.xml
===================================================================
--- trunk/sandbox/ui/pickList/src/main/config/resources/resource-config.xml (rev 0)
+++ trunk/sandbox/ui/pickList/src/main/config/resources/resource-config.xml 2008-01-21 16:20:29 UTC (rev 5495)
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<resource-config>
+ <resource class="org.richfaces.renderkit.images.PickListRightArrowImage">
+ <name>org.richfaces.renderkit.images.PickListRightArrowImage</name>
+ </resource>
+ <resource class="org.richfaces.renderkit.images.PickListLeftArrowImage">
+ <name>org.richfaces.renderkit.images.PickListLeftArrowImage</name>
+ </resource>
+</resource-config>
16 years, 11 months
JBoss Rich Faces SVN: r5494 - in trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html: css and 1 other directory.
by richfaces-svn-commits@lists.jboss.org
Author: abelevich
Date: 2008-01-21 11:19:21 -0500 (Mon, 21 Jan 2008)
New Revision: 5494
Added:
trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/
trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/picklist.xcss
Log:
Added: trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/picklist.xcss
===================================================================
--- trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/picklist.xcss (rev 0)
+++ trunk/sandbox/ui/pickList/src/main/resources/org/richfaces/renderkit/html/css/picklist.xcss 2008-01-21 16:19:21 UTC (rev 5494)
@@ -0,0 +1,100 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<f:template xmlns:f='http:/jsf.exadel.com/template'
+ xmlns:u='http:/jsf.exadel.com/template/util'
+ xmlns="http://www.w3.org/1999/xhtml" >
+ <f:verbatim>
+ <![CDATA[
+
+ .rich-pick-list{
+ font-family : Arial;
+ font-size :11px;
+ width : 200px;
+ height : 150px;
+ border : 1px solid;
+ }
+
+ .rich-pick-button{
+ background : top left repeat-x;
+ cursor : pointer;
+ font-family : Arial;
+ font-size :11px;
+ border : 1px solid;
+ padding : 0px 0px 0px 0px;
+ margin : 3px;
+ }
+
+ .rich-pick-button-light{
+ background : top left repeat-x;
+ cursor : pointer;
+ font-family : Arial;
+ font-size :11px;
+ border : 1px solid;
+ padding : 0px 0px 0px 0px;
+ margin : 3px;
+ }
+
+ .rich-pick-button-press{
+ background : top left repeat-x;
+ cursor : pointer;
+ font-family : Arial;
+ font-size :11px;
+ border : 1px solid;
+ padding : 0px 0px 0px 0px;
+ margin : 3px;
+ }
+ ]]>
+ </f:verbatim>
+
+ <u:selector name=".rich-pick-list">
+ <u:style name="background" skin="tableBackgroundColor" />
+ <u:style name="border-color" skin="tableBorderColor" />
+ </u:selector>
+
+ <u:selector name=".rich-pick-button">
+ <u:style name="background-color" skin="trimColor" />
+ <u:style name="border-color" skin="tableBorderColor" />
+ </u:selector>
+
+ <u:selector name=".rich-pick-button-light">
+ <u:style name="background-color" skin="trimColor" />
+ <u:style name="border-color" skin="selectControlColor" />
+ </u:selector>
+
+ <u:selector name=".rich-pick-button-press">
+ <u:style name="background-color" skin="additionalBackgroundColor" />
+ <u:style name="border-color" skin="selectControlColor" />
+ </u:selector>
+
+
+ <u:selector name=".rich-pick-right-arrow">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.images.PickListRightArrowImage" />
+ </u:style>
+ </u:selector>
+
+ <u:selector name=".rich-pick-left-arrow">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.images.PickListLeftArrowImage" />
+ </u:style>
+ </u:selector>
+
+ <u:selector name=".rich-pick-button-light">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.images.PickListButtonLightGradient" />
+ </u:style>
+ </u:selector>
+
+ <u:selector name=".rich-pick-button">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.images.PickListButtonGradient" />
+ </u:style>
+ </u:selector>
+
+ <u:selector name=".rich-pick-button-press">
+ <u:style name="background-image">
+ <f:resource f:key="org.richfaces.renderkit.images.PickListButtonPressGradient" />
+ </u:style>
+ </u:selector>
+
+
+</f:template>
\ No newline at end of file
16 years, 11 months
JBoss Rich Faces SVN: r5492 - trunk/ui/dataTable/src/main/java/org/richfaces/component.
by richfaces-svn-commits@lists.jboss.org
Author: nbelaevski
Date: 2008-01-21 10:37:52 -0500 (Mon, 21 Jan 2008)
New Revision: 5492
Modified:
trunk/ui/dataTable/src/main/java/org/richfaces/component/UIDataGrid.java
Log:
http://jira.jboss.com/jira/browse/RF-1955
Modified: trunk/ui/dataTable/src/main/java/org/richfaces/component/UIDataGrid.java
===================================================================
--- trunk/ui/dataTable/src/main/java/org/richfaces/component/UIDataGrid.java 2008-01-21 15:10:10 UTC (rev 5491)
+++ trunk/ui/dataTable/src/main/java/org/richfaces/component/UIDataGrid.java 2008-01-21 15:37:52 UTC (rev 5492)
@@ -31,9 +31,9 @@
*/
public abstract class UIDataGrid extends SequenceDataAdaptor {
- public static final String COMPONENT_TYPE = "org.richfaces.DataGrig";
+ public static final String COMPONENT_TYPE = "org.richfaces.DataGrid";
- public static final String COMPONENT_FAMILY = "org.richfaces.DataGrig";
+ public static final String COMPONENT_FAMILY = "org.richfaces.DataGrid";
/**
* Number of columns in one table row.
16 years, 11 months
JBoss Rich Faces SVN: r5491 - branches/3.1.x/ui/inputnumber-slider/src/main/config/component and 7 other directories.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2008-01-21 10:10:10 -0500 (Mon, 21 Jan 2008)
New Revision: 5491
Modified:
branches/3.1.x/ui/calendar/src/main/config/component/calendar.xml
branches/3.1.x/ui/inputnumber-slider/src/main/config/component/inputNumberSlider.xml
branches/3.1.x/ui/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml
branches/3.1.x/ui/modal-panel/src/main/config/component/modalPanel.xml
branches/3.1.x/ui/panelbar/src/main/config/component/panelbar.xml
branches/3.1.x/ui/panelmenu/src/main/config/component/panelMenu.xml
branches/3.1.x/ui/tabPanel/src/main/config/component/tabPanel.xml
branches/3.1.x/ui/togglePanel/src/main/config/component/togglePanel.xml
trunk/ui/panelmenu/src/main/config/component/panelMenu.xml
Log:
http://jira.jboss.com/jira/browse/RF-1942
Modified: branches/3.1.x/ui/calendar/src/main/config/component/calendar.xml
===================================================================
--- branches/3.1.x/ui/calendar/src/main/config/component/calendar.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ branches/3.1.x/ui/calendar/src/main/config/component/calendar.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -538,6 +538,11 @@
<classname>int</classname>
</property>
+ <property>
+ <name>label</name>
+ <classname>java.lang.String</classname>
+ <description>A localized user presentable name for this component.</description>
+ </property>
</component>
&listeners;
Modified: branches/3.1.x/ui/inputnumber-slider/src/main/config/component/inputNumberSlider.xml
===================================================================
--- branches/3.1.x/ui/inputnumber-slider/src/main/config/component/inputNumberSlider.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ branches/3.1.x/ui/inputnumber-slider/src/main/config/component/inputNumberSlider.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -247,5 +247,10 @@
<name>valid</name>
<classname>boolean</classname>
</property>
+ <property>
+ <name>label</name>
+ <classname>java.lang.String</classname>
+ <description>A localized user presentable name for this component.</description>
+ </property>
</component>
</components>
Modified: branches/3.1.x/ui/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml
===================================================================
--- branches/3.1.x/ui/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ branches/3.1.x/ui/inputnumber-spinner/src/main/config/component/inputNumberSpinner.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -207,5 +207,10 @@
<name>valid</name>
<classname>boolean</classname>
</property>
+ <property>
+ <name>label</name>
+ <classname>java.lang.String</classname>
+ <description>A localized user presentable name for this component.</description>
+ </property>
</component>
</components>
Modified: branches/3.1.x/ui/modal-panel/src/main/config/component/modalPanel.xml
===================================================================
--- branches/3.1.x/ui/modal-panel/src/main/config/component/modalPanel.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ branches/3.1.x/ui/modal-panel/src/main/config/component/modalPanel.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -246,5 +246,10 @@
<classname>java.lang.String</classname>
<defaultvalue><![CDATA[""]]></defaultvalue>
</property>
+ <property>
+ <name>label</name>
+ <classname>java.lang.String</classname>
+ <description>A localized user presentable name for this component.</description>
+ </property>
</component>
</components>
Modified: branches/3.1.x/ui/panelbar/src/main/config/component/panelbar.xml
===================================================================
--- branches/3.1.x/ui/panelbar/src/main/config/component/panelbar.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ branches/3.1.x/ui/panelbar/src/main/config/component/panelbar.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -132,6 +132,11 @@
<name>valid</name>
<classname>java.lang.String</classname>
</property>
+ <property>
+ <name>label</name>
+ <classname>java.lang.String</classname>
+ <description>A localized user presentable name for this component.</description>
+ </property>
</component>
<component>
Modified: branches/3.1.x/ui/panelmenu/src/main/config/component/panelMenu.xml
===================================================================
--- branches/3.1.x/ui/panelmenu/src/main/config/component/panelMenu.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ branches/3.1.x/ui/panelmenu/src/main/config/component/panelMenu.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -350,6 +350,11 @@
<name>valid</name>
<description>valid</description>
</property>
+ <property>
+ <name>label</name>
+ <classname>java.lang.String</classname>
+ <description>A localized user presentable name for this component.</description>
+ </property>
</component>
Modified: branches/3.1.x/ui/tabPanel/src/main/config/component/tabPanel.xml
===================================================================
--- branches/3.1.x/ui/tabPanel/src/main/config/component/tabPanel.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ branches/3.1.x/ui/tabPanel/src/main/config/component/tabPanel.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -135,6 +135,11 @@
<classname>java.lang.Object</classname>
<description></description>
</property>
+ <property>
+ <name>label</name>
+ <classname>java.lang.String</classname>
+ <description>A localized user presentable name for this component.</description>
+ </property>
&html_attributes;
&html_events;
Modified: branches/3.1.x/ui/togglePanel/src/main/config/component/togglePanel.xml
===================================================================
--- branches/3.1.x/ui/togglePanel/src/main/config/component/togglePanel.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ branches/3.1.x/ui/togglePanel/src/main/config/component/togglePanel.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -99,6 +99,11 @@
<name>valid</name>
<classname>java.lang.String</classname>
</property>
+ <property>
+ <name>label</name>
+ <classname>java.lang.String</classname>
+ <description>A localized user presentable name for this component.</description>
+ </property>
<!--
Modified: trunk/ui/panelmenu/src/main/config/component/panelMenu.xml
===================================================================
--- trunk/ui/panelmenu/src/main/config/component/panelMenu.xml 2008-01-21 14:26:29 UTC (rev 5490)
+++ trunk/ui/panelmenu/src/main/config/component/panelMenu.xml 2008-01-21 15:10:10 UTC (rev 5491)
@@ -545,12 +545,6 @@
<name>valid</name>
<description>valid</description>
</property>
- <property>
- <name>label</name>
- <classname>java.lang.String</classname>
- <description>A localized user presentable name for this component.</description>
- </property>
-
</component>
<component>
16 years, 11 months
JBoss Rich Faces SVN: r5490 - trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts.
by richfaces-svn-commits@lists.jboss.org
Author: sergeyhalipov
Date: 2008-01-21 09:26:29 -0500 (Mon, 21 Jan 2008)
New Revision: 5490
Modified:
trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts/panelMenu.js
Log:
http://jira.jboss.com/jira/browse/RF-1948
Modified: trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts/panelMenu.js
===================================================================
--- trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts/panelMenu.js 2008-01-21 13:12:05 UTC (rev 5489)
+++ trunk/ui/panelmenu/src/main/resources/org/richfaces/renderkit/html/scripts/panelMenu.js 2008-01-21 14:26:29 UTC (rev 5490)
@@ -50,7 +50,7 @@
this.hoveredStyles = hoveredStyles;
this.hoveredClasses = hoveredClasses;
this.tdhider = $(ids.myId);
- this.tablehider = $("tablehide"+ids.myId);
+ this.tablehider = this.tdhider.firstChild;
this.haveDynamicIcon = haveDynamicIcon;
if (this.haveDynamicIcon==true)
this.iconswitcher = $("icon"+ids.myId);
@@ -74,13 +74,13 @@
this.selected = false;
}
this.clientId = ids.myId;
- this.obj = $(ids.myId);
- this.leftIcon = $('leftIcon' + ids.myId);
- this.rightIcon = $('rightIcon' + ids.myId);
- this.labelArea = $('icon' + ids.myId);
- this.content = document.getElementsByClassName("dr-pmenu-group-self-label", this.obj)[0];
+ this.mainRow = Element.extend(this.tablehider.firstChild.firstChild);
+ this.labelArea = this.mainRow.firstChild.nextSibling;
+ this.leftIcon = this.mainRow.firstChild.firstChild;
+ this.rightIcon = this.labelArea.nextSibling.firstChild;
+ this.content = document.getElementsByClassName("dr-pmenu-group-self-label", this.tdhider)[0];
this.iconAlign = iconAlign;
- this.mainRow = $("row_" + ids.myId);
+
/*
if (level == 0){
this.tdhider.style.display = "";
@@ -158,7 +158,7 @@
},
hide: function(){
- this.obj.style.display = 'none';
+ this.tdhider.style.display = 'none';
// if(this.inputState){
// this.inputState.value="closed";
// }
@@ -196,11 +196,11 @@
// this.inputState.value="opened";
this.tdhider.style.display="";
this.tablehider.style.display="";
- this.obj.style.display = "";
+ this.tdhider.style.display = "";
},
preTrigger: function(e){
- //this.inputAction.setAttribute('value', this.obj.id);
+ //this.inputAction.setAttribute('value', this.tdhider.id);
this.inputAction.setAttribute('value', this.clientId);
},
@@ -387,7 +387,7 @@
else
Event.observe(this.tablehider, "click", this.itemClicked.bindAsEventListener(this), false);
- Event.observe(this.obj, "mouseover", this.hoverItem.bindAsEventListener(this), false);
+ Event.observe(this.tdhider, "mouseover", this.hoverItem.bindAsEventListener(this), false);
Event.observe(this.tablehider, "mouseover", this.addHoverStyles.bindAsEventListener(this), false);
Event.observe(this.tablehider, "mouseout", this.removeHoverStyles.bindAsEventListener(this), false);
16 years, 11 months
JBoss Rich Faces SVN: r5488 - management/design/comboBox/markup.
by richfaces-svn-commits@lists.jboss.org
Author: admitriev
Date: 2008-01-21 07:43:10 -0500 (Mon, 21 Jan 2008)
New Revision: 5488
Modified:
management/design/comboBox/markup/ComboBox_Strict.html
Log:
Modified: management/design/comboBox/markup/ComboBox_Strict.html
===================================================================
--- management/design/comboBox/markup/ComboBox_Strict.html 2008-01-21 12:42:02 UTC (rev 5487)
+++ management/design/comboBox/markup/ComboBox_Strict.html 2008-01-21 12:43:10 UTC (rev 5488)
@@ -9,7 +9,7 @@
.cb_font{ font-size : 11px/*generalSizeFont*/; font-family : arial/*generalFamilyFont*/; color : #000000/*generalTextColor*/}
.cb_shell{ position : relative;}
.cb_field{ width : 240px; position : absolute; top : 0px; left : 0; padding-left :3px; margin : 0px; border : 1px solid #c0c0c0; background-image: url(SpinnerFieldGradient.gif); background-position:left top;
-background-repeat:repeat-x; border-color: #BED6F8 rgb(255, 255, 255) #BED6F8 rgb(190, 214, 248); } /*panelBorderColor*/
+background-repeat:repeat-x; border-color: #BED6F8 rgb(255, 255, 255) #BED6F8 rgb(190, 214, 248); background-color : #FFFFFF; /*controlBackgroundColor*/} /*panelBorderColor*/
.cb_strut{ width : 240px; position : relative; visibility : hidden; padding-left :3px; margin : 0px; border : 1px solid #c0c0c0; margin : 0px; border : 1px solid #c0c0c0;}
.cb_button{ position : absolute; top : 0px; right : 0; width : 17px; padding-left : 0px; padding-right : 0px; margin : 0px; border : 1px solid #c0c0c0; border-color: #BED6F8 rgb(190, 214, 248) #BED6F8 rgb(190, 214, 248); } /*panelBorderColor*/
.cb_button_bg{ background : url(images/bg_btn.png) top repeat-x #C7D7EC;} /*gradient - from generalBackgroundColor to tabBackgroundColor, background-color - tabBackgroundColor*/
@@ -35,7 +35,7 @@
<div class="cb_width_list cb_font cb_shell">
<div class="cb_list_cord"></div>
- <div class="cb_width_field cb_font cb_shell" style="background : red">
+ <div class="cb_width_field cb_font cb_shell">
<input type="Text" value="Input text or select option" class="cb_width_field cb_font cb_field">
<input readonly="" type="Text" value="" class="cb_button cb_font cb_button_bg">
<input readonly="" type="Text" value="" class="cb_button cb_font cb_button_arrow" onmouseover="this.className='cb_button cb_font cb_button_arrow cb_button_select'" onmouseout="this.className='cb_button cb_font cb_button_arrow'">
16 years, 11 months
JBoss Rich Faces SVN: r5487 - trunk/ui/dropdown-menu/src/main/templates/org/richfaces.
by richfaces-svn-commits@lists.jboss.org
Author: akushunin
Date: 2008-01-21 07:42:02 -0500 (Mon, 21 Jan 2008)
New Revision: 5487
Modified:
trunk/ui/dropdown-menu/src/main/templates/org/richfaces/htmlDropDownMenu.jspx
Log:
http://jira.jboss.com/jira/browse/RF-1952
Modified: trunk/ui/dropdown-menu/src/main/templates/org/richfaces/htmlDropDownMenu.jspx
===================================================================
--- trunk/ui/dropdown-menu/src/main/templates/org/richfaces/htmlDropDownMenu.jspx 2008-01-21 12:01:30 UTC (rev 5486)
+++ trunk/ui/dropdown-menu/src/main/templates/org/richfaces/htmlDropDownMenu.jspx 2008-01-21 12:42:02 UTC (rev 5487)
@@ -17,7 +17,7 @@
if (!menu.isDisabled()) {]]>
</jsp:scriptlet>
- <div id="#{clientId}" style=""
+ <div id="#{clientId}" style="#{component.attributes['style']}"
class="#{component.attributes['styleClass']} dr-menu-label dr-menu-label-unselect rich-ddmenu-label rich-ddmenu-label-unselect"
onmouseover="#{component.attributes['onmouseover']}"
onmouseout="#{component.attributes['onmouseout']}"
@@ -25,7 +25,7 @@
<jsp:scriptlet>
<![CDATA[ } else { ]]>
</jsp:scriptlet>
- <div id="#{clientId}" style=""
+ <div id="#{clientId}" style="#{component.attributes['style']}"
class="dr-menu-label dr-menu-label-unselect dr-ddmenu-label-disabled rich-ddmenu-label-disabled rich-ddmenu-label-unselect #{component.attributes['styleClass']}"
onmouseover="#{component.attributes['onmouseover']}"
onmouseout="#{component.attributes['onmouseout']}"
16 years, 11 months
JBoss Rich Faces SVN: r5486 - management/design/comboBox/markup.
by richfaces-svn-commits@lists.jboss.org
Author: admitriev
Date: 2008-01-21 07:01:30 -0500 (Mon, 21 Jan 2008)
New Revision: 5486
Modified:
management/design/comboBox/markup/ComboBox_Strict.html
Log:
Modified: management/design/comboBox/markup/ComboBox_Strict.html
===================================================================
--- management/design/comboBox/markup/ComboBox_Strict.html 2008-01-21 11:27:01 UTC (rev 5485)
+++ management/design/comboBox/markup/ComboBox_Strict.html 2008-01-21 12:01:30 UTC (rev 5486)
@@ -8,22 +8,22 @@
.cb_width_list{ width : 248px;}
.cb_font{ font-size : 11px/*generalSizeFont*/; font-family : arial/*generalFamilyFont*/; color : #000000/*generalTextColor*/}
.cb_shell{ position : relative;}
-.cb_field{ width : 225px;position : absolute; top : 0px; left : 0; padding-right :20px; padding-left :3px; margin : 0px; border : 1px solid #c0c0c0; background-image: url(SpinnerFieldGradient.gif); background-position:left top;
+.cb_field{ width : 240px; position : absolute; top : 0px; left : 0; padding-left :3px; margin : 0px; border : 1px solid #c0c0c0; background-image: url(SpinnerFieldGradient.gif); background-position:left top;
background-repeat:repeat-x; border-color: #BED6F8 rgb(255, 255, 255) #BED6F8 rgb(190, 214, 248); } /*panelBorderColor*/
-.cb_strut{ position : relative; visibility : hidden; padding-right :20px; padding-top :0px; padding-bottom :0px; padding-left :3px; margin : 0px; border : 1px solid #c0c0c0; margin : 0px; border : 1px solid #c0c0c0;}
-.cb_button{ position : absolute; top : 0px; right : 0; width : 17px;padding-left : 0px; padding-right : 0px; margin : 0px; border : 1px solid #c0c0c0; border-color: #BED6F8 rgb(190, 214, 248) #BED6F8 rgb(190, 214, 248); } /*panelBorderColor*/
+.cb_strut{ width : 240px; position : relative; visibility : hidden; padding-left :3px; margin : 0px; border : 1px solid #c0c0c0; margin : 0px; border : 1px solid #c0c0c0;}
+.cb_button{ position : absolute; top : 0px; right : 0; width : 17px; padding-left : 0px; padding-right : 0px; margin : 0px; border : 1px solid #c0c0c0; border-color: #BED6F8 rgb(190, 214, 248) #BED6F8 rgb(190, 214, 248); } /*panelBorderColor*/
.cb_button_bg{ background : url(images/bg_btn.png) top repeat-x #C7D7EC;} /*gradient - from generalBackgroundColor to tabBackgroundColor, background-color - tabBackgroundColor*/
.cb_button_bg_press{ background : url(images/bg_press.png) repeat-x bottom #C7D7EC} /*gradient - from tabBackgroundColor to generalBackgroundColor, background-color - tabBackgroundColor*/
.cb_button_arrow{ background : url(images/down.gif) center no-repeat; cursor : pointer;}
.cb_button_select{ border : 1px solid #E79A00;} /*selectControlColor*/
.cb_list_cord{ position : relative; font-size : 0px;d!isplay : none}/*DDL is hidden!!!!!*/
-.cb_list_position{ position : absolute; top:0px; left:0px;}
+.cb_list_position{ position : absolute; top:1px; left:0px;}
.cb_list_decoration{border : 1px solid #BED6F8 /*panelBorderColor*/; padding : 0px; background : #FFFFFF; /*tableBackgroundColor*/}
.cb_list_scroll{ overflow : auto; overflow-x : hidden; height : 100px;}
.cb_option{ padding : 2px; white-space : nowrap;}
.cb_select{ padding : 1px; width : 100%; background-color: #DFE8F6; border : 1px dotted #a3bae9;/*generalTextColor*/}
-.cb_shadow{ top:-5; left:0; position : absolute;}
+.cb_shadow{ top:0; left:0; position : absolute;}
.cb_shadow_tl{ background : url(images/bg_shadow.png) repeat-x top left;}
.cb_shadow_tr{ background : url(images/bg_shadow.png) repeat-x top right;}
.cb_shadow_bl{ background : url(images/bg_shadow.png) repeat-x bottom left;}
@@ -34,11 +34,12 @@
<body style="margin : 30px">
<div class="cb_width_list cb_font cb_shell">
- <div class="cb_width_field cb_font cb_shell">
+ <div class="cb_list_cord"></div>
+ <div class="cb_width_field cb_font cb_shell" style="background : red">
<input type="Text" value="Input text or select option" class="cb_width_field cb_font cb_field">
<input readonly="" type="Text" value="" class="cb_button cb_font cb_button_bg">
<input readonly="" type="Text" value="" class="cb_button cb_font cb_button_arrow" onmouseover="this.className='cb_button cb_font cb_button_arrow cb_button_select'" onmouseout="this.className='cb_button cb_font cb_button_arrow'">
- <input type="Text"class="cb_width_field cb_strut cb_font">
+ <div class="cb_width_field cb_strut cb_font">Strut</div>
</div><div class="cb_list_cord">
<iframe class="cb_width_list cb_list_scroll cb_list_position" frameborder="0"></iframe>
<div class="cb_shadow">
16 years, 11 months