LoadMask.scss 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /**
  2. * @class Ext.LoadMask
  3. */
  4. /**
  5. * @var {number}
  6. * Opacity of the LoadMask
  7. */
  8. $loadmask-opacity: dynamic(0.5);
  9. /**
  10. * @var {color}
  11. * The background-color of the LoadMask
  12. */
  13. $loadmask-background-color: dynamic(#ccc);
  14. /**
  15. * @var {number}
  16. * Opacity of the LoadMask when applied to the document body element.
  17. * Used for modal Windows and MessageBox
  18. */
  19. $loadmask-page-opacity: dynamic($loadmask-opacity);
  20. /**
  21. * @var {color}
  22. * The background-color of the LoadMask when applied to the document body element.
  23. * Used for modal Windows and MessageBox
  24. */
  25. $loadmask-page-background-color: dynamic($loadmask-background-color);
  26. /**
  27. * @var {string}
  28. * The type of cursor to dislay when the cursor is over the LoadMask
  29. */
  30. $loadmask-cursor: dynamic(default);
  31. /**
  32. * @var {string}
  33. * The border-style of the LoadMask focus border
  34. */
  35. $loadmask-border-style-focus: dynamic(solid);
  36. /**
  37. * @var {string}
  38. * The border-color of the LoadMask focus border
  39. */
  40. $loadmask-border-color-focus: dynamic($base-color);
  41. /**
  42. * @var {string}
  43. * The border-width of the LoadMask focus border
  44. */
  45. $loadmask-border-width-focus: dynamic(1px);
  46. /**
  47. * @var {number/list}
  48. * The padding to apply to the LoadMask's message element
  49. */
  50. $loadmask-msg-padding: dynamic(2px);
  51. /**
  52. * @var {string}
  53. * The border-style of the LoadMask's message element
  54. */
  55. $loadmask-msg-border-style: dynamic(solid);
  56. /**
  57. * @var {color}
  58. * The border-color of the LoadMask's message element
  59. */
  60. $loadmask-msg-border-color: dynamic($base-color);
  61. /**
  62. * @var {number}
  63. * The border-width of the LoadMask's message element
  64. */
  65. $loadmask-msg-border-width: dynamic(1px);
  66. /**
  67. * @var {color}
  68. * The background-color of the LoadMask's message element
  69. */
  70. $loadmask-msg-background-color: dynamic($base-color);
  71. /**
  72. * @var {string/list}
  73. * The background-gradient of the LoadMask's message element. Can be either the name
  74. * of a predefined gradient or a list of color stops. Used as the `$type` parameter for
  75. * {@link Global_CSS#background-gradient}.
  76. */
  77. $loadmask-msg-background-gradient: dynamic('none');
  78. /**
  79. * @var {number/list}
  80. * The padding of the message inner element
  81. */
  82. $loadmask-msg-inner-padding: dynamic(0 5px);
  83. /**
  84. * @var {string}
  85. * The icon to display in the message inner element
  86. */
  87. $loadmask-msg-inner-icon: dynamic('loadmask/loading');
  88. /**
  89. * @var {list}
  90. * The background-position of the icon
  91. */
  92. $loadmask-msg-inner-icon-position: dynamic(0 center);
  93. /**
  94. * @var {string}
  95. * The border-style of the message inner element
  96. */
  97. $loadmask-msg-inner-border-style: dynamic(solid);
  98. /**
  99. * @var {color}
  100. * The border-color of the message inner element
  101. */
  102. $loadmask-msg-inner-border-color: dynamic($base-color);
  103. /**
  104. * @var {number}
  105. * The border-width of the message inner element
  106. */
  107. $loadmask-msg-inner-border-width: dynamic(1px);
  108. /**
  109. * @var {color}
  110. * The background-color of the message inner element
  111. */
  112. $loadmask-msg-inner-background-color: dynamic(#eee);
  113. /**
  114. * @var {color}
  115. * The text color of the message inner element
  116. */
  117. $loadmask-msg-inner-color: dynamic(#222);
  118. /**
  119. * @var {number}
  120. * The font-size of the message inner element
  121. */
  122. $loadmask-msg-inner-font-size: dynamic($font-size);
  123. /**
  124. * @var {string}
  125. * The font-weight of the message inner element
  126. */
  127. $loadmask-msg-inner-font-weight: dynamic($font-weight);
  128. /**
  129. * @var {string}
  130. * The font-family of the message inner element
  131. */
  132. $loadmask-msg-inner-font-family: dynamic($font-family);
  133. // private
  134. $loadmask-msg-inner-font: dynamic($loadmask-msg-inner-font-weight $loadmask-msg-inner-font-size $loadmask-msg-inner-font-family);
  135. /**
  136. * @var {number/list}
  137. * The padding of the message element
  138. */
  139. $loadmask-msg-text-padding: dynamic(5px 5px 5px 20px);
  140. /**
  141. * @var {number}
  142. * The border-radius of the message element
  143. */
  144. $loadmask-msg-border-radius: dynamic(0);