core.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*!
  2. * jQuery UI CSS Framework 1.12.1
  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-zfix {
  46. width: 100%;
  47. height: 100%;
  48. top: 0;
  49. left: 0;
  50. position: absolute;
  51. opacity: 0;
  52. filter:Alpha(Opacity=0); /* support: IE8 */
  53. }
  54. .ui-front {
  55. z-index: 100;
  56. }
  57. /* Interaction Cues
  58. ----------------------------------*/
  59. .ui-state-disabled {
  60. cursor: default !important;
  61. pointer-events: none;
  62. }
  63. /* Icons
  64. ----------------------------------*/
  65. .ui-icon {
  66. display: inline-block;
  67. vertical-align: middle;
  68. margin-top: -.25em;
  69. position: relative;
  70. text-indent: -99999px;
  71. overflow: hidden;
  72. background-repeat: no-repeat;
  73. }
  74. .ui-widget-icon-block {
  75. left: 50%;
  76. margin-left: -8px;
  77. display: block;
  78. }
  79. /* Misc visuals
  80. ----------------------------------*/
  81. /* Overlays */
  82. .ui-widget-overlay {
  83. position: fixed;
  84. top: 0;
  85. left: 0;
  86. width: 100%;
  87. height: 100%;
  88. }