jquery-ui-dialog.css 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358
  1. /*!
  2. * jQuery UI CSS Framework 1.11.4
  3. * http://jqueryui.com
  4. *
  5. * Copyright jQuery Foundation and other contributors
  6. * Released under the MIT license.
  7. * http://jquery.org/license
  8. *
  9. * http://api.jqueryui.com/category/theming/
  10. */
  11. /* Layout helpers
  12. ----------------------------------*/
  13. .ui-helper-hidden {
  14. display: none;
  15. }
  16. .ui-helper-hidden-accessible {
  17. border: 0;
  18. clip: rect(0 0 0 0);
  19. height: 1px;
  20. margin: -1px;
  21. overflow: hidden;
  22. padding: 0;
  23. position: absolute;
  24. width: 1px;
  25. }
  26. .ui-helper-reset {
  27. margin: 0;
  28. padding: 0;
  29. border: 0;
  30. outline: 0;
  31. line-height: 1.3;
  32. text-decoration: none;
  33. font-size: 100%;
  34. list-style: none;
  35. }
  36. .ui-helper-clearfix:before,
  37. .ui-helper-clearfix:after {
  38. content: "";
  39. display: table;
  40. border-collapse: collapse;
  41. }
  42. .ui-helper-clearfix:after {
  43. clear: both;
  44. }
  45. .ui-helper-clearfix {
  46. min-height: 0; /* support: IE7 */
  47. }
  48. .ui-helper-zfix {
  49. width: 100%;
  50. height: 100%;
  51. top: 0;
  52. left: 0;
  53. position: absolute;
  54. opacity: 0;
  55. filter:Alpha(Opacity=0); /* support: IE8 */
  56. }
  57. .ui-front {
  58. z-index: 100;
  59. }
  60. /* Interaction Cues
  61. ----------------------------------*/
  62. .ui-state-disabled {
  63. cursor: default !important;
  64. }
  65. /* Icons
  66. ----------------------------------*/
  67. /* states and images */
  68. .ui-icon {
  69. display: block;
  70. text-indent: -99999px;
  71. overflow: hidden;
  72. background-repeat: no-repeat;
  73. }
  74. /* Misc visuals
  75. ----------------------------------*/
  76. /* Overlays */
  77. .ui-widget-overlay {
  78. position: fixed;
  79. top: 0;
  80. left: 0;
  81. width: 100%;
  82. height: 100%;
  83. }
  84. /*!
  85. * jQuery UI Resizable 1.11.4
  86. * http://jqueryui.com
  87. *
  88. * Copyright jQuery Foundation and other contributors
  89. * Released under the MIT license.
  90. * http://jquery.org/license
  91. */
  92. .ui-resizable {
  93. position: relative;
  94. }
  95. .ui-resizable-handle {
  96. position: absolute;
  97. font-size: 0.1px;
  98. display: block;
  99. touch-action: none;
  100. }
  101. .ui-resizable-disabled .ui-resizable-handle,
  102. .ui-resizable-autohide .ui-resizable-handle {
  103. display: none;
  104. }
  105. .ui-resizable-n {
  106. cursor: n-resize;
  107. height: 7px;
  108. width: 100%;
  109. top: -5px;
  110. left: 0;
  111. }
  112. .ui-resizable-s {
  113. cursor: s-resize;
  114. height: 7px;
  115. width: 100%;
  116. bottom: -5px;
  117. left: 0;
  118. }
  119. /* rtl:ignore */
  120. .ui-resizable-e {
  121. cursor: e-resize;
  122. width: 7px;
  123. right: -5px;
  124. top: 0;
  125. height: 100%;
  126. }
  127. /* rtl:ignore */
  128. .ui-resizable-w {
  129. cursor: w-resize;
  130. width: 7px;
  131. left: -5px;
  132. top: 0;
  133. height: 100%;
  134. }
  135. /* rtl:ignore */
  136. .ui-resizable-se {
  137. cursor: se-resize;
  138. width: 12px;
  139. height: 12px;
  140. right: 1px;
  141. bottom: 1px;
  142. }
  143. /* rtl:ignore */
  144. .ui-resizable-sw {
  145. cursor: sw-resize;
  146. width: 9px;
  147. height: 9px;
  148. left: -5px;
  149. bottom: -5px;
  150. }
  151. /* rtl:ignore */
  152. .ui-resizable-nw {
  153. cursor: nw-resize;
  154. width: 9px;
  155. height: 9px;
  156. left: -5px;
  157. top: -5px;
  158. }
  159. /* rtl:ignore */
  160. .ui-resizable-ne {
  161. cursor: ne-resize;
  162. width: 9px;
  163. height: 9px;
  164. right: -5px;
  165. top: -5px;
  166. }
  167. /* WP buttons: see buttons.css. */
  168. .ui-button {
  169. display: inline-block;
  170. text-decoration: none;
  171. font-size: 13px;
  172. line-height: 2;
  173. height: 28px;
  174. margin: 0;
  175. padding: 0 10px 1px;
  176. cursor: pointer;
  177. border-width: 1px;
  178. border-style: solid;
  179. -webkit-appearance: none;
  180. border-radius: 3px;
  181. white-space: nowrap;
  182. box-sizing: border-box;
  183. color: #50575e;
  184. border-color: #c3c4c7;
  185. background: #f6f7f7;
  186. box-shadow: 0 1px 0 #c3c4c7;
  187. vertical-align: top;
  188. }
  189. .ui-button:active,
  190. .ui-button:focus {
  191. outline: none;
  192. }
  193. /* Remove the dotted border on :focus and the extra padding in Firefox */
  194. .ui-button::-moz-focus-inner {
  195. border-width: 0;
  196. border-style: none;
  197. padding: 0;
  198. }
  199. .ui-button:hover,
  200. .ui-button:focus {
  201. background: #f6f7f7;
  202. border-color: #8c8f94;
  203. color: #1d2327;
  204. }
  205. .ui-button:focus {
  206. border-color: #4f94d4;
  207. box-shadow: 0 0 3px rgba(34, 113, 177, 0.8);
  208. }
  209. .ui-button:active {
  210. background: #f0f0f1;
  211. border-color: #8c8f94;
  212. box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
  213. }
  214. .ui-button[disabled],
  215. .ui-button:disabled {
  216. color: #a7aaad !important;
  217. border-color: #dcdcde !important;
  218. background: #f6f7f7 !important;
  219. box-shadow: none !important;
  220. text-shadow: 0 1px 0 #fff !important;
  221. cursor: default;
  222. transform: none !important;
  223. }
  224. @media screen and (max-width: 782px) {
  225. .ui-button {
  226. padding: 6px 14px;
  227. line-height: normal;
  228. font-size: 14px;
  229. vertical-align: middle;
  230. height: auto;
  231. margin-bottom: 4px;
  232. }
  233. }
  234. /* WP Theme */
  235. .ui-dialog {
  236. position: absolute;
  237. top: 0;
  238. left: 0;
  239. z-index: 100102;
  240. background-color: #fff;
  241. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
  242. overflow: hidden;
  243. }
  244. .ui-dialog-titlebar {
  245. background: #fff;
  246. border-bottom: 1px solid #dcdcde;
  247. height: 36px;
  248. font-size: 18px;
  249. font-weight: 600;
  250. line-height: 2;
  251. padding: 0 36px 0 16px;
  252. }
  253. .ui-button.ui-dialog-titlebar-close {
  254. background: none;
  255. border: none;
  256. box-shadow: none;
  257. color: #646970;
  258. cursor: pointer;
  259. display: block;
  260. padding: 0;
  261. position: absolute;
  262. top: 0;
  263. right: 0;
  264. width: 36px;
  265. height: 36px;
  266. text-align: center;
  267. border-radius: 0;
  268. overflow: hidden;
  269. }
  270. .ui-dialog-titlebar-close:before {
  271. font: normal 20px/1 dashicons;
  272. vertical-align: top;
  273. speak: never;
  274. -webkit-font-smoothing: antialiased;
  275. -moz-osx-font-smoothing: grayscale;
  276. line-height: 1.8;
  277. width: 36px;
  278. height: 36px;
  279. content: "\f158";
  280. }
  281. .ui-button.ui-dialog-titlebar-close:hover,
  282. .ui-button.ui-dialog-titlebar-close:focus {
  283. color: #135e96;
  284. }
  285. .ui-button.ui-dialog-titlebar-close:focus {
  286. box-shadow:
  287. 0 0 0 1px #4f94d4,
  288. 0 0 2px 1px rgba(79, 148, 212, 0.8);
  289. /* Only visible in Windows High Contrast mode */
  290. outline: 2px solid transparent;
  291. outline-offset: -2px;
  292. }
  293. .ui-dialog-content {
  294. padding: 16px;
  295. overflow: auto;
  296. }
  297. .ui-dialog-buttonpane {
  298. background: #fff;
  299. border-top: 1px solid #dcdcde;
  300. padding: 16px;
  301. }
  302. .ui-dialog-buttonpane .ui-button {
  303. margin-left: 16px;
  304. }
  305. .ui-dialog-buttonpane .ui-dialog-buttonset {
  306. float: right;
  307. }
  308. .ui-draggable .ui-dialog-titlebar {
  309. cursor: move;
  310. }
  311. .ui-widget-overlay {
  312. position: fixed;
  313. top: 0;
  314. left: 0;
  315. right: 0;
  316. bottom: 0;
  317. min-height: 360px;
  318. background: #000;
  319. opacity: 0.7;
  320. filter: alpha(opacity=70);
  321. z-index: 100101;
  322. }