core.css 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. /*!
  2. * jQuery UI CSS Framework 1.14.1
  3. * https://jqueryui.com
  4. *
  5. * Copyright OpenJS Foundation and other contributors
  6. * Released under the MIT license.
  7. * https://jquery.org/license
  8. *
  9. * https://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. }
  53. .ui-front {
  54. z-index: 100;
  55. }
  56. /* Interaction Cues
  57. ----------------------------------*/
  58. .ui-state-disabled {
  59. cursor: default !important;
  60. pointer-events: none;
  61. }
  62. /* Icons
  63. ----------------------------------*/
  64. .ui-icon {
  65. display: inline-block;
  66. vertical-align: middle;
  67. margin-top: -.25em;
  68. position: relative;
  69. text-indent: -99999px;
  70. overflow: hidden;
  71. background-repeat: no-repeat;
  72. }
  73. .ui-widget-icon-block {
  74. left: 50%;
  75. margin-left: -8px;
  76. display: block;
  77. }
  78. /* Misc visuals
  79. ----------------------------------*/
  80. /* Overlays */
  81. .ui-widget-overlay {
  82. position: fixed;
  83. top: 0;
  84. left: 0;
  85. width: 100%;
  86. height: 100%;
  87. }