linkbutton.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. a.l-btn {
  2. background-position: right 0;
  3. font-size: 12px;
  4. text-decoration: none;
  5. display: inline-block;
  6. zoom: 1;
  7. height: 24px;
  8. padding-right: 18px;
  9. cursor: pointer;
  10. outline: none;
  11. }
  12. a.l-btn-plain {
  13. padding-right: 5px;
  14. border: 0;
  15. padding: 1px 6px 1px 1px;
  16. }
  17. a.l-btn-disabled {
  18. color: #ccc;
  19. opacity: 0.5;
  20. filter: alpha(opacity=50);
  21. cursor: default;
  22. }
  23. a.l-btn span.l-btn-left {
  24. display: inline-block;
  25. background-position: 0 -48px;
  26. padding: 4px 0px 4px 18px;
  27. line-height: 16px;
  28. height: 16px;
  29. }
  30. a.l-btn-plain span.l-btn-left {
  31. padding-left: 5px;
  32. }
  33. a.l-btn span span.l-btn-text {
  34. display: inline-block;
  35. vertical-align: baseline;
  36. width: auto;
  37. height: 16px;
  38. line-height: 16px;
  39. padding: 0;
  40. margin: 0;
  41. }
  42. a.l-btn span span.l-btn-icon-left {
  43. padding: 0 0 0 20px;
  44. background-position: left center;
  45. }
  46. a.l-btn span span.l-btn-icon-right {
  47. padding: 0 20px 0 0;
  48. background-position: right center;
  49. }
  50. a.l-btn span span span.l-btn-empty {
  51. display: inline-block;
  52. margin: 0;
  53. padding: 0;
  54. width: 16px;
  55. }
  56. a:hover.l-btn {
  57. background-position: right -24px;
  58. outline: none;
  59. text-decoration: none;
  60. }
  61. a:hover.l-btn span.l-btn-left {
  62. background-position: 0 bottom;
  63. }
  64. a:hover.l-btn-plain {
  65. padding: 0 5px 0 0;
  66. }
  67. a:hover.l-btn-disabled {
  68. background-position: right 0;
  69. }
  70. a:hover.l-btn-disabled span.l-btn-left {
  71. background-position: 0 -48px;
  72. }
  73. a.l-btn .l-btn-focus {
  74. outline: #0000FF dotted thin;
  75. }
  76. a.l-btn {
  77. color: #404040;
  78. background-image: url('images/linkbutton_bg.png');
  79. background-repeat: no-repeat;
  80. background: #1a7bc9;
  81. background-repeat: repeat-x;
  82. border: 1px solid #1a7bc9;
  83. background: -webkit-linear-gradient(top,#1a7bc9 0,#1a7bc9 100%);
  84. background: -moz-linear-gradient(top,#1a7bc9 0,#1a7bc9 100%);
  85. background: -o-linear-gradient(top,#1a7bc9 0,#1a7bc9 100%);
  86. background: linear-gradient(to bottom,#1a7bc9 0,#1a7bc9 100%);
  87. background-repeat: repeat-x;
  88. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#1a7bc9,endColorstr=#1a7bc9,GradientType=0);
  89. -moz-border-radius: 0px 0px 0px 0px;
  90. -webkit-border-radius: 0px 0px 0px 0px;
  91. border-radius: 0px 0px 0px 0px;
  92. }
  93. a.l-btn span.l-btn-left {
  94. background-image: url('images/linkbutton_bg.png');
  95. background-repeat: no-repeat;
  96. background-image: none;
  97. }
  98. a:hover.l-btn {
  99. background: #9cc8f7;
  100. color: #404040;
  101. border: 1px solid #9cc8f7;
  102. filter: none;
  103. }
  104. a.l-btn-plain,
  105. a.l-btn-plain span.l-btn-left {
  106. background: transparent;
  107. border: 0;
  108. filter: none;
  109. }
  110. a:hover.l-btn-plain {
  111. background: #9cc8f7;
  112. color: #404040;
  113. border: 1px solid #9cc8f7;
  114. -moz-border-radius: 0px 0px 0px 0px;
  115. -webkit-border-radius: 0px 0px 0px 0px;
  116. border-radius: 0px 0px 0px 0px;
  117. }
  118. a.l-btn-disabled,
  119. a:hover.l-btn-disabled {
  120. filter: alpha(opacity=50);
  121. }