searchbox.css 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. .searchbox-button {
  2. width: 18px;
  3. height: 20px;
  4. overflow: hidden;
  5. display: inline-block;
  6. vertical-align: top;
  7. cursor: pointer;
  8. opacity: 0.6;
  9. filter: alpha(opacity=60);
  10. }
  11. .searchbox-button-hover {
  12. opacity: 1.0;
  13. filter: alpha(opacity=100);
  14. }
  15. .searchbox .l-btn-plain {
  16. border: 0;
  17. padding: 0;
  18. vertical-align: top;
  19. opacity: 0.6;
  20. filter: alpha(opacity=60);
  21. -moz-border-radius: 0 0 0 0;
  22. -webkit-border-radius: 0 0 0 0;
  23. border-radius: 0 0 0 0;
  24. }
  25. .searchbox .l-btn-plain:hover {
  26. border: 0;
  27. padding: 0;
  28. opacity: 1.0;
  29. filter: alpha(opacity=100);
  30. -moz-border-radius: 0 0 0 0;
  31. -webkit-border-radius: 0 0 0 0;
  32. border-radius: 0 0 0 0;
  33. }
  34. .searchbox a.m-btn-plain-active {
  35. -moz-border-radius: 0 0 0 0;
  36. -webkit-border-radius: 0 0 0 0;
  37. border-radius: 0 0 0 0;
  38. }
  39. .searchbox .m-btn-active {
  40. border-width: 0 1px 0 0;
  41. -moz-border-radius: 0 0 0 0;
  42. -webkit-border-radius: 0 0 0 0;
  43. border-radius: 0 0 0 0;
  44. }
  45. .searchbox .textbox-button-right {
  46. border-width: 0 0 0 1px;
  47. }
  48. .searchbox .textbox-button-left {
  49. border-width: 0 1px 0 0;
  50. }
  51. .searchbox-button {
  52. background: url('images/searchbox_button.png') no-repeat center center;
  53. }
  54. .searchbox .l-btn-plain {
  55. background: #E0ECFF;
  56. }
  57. .searchbox .l-btn-plain-disabled,
  58. .searchbox .l-btn-plain-disabled:hover {
  59. opacity: 0.5;
  60. filter: alpha(opacity=50);
  61. }