searchbox.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. .searchbox {
  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. }
  10. .searchbox .searchbox-text {
  11. font-size: 12px;
  12. border: 0;
  13. margin: 0;
  14. padding: 0;
  15. line-height: 20px;
  16. height: 20px;
  17. *margin-top: -1px;
  18. *height: 18px;
  19. *line-height: 18px;
  20. _height: 18px;
  21. _line-height: 18px;
  22. vertical-align: baseline;
  23. }
  24. .searchbox .searchbox-prompt {
  25. font-size: 12px;
  26. color: #ccc;
  27. }
  28. .searchbox-button {
  29. width: 18px;
  30. height: 20px;
  31. overflow: hidden;
  32. display: inline-block;
  33. vertical-align: top;
  34. cursor: pointer;
  35. opacity: 0.6;
  36. filter: alpha(opacity=60);
  37. }
  38. .searchbox-button-hover {
  39. opacity: 1.0;
  40. filter: alpha(opacity=100);
  41. }
  42. .searchbox a.l-btn-plain {
  43. height: 20px;
  44. border: 0;
  45. padding: 0 6px 0 0;
  46. vertical-align: top;
  47. -moz-border-radius: 0;
  48. -webkit-border-radius: 0;
  49. border-radius: 0;
  50. opacity: 0.6;
  51. filter: alpha(opacity=60);
  52. }
  53. .searchbox a.l-btn .l-btn-left {
  54. padding: 2px 0 2px 4px;
  55. }
  56. .searchbox a.l-btn-plain:hover {
  57. -moz-border-radius: 0;
  58. -webkit-border-radius: 0;
  59. border-radius: 0;
  60. border: 0;
  61. padding: 0 6px 0 0;
  62. opacity: 1.0;
  63. filter: alpha(opacity=100);
  64. }
  65. .searchbox a.m-btn-plain-active {
  66. -moz-border-radius: 0;
  67. -webkit-border-radius: 0;
  68. border-radius: 0;
  69. }
  70. .searchbox-button {
  71. background: url('images/searchbox_button.png') no-repeat center center;
  72. }
  73. .searchbox {
  74. border-color: #c3d9e0;
  75. background-color: #fff;
  76. }
  77. .searchbox a.l-btn-plain {
  78. background: #daeef5;
  79. }