fwcombox.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .fwcombox{
  2. white-space:nowrap;
  3. margin:0;
  4. padding:0;
  5. border: #d2d6df 1px solid;
  6. background-color:white;
  7. width:100%;
  8. display:block
  9. }
  10. .fwcombox-text{
  11. border:0px;
  12. /*
  13. line-height:18px;
  14. height:18px;
  15. *height:16px;
  16. *line-height:16px;
  17. _height:16px;
  18. _line-height:16px;
  19. */
  20. line-height:24px;
  21. height:24px;
  22. *height:22px;
  23. *line-height:22px;
  24. _height:22px;
  25. _line-height:22px;
  26. background-color:white;
  27. width: auto;
  28. }
  29. .fwcombox-arrow{
  30. background:#E0ECF9 url('images/combo_arrow.png') no-repeat 1px 2px;
  31. /*width:18px;*/
  32. height:24px;
  33. width:18px;
  34. overflow:hidden;
  35. vertical-align:top;
  36. display:inline-block;
  37. cursor:pointer;
  38. opacity:0.6;
  39. filter:alpha(opacity=60);
  40. margin:0;
  41. }
  42. .fwcombox-arrow-hover{
  43. opacity:1.0;
  44. filter:alpha(opacity=100);
  45. }
  46. .fwcombox-panel-body{
  47. background:#fff;
  48. overflow:auto;
  49. border: #B5B8C8 1px solid;
  50. border-top-width:1px;
  51. }
  52. .fwcombox-panel{
  53. overflow:hidden;
  54. position:absolute;
  55. }
  56. .fwcombox-item{
  57. padding:2px;
  58. font-size:14px;
  59. padding:3px;
  60. padding-right:0px;
  61. cursor:pointer;
  62. line-height: 20px;
  63. }
  64. .fwcombox-item-hover{
  65. background:#3399FF;
  66. color:white;
  67. }
  68. .fwcombox-item-selected{
  69. background:#FBEC88;
  70. }