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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
/**
 * @class Ext.tip.Tip
 */
 
/**
 * @var {color}
 * The background-color of the Tip
 */
$tip-background-color: #fff !default;
 
/**
 * @var {string/list}
 * The background-gradient of the Tip. 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}.
 */
$tip-background-gradient: null !default;
 
/**
 * @var {color}
 * The text color of the Tip body
 */
$tip-body-color: #000 !default;
 
/**
 * @var {number}
 * The font-size of the Tip body
 */
$tip-body-font-size: $font-size !default;
 
/**
 * @var {string}
 * The font-weight of the Tip body
 */
$tip-body-font-weight: normal !default;
 
/**
 * @var {number/list}
 * The padding of the Tip body
 */
$tip-body-padding: 3px !default;
 
/**
 * @var {color}
 * The text color of any anchor tags inside the Tip body
 */
$tip-body-link-color: $tip-body-color !default;
 
/**
 * @var {color}
 * The text color of the Tip header
 */
$tip-header-color: $tip-body-color !default;
 
/**
 * @var {number}
 * The font-size of the Tip header
 */
$tip-header-font-size: $tip-body-font-size !default;
 
/**
 * @var {string}
 * The font-weight of the Tip header
 */
$tip-header-font-weight: bold !default;
 
/**
 * @var {number/list}
 * The padding of the Tip header's body element
 */
$tip-header-body-padding: 3px 3px 0 3px!default;  
 
/**
 * @var {color}
 * The border-color of the Tip
 */
$tip-border-color: $panel-border-color !default;
 
/**
 * @var {number}
 * The border-width of the Tip
 */
$tip-border-width: 1px !default;
 
/**
 * @var {number}
 * The border-radius of the Tip
 */
$tip-border-radius: 3px !default;
 
/**
 * @var {color}
 * The inner border-color of the form field error Tip
 */
$tip-error-inner-border-color: #fff !default;
 
/**
 * @var {number}
 * The inner border-width of the form field error Tip
 */
$tip-error-inner-border-width: 0 !default;
 
/**
 * @var {color}
 * The border-color of the form field error Tip
 */
$tip-error-border-color: $tip-border-color !default;
 
/**
 * @var {number}
 * The border-radius of the form field error Tip
 */
$tip-error-border-radius: $tip-border-radius !default;
 
/**
 * @var {number}
 * The border-width of the form field error Tip
 */
$tip-error-border-width: $tip-border-width !default;
 
/**
 * @var {color}
 * The background-color of the form field error Tip
 */
$tip-error-background-color: $tip-background-color !default;
 
/**
 * @var {number/list}
 * The padding of the form field error Tip's body element
 */
$tip-error-body-padding: $tip-body-padding !default;
 
/**
 * @var {color}
 * The text color of the form field error Tip's body element
 */
$tip-error-body-color: $tip-body-color !default;
 
/**
 * @var {number}
 * The font-size of the form field error Tip's body element
 */
$tip-error-body-font-size: $tip-body-font-size !default;
 
/**
 * @var {string}
 * The font-weight of the form field error Tip's body element
 */
$tip-error-body-font-weight: $tip-body-font-weight !default;
 
/**
 * @var {color}
 * The color of anchor tags in the form field error Tip's body element
 */
$tip-error-body-link-color: $tip-body-link-color !default;
 
/**
 * @var {number}
 * The space between {@link Ext.panel.Tool Tools} in the header
 */
$tip-tool-spacing: 4px !default;
 
/**
 * @var {string}
 * The sprite to use for the header {@link Ext.panel.Tool Tools}
 */
$tip-tool-background-image: 'tools/tool-sprites' !default;
 
/**
 * @var {boolean}
 * True to include the "default" tip UI
 */
$include-tip-default-ui: $include-default-uis !default;
 
/**
 * @var {boolean}
 * True to include the "form-invalid" tip UI
 */
$include-tip-form-invalid-ui: $include-default-uis !default;