linkbutton.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. .l-btn {
  2. text-decoration: none;
  3. display: inline-block;
  4. overflow: hidden;
  5. margin: 0;
  6. padding: 0;
  7. cursor: pointer;
  8. outline: none;
  9. text-align: center;
  10. vertical-align: middle;
  11. line-height: normal;
  12. }
  13. .l-btn-plain {
  14. border-width: 0;
  15. padding: 1px;
  16. }
  17. .l-btn-left {
  18. display: inline-block;
  19. position: relative;
  20. overflow: hidden;
  21. margin: 0;
  22. padding: 0;
  23. vertical-align: top;
  24. }
  25. .l-btn-text {
  26. display: inline-block;
  27. vertical-align: top;
  28. width: auto;
  29. line-height: 28px;
  30. font-size: 14px;
  31. padding: 0;
  32. margin: 0 6px;
  33. }
  34. .l-btn-icon {
  35. display: inline-block;
  36. width: 16px;
  37. height: 16px;
  38. line-height: 16px;
  39. position: absolute;
  40. top: 50%;
  41. margin-top: -8px;
  42. font-size: 1px;
  43. }
  44. .l-btn span span .l-btn-empty {
  45. display: inline-block;
  46. margin: 0;
  47. width: 16px;
  48. height: 24px;
  49. font-size: 1px;
  50. vertical-align: top;
  51. }
  52. .l-btn span .l-btn-icon-left {
  53. padding: 0 0 0 20px;
  54. background-position: left center;
  55. }
  56. .l-btn span .l-btn-icon-right {
  57. padding: 0 20px 0 0;
  58. background-position: right center;
  59. }
  60. .l-btn-icon-left .l-btn-text {
  61. margin: 0 6px 0 26px;
  62. }
  63. .l-btn-icon-left .l-btn-icon {
  64. left: 6px;
  65. }
  66. .l-btn-icon-right .l-btn-text {
  67. margin: 0 26px 0 6px;
  68. }
  69. .l-btn-icon-right .l-btn-icon {
  70. right: 6px;
  71. }
  72. .l-btn-icon-top .l-btn-text {
  73. margin: 20px 4px 0 4px;
  74. }
  75. .l-btn-icon-top .l-btn-icon {
  76. top: 4px;
  77. left: 50%;
  78. margin: 0 0 0 -8px;
  79. }
  80. .l-btn-icon-bottom .l-btn-text {
  81. margin: 0 4px 20px 4px;
  82. }
  83. .l-btn-icon-bottom .l-btn-icon {
  84. top: auto;
  85. bottom: 4px;
  86. left: 50%;
  87. margin: 0 0 0 -8px;
  88. }
  89. .l-btn-left .l-btn-empty {
  90. margin: 0 6px;
  91. width: 16px;
  92. }
  93. .l-btn-plain:hover {
  94. padding: 0;
  95. }
  96. .l-btn-focus {
  97. outline: #0000FF dotted thin;
  98. }
  99. .l-btn-large .l-btn-text {
  100. line-height: 44px;
  101. }
  102. .l-btn-large .l-btn-icon {
  103. width: 32px;
  104. height: 32px;
  105. line-height: 32px;
  106. margin-top: -16px;
  107. }
  108. .l-btn-large .l-btn-icon-left .l-btn-text {
  109. margin-left: 40px;
  110. }
  111. .l-btn-large .l-btn-icon-right .l-btn-text {
  112. margin-right: 40px;
  113. }
  114. .l-btn-large .l-btn-icon-top .l-btn-text {
  115. margin-top: 36px;
  116. line-height: 24px;
  117. min-width: 32px;
  118. }
  119. .l-btn-large .l-btn-icon-top .l-btn-icon {
  120. margin: 0 0 0 -16px;
  121. }
  122. .l-btn-large .l-btn-icon-bottom .l-btn-text {
  123. margin-bottom: 36px;
  124. line-height: 24px;
  125. min-width: 32px;
  126. }
  127. .l-btn-large .l-btn-icon-bottom .l-btn-icon {
  128. margin: 0 0 0 -16px;
  129. }
  130. .l-btn-large .l-btn-left .l-btn-empty {
  131. margin: 0 6px;
  132. width: 32px;
  133. }
  134. .l-btn {
  135. color: #404040;
  136. background: #fafafa;
  137. background-repeat: repeat-x;
  138. border: 1px solid #dfdfdf;
  139. -moz-border-radius: 4px 4px 4px 4px;
  140. -webkit-border-radius: 4px 4px 4px 4px;
  141. border-radius: 4px 4px 4px 4px;
  142. }
  143. .l-btn:hover {
  144. background: #eee;
  145. color: #404040;
  146. border: 1px solid #ccc;
  147. filter: none;
  148. }
  149. .l-btn-plain {
  150. background: transparent;
  151. border-width: 0;
  152. filter: none;
  153. }
  154. .l-btn-outline {
  155. border-width: 1px;
  156. border-color: #ccc;
  157. padding: 0;
  158. }
  159. .l-btn-plain:hover {
  160. background: #eee;
  161. color: #404040;
  162. border: 1px solid #ccc;
  163. -moz-border-radius: 4px 4px 4px 4px;
  164. -webkit-border-radius: 4px 4px 4px 4px;
  165. border-radius: 4px 4px 4px 4px;
  166. }
  167. .l-btn-disabled,
  168. .l-btn-disabled:hover {
  169. opacity: 0.5;
  170. cursor: default;
  171. background: #fafafa;
  172. color: #404040;
  173. }
  174. .l-btn-disabled .l-btn-text,
  175. .l-btn-disabled .l-btn-icon {
  176. filter: alpha(opacity=50);
  177. }
  178. .l-btn-plain-disabled,
  179. .l-btn-plain-disabled:hover {
  180. background: transparent;
  181. filter: alpha(opacity=50);
  182. }
  183. .l-btn-selected,
  184. .l-btn-selected:hover {
  185. background: #39c;
  186. filter: none;
  187. }
  188. .l-btn-plain-selected,
  189. .l-btn-plain-selected:hover {
  190. background: #39c;
  191. }