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
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
<!DOCTYPE html>
<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  <title>The source code</title>
  <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
  <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
  <style type="text/css">
    .highlight { display: block; background-color: #ddd; }
  </style>
  <script type="text/javascript">
    function highlight() {
      document.getElementById(location.hash.replace(/#/, "")).className = "highlight";
    }
  </script>
</head>
<body onload="prettyPrint(); highlight();">
  <pre class="prettyprint lang-js"><span id='Ext-panel-Panel'>/**
</span> * @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;
 
<span id='Ext-panel-Panel-css_var-S-panel-border-width'>/**
</span> * @var {number}
 * The default border-width of Panels
 */
$panel-border-width: 1px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-base-color'>/**
</span> * @var {color}
 * The base color of Panels
 */
$panel-base-color: $base-color !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-border-color'>/**
</span> * @var {color}
 * The default border-color of Panels
 */
$panel-border-color: $panel-base-color !default;
 
<span id='Ext-panel-Panel-css_var-S-border-width-threshold'>/**
</span> * @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 ==========
// ===============================
<span id='Ext-panel-Panel-css_var-S-panel-body-border-style'>/**
</span> * @var {string}
 * The default border-style of Panels
 */
$panel-body-border-style: solid !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-body-background-color'>/**
</span> * @var {color}
 * The default body background-color of Panels
 */
$panel-body-background-color: #fff !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-body-color'>/**
</span> * @var {color}
 * The default color of text inside a Panel's body
 */
$panel-body-color: #000 !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-body-border-color'>/**
</span> * @var {color}
 * The default border-color of the Panel body
 */
$panel-body-border-color: $panel-border-color !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-body-border-width'>/**
</span> * @var {number}
 * The default border-width of the Panel body
 */
$panel-body-border-width: 1px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-body-font-size'>/**
</span> * @var {number}
 * The default font-size of the Panel body
 */
$panel-body-font-size: $font-size !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-body-font-weight'>/**
</span> * @var {string}
 * The default font-weight of the Panel body
 */
$panel-body-font-weight: normal !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-tool-spacing'>/**
</span> * @var {number}
 * The space between the Panel {@link Ext.panel.Tool Tools}
 */
$panel-tool-spacing: 4px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-tool-background-image'>/**
</span> * @var {string}
 * The background sprite to use for Panel {@link Ext.panel.Tool Tools}
 */
$panel-tool-background-image: 'tools/tool-sprites' !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-border-width'>/**
</span> * @var {number}
 * The border-width of Panel Headers
 */
$panel-header-border-width: $panel-border-width !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-border-style'>/**
</span> * @var {string}
 * The border-style of Panel Headers
 */
$panel-header-border-style: solid !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-padding'>/**
</span> * @var {number/list}
 * The padding of Panel Headers
 */
$panel-header-padding: 4px 5px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-font-size'>/**
</span> * @var {number}
 * The font-size of Panel Headers
 */
$panel-header-font-size: $font-size !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-line-height'>/**
</span> * @var {number}
 * The line-height of Panel Headers
 */
$panel-header-line-height: 16px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-font-weight'>/**
</span> * @var {string}
 * The font-weight of Panel Headers
 */
$panel-header-font-weight: bold !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-font-family'>/**
</span> * @var {string}
 * The font-family of Panel Headers
 */
$panel-header-font-family: $font-family !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-text-transform'>/**
</span> * @var {string}
 * The text-transform of Panel Headers
 */
$panel-header-text-transform: none !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-text-padding'>/**
</span> * @var {number/list}
 * The padding of the Panel Header's text element
 */
$panel-header-text-padding: 0 !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-background-gradient'>/**
</span> * @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;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-border-color'>/**
</span> * @var {color}
 * The border-color of the Panel Header
 */
$panel-header-border-color: $panel-border-color !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-inner-border-color'>/**
</span> * @var {color}
 * The inner border-color of the Panel Header
 */
$panel-header-inner-border-color: #fff !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-inner-border-width'>/**
</span> * @var {number}
 * The inner border-width of the Panel Header
 */
$panel-header-inner-border-width: 0 !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-color'>/**
</span> * @var {color}
 * The text color of the Panel Header
 */
$panel-header-color: $color !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-background-color'>/**
</span> * @var {color}
 * The background-color of the Panel Header
 */
$panel-header-background-color: $panel-base-color !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-icon-width'>/**
</span> * @var {number}
 * The width of the Panel Header icon
 */
$panel-header-icon-width: 16px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-icon-height'>/**
</span> * @var {number}
 * The height of the Panel Header icon
 */
$panel-header-icon-height: 16px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-icon-spacing'>/**
</span> * @var {number}
 * The space between the Panel Header icon and text
 */
$panel-header-icon-spacing: 4px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-icon-background-position'>/**
</span> * @var {list}
 * The background-position of  the Panel Header icon
 */
$panel-header-icon-background-position: center center !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-glyph-color'>/**
</span> * @var {color}
 * The color of the Panel Header glyph icon
 */
$panel-header-glyph-color: $panel-header-color !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-header-glyph-opacity'>/**
</span> * @var {number}
 * The opacity of the Panel Header glyph icon
 */
$panel-header-glyph-opacity: .5 !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-base-color'>/**
</span> * @var {color}
 * The base color of the framed Panels
 */
$panel-frame-base-color: $panel-base-color !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-border-radius'>/**
</span> * @var {number}
 * The border-radius of framed Panels
 */
$panel-frame-border-radius: 4px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-border-width'>/**
</span> * @var {number}
 * The border-width of framed Panels
 */
$panel-frame-border-width: 1px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-border-style'>/**
</span> * @var {string}
 * The border-style of framed Panels
 */
$panel-frame-border-style: solid !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-padding'>/**
</span> * @var {number}
 * The padding of framed Panels
 */
$panel-frame-padding: 4px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-background-color'>/**
</span> * @var {color}
 * The background-color of framed Panels
 */
$panel-frame-background-color: #fff !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-border-color'>/**
</span> * @var {color}
 * The border-color of framed Panels
 */
$panel-frame-border-color: $panel-border-color !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-body-border-width'>/**
</span> * @var {number}
 * The border-width of the body element of framed Panels
 */
$panel-frame-body-border-width: 1px !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-header-border-width'>/**
</span> * @var {number}
 * The border-width of framed Panel Headers
 */
$panel-frame-header-border-width: $panel-header-border-width !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-header-inner-border-color'>/**
</span> * @var {color}
 * The inner border-color of framed Panel Headers
 */
$panel-frame-header-inner-border-color: #fff !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-header-inner-border-width'>/**
</span> * @var {number}
 * The inner border-width of framed Panel Headers
 */
$panel-frame-header-inner-border-width: 0 !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-frame-header-padding'>/**
</span> * @var {number/list}
 * The padding of framed Panel Headers
 */
$panel-frame-header-padding: $panel-header-padding !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-ghost-opacity'>/**
</span> * @var {number}
 * The opacity of ghost Panels while dragging
 */
$panel-ghost-opacity: 0.50 !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-background-stretch-top'>/**
</span> * @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;
 
<span id='Ext-panel-Panel-css_var-S-panel-background-stretch-bottom'>/**
</span> * @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;
 
<span id='Ext-panel-Panel-css_var-S-panel-background-stretch-right'>/**
</span> * @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;
 
<span id='Ext-panel-Panel-css_var-S-panel-background-stretch-left'>/**
</span> * @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;
 
<span id='Ext-panel-Panel-css_var-S-panel-include-border-management-rules'>/**
</span> * @var {boolean}
 * True to include neptune style border management rules.
 */
$panel-include-border-management-rules: false !default;
 
<span id='Ext-panel-Panel-css_var-S-panel-wrap-border-color'>/**
</span> * @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;
 
<span id='Ext-panel-Panel-css_var-S-panel-wrap-border-width'>/**
</span> * @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;
 
<span id='Ext-panel-Panel-css_var-S-include-panel-default-ui'>/**
</span> * @var {boolean}
 * True to include the &quot;default&quot; panel UI
 */
$include-panel-default-ui: $include-default-uis !default;
 
<span id='Ext-panel-Panel-css_var-S-include-panel-default-framed-ui'>/**
</span> * @var {boolean}
 * True to include the &quot;default-framed&quot; panel UI
 */
$include-panel-default-framed-ui: $include-default-uis !default;
</pre>
</body>
</html>