common.css 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. .ui-widget, .ui-widget * {
  2. box-sizing: border-box;
  3. }
  4. .ui-helper-hidden {
  5. display: none !important;
  6. }
  7. .ui-helper-hidden-accessible {
  8. border: 0;
  9. clip: rect(0 0 0 0);
  10. height: 1px;
  11. margin: -1px;
  12. overflow: hidden;
  13. padding: 0;
  14. position: absolute;
  15. width: 1px;
  16. }
  17. .ui-helper-hidden-accessible input,
  18. .ui-helper-hidden-accessible select {
  19. transform: scale(0);
  20. }
  21. .ui-helper-reset {
  22. margin: 0;
  23. padding: 0;
  24. border: 0;
  25. outline: 0;
  26. line-height: 1.3;
  27. text-decoration: none;
  28. font-size: 100%;
  29. list-style: none;
  30. }
  31. .ui-helper-clearfix::before,
  32. .ui-helper-clearfix::after {
  33. content: "";
  34. display: table;
  35. }
  36. .ui-helper-clearfix::after {
  37. clear: both;
  38. }
  39. .ui-helper-clearfix {
  40. zoom: 1;
  41. }
  42. .ui-helper-zfix {
  43. width: 100%;
  44. height: 100%;
  45. top: 0;
  46. left: 0;
  47. position: absolute;
  48. opacity: 0;
  49. filter: Alpha(Opacity=0);
  50. }
  51. .ui-state-disabled {
  52. cursor: default !important;
  53. }
  54. .ui-state-disabled a {
  55. cursor: default !important;
  56. }
  57. .ui-icon {
  58. display: block;
  59. text-indent: -99999px;
  60. overflow: hidden;
  61. background-repeat: no-repeat;
  62. }
  63. .ui-widget-overlay {
  64. position: absolute;
  65. top: 0;
  66. left: 0;
  67. width: 100%;
  68. height: 100%;
  69. }
  70. .ui-resizable {
  71. position: relative;
  72. }
  73. .ui-resizable-handle {
  74. position: absolute;
  75. font-size: 0.1px;
  76. display: block;
  77. }
  78. .ui-resizable-disabled .ui-resizable-handle,
  79. .ui-resizable-autohide .ui-resizable-handle {
  80. display: none;
  81. }
  82. .ui-resizable-n {
  83. cursor: n-resize;
  84. height: 7px;
  85. width: 100%;
  86. top: -5px;
  87. left: 0;
  88. }
  89. .ui-resizable-s {
  90. cursor: s-resize;
  91. height: 7px;
  92. width: 100%;
  93. bottom: -5px;
  94. left: 0;
  95. }
  96. .ui-resizable-e {
  97. cursor: e-resize;
  98. width: 7px;
  99. right: -5px;
  100. top: 0;
  101. height: 100%;
  102. }
  103. .ui-resizable-w {
  104. cursor: w-resize;
  105. width: 7px;
  106. left: -5px;
  107. top: 0;
  108. height: 100%;
  109. }
  110. .ui-resizable-se {
  111. cursor: se-resize;
  112. width: 12px;
  113. height: 12px;
  114. right: 1px;
  115. bottom: 1px;
  116. }
  117. .ui-resizable-sw {
  118. cursor: sw-resize;
  119. width: 9px;
  120. height: 9px;
  121. left: -5px;
  122. bottom: -5px;
  123. }
  124. .ui-resizable-nw {
  125. cursor: nw-resize;
  126. width: 9px;
  127. height: 9px;
  128. left: -5px;
  129. top: -5px;
  130. }
  131. .ui-resizable-ne {
  132. cursor: ne-resize;
  133. width: 9px;
  134. height: 9px;
  135. right: -5px;
  136. top: -5px;
  137. }
  138. .ui-shadow {
  139. -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  140. -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  141. box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.3);
  142. }
  143. .ui-unselectable-text {
  144. -webkit-user-select: none;
  145. -khtml-user-select: none;
  146. -moz-user-select: none;
  147. -o-user-select: none;
  148. user-select: none;
  149. }
  150. .ui-scrollbar-measure {
  151. width: 100px;
  152. height: 100px;
  153. overflow: scroll;
  154. position: absolute;
  155. top: -9999px;
  156. }
  157. .ui-overflow-hidden {
  158. overflow: hidden;
  159. }
  160. ::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  161. color: #898989;
  162. }
  163. :-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  164. color: #898989;
  165. opacity: 1;
  166. }
  167. ::-moz-placeholder { /* Mozilla Firefox 19+ */
  168. color: #898989;
  169. opacity: 1;
  170. }
  171. :-ms-input-placeholder { /* Internet Explorer 10-11 */
  172. color: #898989;
  173. }
  174. ::-ms-input-placeholder { /* Microsoft Edge */
  175. color: #898989;
  176. }
  177. .ui-placeholder {
  178. color: #898989;
  179. }
  180. input[type="button"],
  181. input[type="submit"],
  182. input[type="reset"],
  183. input[type="file"]::-webkit-file-upload-button,
  184. button {
  185. -moz-border-radius: 0;
  186. -webkit-border-radius: 0;
  187. border-radius: 0;
  188. }