Hi,
I am using nitobi components and its input definition seems to override my textfield definition. I amn't able to get a higher specificity for the definition below.
Code:
/* css defined within nitobi */
.nitobi input, .nitobi textarea, .nitobi select, .nitobi ntb-input {
color:#333333;
font-family:Tahoma, Arial, Verdana;
font-size: 12px;
border:0px solid #000000;
padding:0px 2px 0px 4px;
width: 100px;
}
/* css defined by me*/
.basic, textfield .basic, .nitobi textfield .basic, .nitobi input .basic{
border-width: 1px;
border-style: solid;
border-color: #999999;
background-repeat: repeat-x;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #333333;
width: 200px;
height: 15px;
}
<s:textfield label="" name="" id = "" size="15" maxlength="15" cssClass="basic" cssStyle="basic"/>
Bookmarks