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
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/**
 * @class Ext.panel.Panel
 */
 
// TODO: setting this probably doesn't work well, since border-radius is typically
// reserved for framed-panels - should we remove this?
$panel-border-radius: null !default;
 
/**
 * @var {number}
 * The default border-width of Panels
 */
$panel-border-width: 1px !default;
 
/**
 * @var {color}
 * The base color of Panels
 */
$panel-base-color: $base-color !default;
 
/**
 * @var {color}
 * The default border-color of Panels
 */
$panel-border-color: $panel-base-color !default;
 
/**
 * @var {$border-width-threshold}
 * The maximum width a Panel's border can be before resizer handles are embedded into the borders using negative absolute positions.
 *
 * This defaults to 2, so that in the classic theme which uses 1 pixel borders, resize handles are in the content area
 * within the border as they always have been.
 *
 * In the Neptune theme, the handles are embedded into the 5 pixel wide borders of any framed panel.
 */
$border-width-threshold: 2 !default;
 
// ===============================
// ========= PANEL BODY ==========
// ===============================
/**
 * @var {string}
 * The default border-style of Panels
 */
$panel-body-border-style: solid !default;
 
/**
 * @var {color}
 * The default body background-color of Panels
 */
$panel-body-background-color: #fff !default;
 
/**
 * @var {color}
 * The default color of text inside a Panel's body
 */
$panel-body-color: #000 !default;
 
/**
 * @var {color}
 * The default border-color of the Panel body
 */
$panel-body-border-color: $panel-border-color !default;
 
/**
 * @var {number}
 * The default border-width of the Panel body
 */
$panel-body-border-width: 1px !default;
 
/**
 * @var {number}
 * The default font-size of the Panel body
 */
$panel-body-font-size: $font-size !default;
 
/**
 * @var {string}
 * The default font-weight of the Panel body
 */
$panel-body-font-weight: normal !default;
 
/**
 * @var {number}
 * The space between the Panel {@link Ext.panel.Tool Tools}
 */
$panel-tool-spacing: 4px !default;
 
/**
 * @var {string}
 * The background sprite to use for Panel {@link Ext.panel.Tool Tools}
 */
$panel-tool-background-image: 'tools/tool-sprites' !default;
 
/**
 * @var {number}
 * The border-width of Panel Headers
 */
$panel-header-border-width: $panel-border-width !default;
 
/**
 * @var {string}
 * The border-style of Panel Headers
 */
$panel-header-border-style: solid !default;
 
/**
 * @var {number/list}
 * The padding of Panel Headers
 */
$panel-header-padding: 4px 5px !default;
 
/**
 * @var {number}
 * The font-size of Panel Headers
 */
$panel-header-font-size: $font-size !default;
 
/**
 * @var {number}
 * The line-height of Panel Headers
 */
$panel-header-line-height: 16px !default;
 
/**
 * @var {string}
 * The font-weight of Panel Headers
 */
$panel-header-font-weight: bold !default;
 
/**
 * @var {string}
 * The font-family of Panel Headers
 */
$panel-header-font-family: $font-family !default;
 
/**
 * @var {string}
 * The text-transform of Panel Headers
 */
$panel-header-text-transform: none !default;
 
/**
 * @var {number/list}
 * The padding of the Panel Header's text element
 */
$panel-header-text-padding: 0 !default;
 
/**
 * @var {string/list}
 * The background-gradient of the Panel Header. 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}.
 */
$panel-header-background-gradient: null !default;
 
/**
 * @var {color}
 * The border-color of the Panel Header
 */
$panel-header-border-color: $panel-border-color !default;
 
/**
 * @var {color}
 * The inner border-color of the Panel Header
 */
$panel-header-inner-border-color: #fff !default;
 
/**
 * @var {number}
 * The inner border-width of the Panel Header
 */
$panel-header-inner-border-width: 0 !default;
 
/**
 * @var {color}
 * The text color of the Panel Header
 */
$panel-header-color: $color !default;
 
/**
 * @var {color}
 * The background-color of the Panel Header
 */
$panel-header-background-color: $panel-base-color !default;
 
/**
 * @var {number}
 * The width of the Panel Header icon
 */
$panel-header-icon-width: 16px !default;
 
/**
 * @var {number}
 * The height of the Panel Header icon
 */
$panel-header-icon-height: 16px !default;
 
/**
 * @var {number}
 * The space between the Panel Header icon and text
 */
$panel-header-icon-spacing: 4px !default;
 
/**
 * @var {list}
 * The background-position of  the Panel Header icon
 */
$panel-header-icon-background-position: center center !default;
 
/**
 * @var {color}
 * The color of the Panel Header glyph icon
 */
$panel-header-glyph-color: $panel-header-color !default;
 
/**
 * @var {number}
 * The opacity of the Panel Header glyph icon
 */
$panel-header-glyph-opacity: .5 !default;
 
/**
 * @var {color}
 * The base color of the framed Panels
 */
$panel-frame-base-color: $panel-base-color !default;
 
/**
 * @var {number}
 * The border-radius of framed Panels
 */
$panel-frame-border-radius: 4px !default;
 
/**
 * @var {number}
 * The border-width of framed Panels
 */
$panel-frame-border-width: 1px !default;
 
/**
 * @var {string}
 * The border-style of framed Panels
 */
$panel-frame-border-style: solid !default;
 
/**
 * @var {number}
 * The padding of framed Panels
 */
$panel-frame-padding: 4px !default;
 
/**
 * @var {color}
 * The background-color of framed Panels
 */
$panel-frame-background-color: #fff !default;
 
/**
 * @var {color}
 * The border-color of framed Panels
 */
$panel-frame-border-color: $panel-border-color !default;
 
/**
 * @var {number}
 * The border-width of the body element of framed Panels
 */
$panel-frame-body-border-width: 1px !default;
 
/**
 * @var {number}
 * The border-width of framed Panel Headers
 */
$panel-frame-header-border-width: $panel-header-border-width !default;
 
/**
 * @var {color}
 * The inner border-color of framed Panel Headers
 */
$panel-frame-header-inner-border-color: #fff !default;
 
/**
 * @var {number}
 * The inner border-width of framed Panel Headers
 */
$panel-frame-header-inner-border-width: 0 !default;
 
/**
 * @var {number/list}
 * The padding of framed Panel Headers
 */
$panel-frame-header-padding: $panel-header-padding !default;
 
/**
 * @var {number}
 * The opacity of ghost Panels while dragging
 */
$panel-ghost-opacity: 0.50 !default;
 
/**
 * @var {string}
 * The direction to strech the background-gradient of top docked Headers when slicing images
 * for IE using Sencha Cmd
 */
$panel-background-stretch-top: bottom !default;
 
/**
 * @var {string}
 * The direction to strech the background-gradient of bottom docked Headers when slicing images
 * for IE using Sencha Cmd
 */
$panel-background-stretch-bottom: top !default;
 
/**
 * @var {string}
 * The direction to strech the background-gradient of right docked Headers when slicing images
 * for IE using Sencha Cmd
 */
$panel-background-stretch-right: left !default;
 
/**
 * @var {string}
 * The direction to strech the background-gradient of left docked Headers when slicing images
 * for IE using Sencha Cmd
 */
$panel-background-stretch-left: right !default;
 
/**
 * @var {boolean}
 * True to include neptune style border management rules.
 */
$panel-include-border-management-rules: false !default;
 
/**
 * @var {color}
 * The color to apply to the border that wraps the body and docked items in a framed
 * panel. The presence of the wrap border in a framed panel is controlled by the
 * {@link #border} config. Only applicable when `$panel-include-border-management-rules` is
 * `true`.
 */
$panel-wrap-border-color: $panel-border-color !default;
 
/**
 * @var {number}
 * The width to apply to the border that wraps the body and docked items in a framed
 * panel. The presence of the wrap border in a framed panel is controlled by the
 * {@link #border} config. Only applicable when `$panel-include-border-management-rules` is
 * `true`.
 */
$panel-wrap-border-width: 1px !default;
 
/**
 * @var {boolean}
 * True to include the "default" panel UI
 */
$include-panel-default-ui: $include-default-uis !default;
 
/**
 * @var {boolean}
 * True to include the "default-framed" panel UI
 */
$include-panel-default-framed-ui: $include-default-uis !default;