Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

button.css 3.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. /*
  2. * Default button (more customizable)
  3. * -------------------------------------- */
  4. .v-button {
  5. display: inline-block;
  6. zoom: 1;
  7. text-align: center;
  8. text-decoration: none;
  9. border: 2px outset #ddd;
  10. background: #eee;
  11. cursor: pointer;
  12. white-space: nowrap;
  13. margin: 0;
  14. padding: .2em 1em;
  15. color: inherit;
  16. font: inherit;
  17. line-height: normal;
  18. -khtml-user-select: none;
  19. -moz-user-select: none;
  20. -ie-user-select: none;
  21. user-select: none;
  22. -webkit-box-sizing: border-box;
  23. -moz-box-sizing: border-box;
  24. -ms-box-sizing: border-box;
  25. box-sizing: border-box;
  26. }
  27. .v-button.v-disabled {
  28. cursor: default;
  29. }
  30. .v-ie6 .v-button {
  31. display: inline;
  32. }
  33. .v-ie7 .v-button {
  34. display: inline;
  35. }
  36. .v-button-wrap,
  37. .v-button-caption {
  38. vertical-align: middle;
  39. white-space: nowrap;
  40. font: inherit;
  41. color: inherit;
  42. line-height: normal;
  43. }
  44. .v-button .v-icon,
  45. .v-nativebutton .v-icon {
  46. vertical-align: middle;
  47. margin-right: 3px;
  48. border: none;
  49. }
  50. .v-button .v-errorindicator,
  51. .v-nativebutton .v-errorindicator {
  52. display: inline-block;
  53. zoom: 1;
  54. vertical-align: middle;
  55. float: none;
  56. }
  57. /* Link style (we really should deprecate this) */
  58. .v-button-link,
  59. .v-nativebutton-link {
  60. border: none;
  61. text-align: left;
  62. background: transparent;
  63. padding: 0;
  64. color: inherit;
  65. -khtml-user-select: text;
  66. -moz-user-select: text;
  67. -ie-user-select: text;
  68. user-select: text;
  69. }
  70. /* Inset Safari focus outline a bit */
  71. .v-sa .v-button-link:focus{
  72. outline-offset: -3px;
  73. }
  74. .v-button-link .v-button-caption,
  75. .v-nativebutton-link .v-nativebutton-caption {
  76. text-decoration: underline;
  77. color: inherit;
  78. text-align: left;
  79. }
  80. /*
  81. * NativeButton styles (html button element)
  82. * -------------------------------------- */
  83. .v-nativebutton {
  84. text-align: center;
  85. cursor: pointer;
  86. white-space: nowrap;
  87. margin: 0;
  88. color: inherit;
  89. font: inherit;
  90. line-height: normal;
  91. }
  92. .v-nativebutton .v-nativebutton-caption {
  93. vertical-align: middle;
  94. white-space: nowrap;
  95. font: inherit;
  96. color: inherit;
  97. }
  98. .v-nativebutton .v-icon {
  99. vertical-align: middle;
  100. margin-right: 3px;
  101. }
  102. .v-nativebutton .v-errorindicator {
  103. display: inline-block;
  104. zoom: 1;
  105. float: none;
  106. }
  107. /* Fixes streched buttons in IE6 and IE7*/
  108. .v-ie6 .v-nativebutton {
  109. width: 1px;
  110. }
  111. .v-ie .v-nativebutton {
  112. overflow: visible;
  113. padding-left: 1em;
  114. padding-right: 1em;
  115. }
  116. .v-ie .v-nativebutton-link {
  117. padding: 0;
  118. }
  119. /*
  120. * Checkbox styles
  121. * -------------------------------------- */
  122. .v-checkbox {
  123. display: block;
  124. }
  125. .v-checkbox,
  126. .v-checkbox label,
  127. .v-checkbox input,
  128. .v-checkbox .v-icon {
  129. vertical-align: middle;
  130. white-space: nowrap;
  131. }
  132. /* Fix for IE6/IE7 issue where checkbox moves 1 pixel down after selection (#4636) */
  133. .v-ie6 .v-checkbox,
  134. .v-ie7 .v-checkbox {
  135. vertical-align: baseline;
  136. }
  137. .v-checkbox .v-icon {
  138. margin: 0 2px;
  139. }
  140. .v-checkbox .v-errorindicator {
  141. float: none;
  142. display: inline;
  143. display: inline-block;
  144. zoom: 1;
  145. }
  146. /* Disabled by default
  147. .v-checkbox-error {
  148. background: #ffe0e0;
  149. }
  150. */
  151. /* Disabled by default
  152. .v-checkbox-required {
  153. background: #ffe0e0;
  154. }
  155. */