| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .fwcombox{
- white-space:nowrap;
- margin:0;
- padding:0;
- border: #d2d6df 1px solid;
- background-color:white;
- width:100%;
- display:block
- }
- .fwcombox-text{
- border:0px;
- /*
- line-height:18px;
- height:18px;
- *height:16px;
- *line-height:16px;
- _height:16px;
- _line-height:16px;
- */
- line-height:24px;
- height:24px;
- *height:22px;
- *line-height:22px;
- _height:22px;
- _line-height:22px;
- background-color:white;
- width: auto;
- }
- .fwcombox-arrow{
- background:#E0ECF9 url('images/combo_arrow.png') no-repeat 1px 2px;
- /*width:18px;*/
- height:24px;
- width:18px;
- overflow:hidden;
- vertical-align:top;
- display:inline-block;
- cursor:pointer;
- opacity:0.6;
- filter:alpha(opacity=60);
- margin:0;
- }
- .fwcombox-arrow-hover{
- opacity:1.0;
- filter:alpha(opacity=100);
- }
- .fwcombox-panel-body{
- background:#fff;
- overflow:auto;
- border: #B5B8C8 1px solid;
- border-top-width:1px;
- }
- .fwcombox-panel{
- overflow:hidden;
- position:absolute;
- }
- .fwcombox-item{
- padding:2px;
- font-size:14px;
- padding:3px;
- padding-right:0px;
- cursor:pointer;
- line-height: 20px;
- }
- .fwcombox-item-hover{
- background:#3399FF;
- color:white;
- }
- .fwcombox-item-selected{
- background:#FBEC88;
- }
|