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