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
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
/**
 * @class Ext.tab.Tab
 */
 
/**
 * @var {color}
 * The base color of Tabs
 */
$tab-base-color: $base-color !default;
 
/**
 * @var {color}
 * The base color of hovered Tabs
 */
$tab-base-color-over: $tab-base-color !default;
 
/**
 * @var {color}
 * The base color of the active Tabs
 */
$tab-base-color-active: $tab-base-color !default;
 
/**
 * @var {color}
 * The base color of disabled Tabs
 */
$tab-base-color-disabled: $tab-base-color !default;
 
/**
 * @var {color}
 * The text color of Tabs
 */
$tab-color: $color !default;
 
/**
 * @var {color}
 * The text color of hovered Tabs
 */
$tab-color-over: $tab-color !default;
 
/**
 * @var {color}
 * The text color of the active Tab
 */
$tab-color-active: $tab-color !default;
 
/**
 * @var {color}
 * The text color of disabled Tabs
 */
$tab-color-disabled: $tab-color !default;
 
/**
 * @var {number}
 * The font-size of Tabs
 */
$tab-font-size: $font-size !default;
 
/**
 * @var {number}
 * The font-size of hovered Tabs
 */
$tab-font-size-over: $tab-font-size !default;
 
/**
 * @var {number}
 * The font-size of the active Tab
 */
$tab-font-size-active: $tab-font-size !default;
 
/**
 * @var {number}
 * The font-size of disabled Tabs
 */
$tab-font-size-disabled: $tab-font-size !default;
 
/**
 * @var {string}
 * The font-family of Tabs
 */
$tab-font-family: $font-family !default;
 
/**
 * @var {string}
 * The font-family of hovered Tabs
 */
$tab-font-family-over: $tab-font-family !default;
 
/**
 * @var {string}
 * The font-family of the active Tab
 */
$tab-font-family-active: $tab-font-family !default;
 
/**
 * @var {string}
 * The font-family of disabled Tabs
 */
$tab-font-family-disabled: $tab-font-family !default;
 
/**
 * @var {string}
 * The font-weight of Tabs
 */
$tab-font-weight: bold !default;
 
/**
 * @var {string}
 * The font-weight of hovered Tabs
 */
$tab-font-weight-over: $tab-font-weight !default;
 
/**
 * @var {string}
 * The font-weight of the active Tab
 */
$tab-font-weight-active: $tab-font-weight !default;
 
/**
 * @var {string}
 * The font-weight of disabled Tabs
 */
$tab-font-weight-disabled: $tab-font-weight !default;
 
/**
 * @var {string}
 * The Tab cursor
 */
$tab-cursor: pointer !default;
 
/**
 * @var {string}
 * The cursor of disabled Tabs
 */
$tab-cursor-disabled: default !default;
 
/**
 * @var {string/list}
 * The background-gradient for Tabs. 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}.
 */
$tab-background-gradient: 'tab' !default;
 
/**
 * @var {string/list}
 * The background-gradient for hovered Tabs. 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}.
 */
$tab-background-gradient-over: 'tab-over' !default;
 
/**
 * @var {string/list}
 * The background-gradient for the active Tab. 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}.
 */
$tab-background-gradient-active: 'tab-active' !default;
 
/**
 * @var {string/list}
 * The background-gradient for disabled Tabs. 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}.
 */
$tab-background-gradient-disabled: 'tab-disabled' !default;
 
/**
 * @var {list}
 * The border-radius of Tabs
 */
$tab-border-radius: 4px 4px 0 0 !default;
 
/**
 * @var {number}
 * The border-width of Tabs
 */
$tab-border-width: 1px !default;
 
/**
 * @var {number/list}
 * The inner border-width of Tabs
 */
$tab-inner-border-width: 1px 1px 0 !default;
 
/**
 * @var {color}
 * The inner border-color of Tabs
 */
$tab-inner-border-color: #fff !default;
 
/**
 * @var {color}
 * The border-color of Tabs
 */
$tab-border-color: $base-color !default;
 
/**
 * @var {color}
 * The border-color of hovered Tabs
 */
$tab-border-color-over: $tab-border-color !default;
 
/**
 * @var {color}
 * The border-color of the active Tab
 */
$tab-border-color-active: $tab-border-color !default;
 
/**
 * @var {color}
 * The border-color of disabled Tabs
 */
$tab-border-color-disabled: $tab-border-color !default;
 
/**
 * @var {number/list}
 * The padding of Tabs
 */
$tab-padding: 3px 9px !default;
 
/**
 * @var {number/list}
 * The padding of the Tab's text element
 */
$tab-text-padding: 0 !default;
 
/**
 * @var {number}
 * The line-height of Tabs
 */
$tab-line-height: 13px !default;
 
/**
 * @var {number/list}
 * The margin of Tabs. Typically used to add horizontal space between the tabs.
 */
$tab-margin: 0 0 0 2px !default;
 
/**
 * @var {number}
 * The width of the Tab close icon
 */
$tab-closable-icon-width: 11px !default;
 
/**
 * @var {number}
 * The height of the Tab close icon
 */
$tab-closable-icon-height: 11px !default;
 
/**
 * @var {number}
 * The distance to offset the Tab close icon from the top of the tab
 */
$tab-closable-icon-top: 2px !default;
 
/**
 * @var {number}
 * The distance to offset the Tab close icon from the right of the tab
 */
$tab-closable-icon-right: 2px !default;
/**
 * @var {number}
 * the space in between the text and the close button
 */
$tab-closable-icon-spacing: 3px !default;
 
/**
 * @var {number}
 * The opacity of the Tab close icon
 */
$tab-closable-icon-opacity: 1 !default;
 
/**
 * @var {number}
 * The opacity of the Tab close icon when hovered
 */
$tab-closable-icon-opacity-over: 1 !default;
 
/**
 * @var {number}
 * The opacity of the Tab close icon when the Tab is disabled
 */
$tab-closable-icon-opacity-disabled: 1 !default;
 
/**
 * @var {boolean}
 * True to change the x background-postition of the close icon background image on hover
 * to allow for a horizontally aligned background image sprite
 */
$tab-closable-icon-include-hover-background-position: false !default;
 
/**
 * @var {boolean}
 * True to change the x background-postition of the close icon background image on click
 * to allow for a horizontally aligned background image sprite
 */
$tab-closable-icon-include-pressed-background-position: false !default;
 
/**
 * @var {number}
 * The width of Tab icons
 */
$tab-icon-width: 16px !default;
 
/**
 * @var {number}
 * The height of Tab icons
 */
$tab-icon-height: 16px !default;
 
/**
 * @var {number}
 * The space between the Tab icon and the Tab text
 */
$tab-icon-spacing: 4px !default;
 
/**
 * @var {number}
 * The background-position of Tab icons
 */
$tab-icon-background-position: center center !default;
 
/**
 * @var {color}
 * The color of Tab glyph icons
 */
$tab-glyph-color: $tab-color !default;
 
/**
 * @var {color}
 * The color of a Tab glyph icon when the Tab is hovered
 */
$tab-glyph-color-over: $tab-color-over !default;
 
/**
 * @var {color}
 * The color of a Tab glyph icon when the Tab is active
 */
$tab-glyph-color-active: $tab-color-active !default;
 
/**
 * @var {color}
 * The color of a Tab glyph icon when the Tab is disabled
 */
$tab-glyph-color-disabled: $tab-color-disabled !default;
 
/**
 * @var {number}
 * The opacity of a Tab glyph icon
 */
$tab-glyph-opacity: .5 !default;
 
/**
 * @var {number}
 * The opacity of a Tab glyph icon when the Tab is disabled
 */
$tab-glyph-opacity-disabled: .3 !default;
 
/**
 * @var {number}
 * opacity to apply to the tab's main element when the tab is disabled
 */
$tab-opacity-disabled: 1 !default;
 
/**
 * @var {number}
 * opacity to apply to the tab's text element when the tab is disabled
 */
$tab-text-opacity-disabled: .3 !default;
 
/**
 * @var {number}
 * opacity to apply to the tab's icon element when the tab is disabled
 */
$tab-icon-opacity-disabled: .5 !default;
 
/**
 * @var {string}
 * Experimental - Has issues with IE
 * The direction to rotate the contents of a left-aligned tab.  `right` to rotate
 * clockwise or `left` to rotate counterclockwise. Defaults to `left`.
 */
$tab-left-rotate-direction: 'left';
 
/**
 * @var {string}
 * Experimental - Has issues with IE
 * The direction to rotate the contents of a right-aligned tab.  `right` to rotate
 * clockwise or `left` to rotate counterclockwise. Defaults to `right`.
 */
$tab-right-rotate-direction: 'right';
 
/**
 * @var {boolean}
 * True to include the "default" tab UI
 */
$include-tab-default-ui: $include-default-uis !default;