a5e1efdbf47c25de77b45c2afbac4510d5b87ee9.svn-base 1008 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .combo {
  2. display: inline-block;
  3. white-space: nowrap;
  4. margin: 0;
  5. padding: 0;
  6. border-width: 1px;
  7. border-style: solid;
  8. overflow: hidden;
  9. vertical-align: middle;
  10. }
  11. .combo .combo-text {
  12. font-size: 12px;
  13. border: 0px;
  14. line-height: 20px;
  15. height: 20px;
  16. margin: 0;
  17. padding: 0px 2px;
  18. *margin-top: -1px;
  19. *height: 18px;
  20. *line-height: 18px;
  21. _height: 18px;
  22. _line-height: 18px;
  23. vertical-align: baseline;
  24. }
  25. .combo-arrow {
  26. width: 18px;
  27. height: 20px;
  28. overflow: hidden;
  29. display: inline-block;
  30. vertical-align: top;
  31. cursor: pointer;
  32. opacity: 0.6;
  33. filter: alpha(opacity=60);
  34. }
  35. .combo-arrow-hover {
  36. opacity: 1.0;
  37. filter: alpha(opacity=100);
  38. }
  39. .combo-panel {
  40. overflow: auto;
  41. }
  42. .combo-arrow {
  43. background: url('images/combo_arrow.png') no-repeat center center;
  44. }
  45. .combo,
  46. .combo-panel {
  47. background-color: #fff;
  48. }
  49. .combo {
  50. border-color: #ddd;
  51. background-color: #fff;
  52. }
  53. .combo-arrow {
  54. background-color: #ffffff;
  55. }
  56. .combo-arrow-hover {
  57. background-color: #E6E6E6;
  58. }