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
/**
 * @class Ext.form.FieldSet
 */
 
/**
 * @var {number}
 * The font-size of the FieldSet header
 */
$fieldset-header-font-size: ceil($font-size * .9) !default;
 
/**
 * @var {string}
 * The font-weight of the FieldSet header
 */
$fieldset-header-font-weight: bold !default;
 
/**
 * @var {string}
 * The font-family of the FieldSet header
 */
$fieldset-header-font-family: $font-family !default;
 
/**
 * @var {number/string}
 * The line-height of the FieldSet header
 */
$fieldset-header-line-height: 14px !default;
 
// private
$fieldset-header-font: #{$fieldset-header-font-size}/#{$fieldset-header-line-height} $fieldset-header-font-weight $fieldset-header-font-family !default;
 
/**
 * @var {color}
 * The text color of the FieldSet header
 */
$fieldset-header-color: adjust-color($base-color, $hue: 3.785deg, $saturation: 18.194%, $lightness: -52.745%) !default;
 
/**
 * @var {number}
 * The border-width of the FieldSet
 */
$fieldset-border-width: 1px !default;
 
/**
 * @var {string}
 * The border-style of the FieldSet
 */
$fieldset-border-style: solid !default;
 
/**
 * @var {color}
 * The border-color of the FieldSet
 */
$fieldset-border-color: #B5B8C8 !default;
 
// private
$fieldset-border: $fieldset-border-width $fieldset-border-style $fieldset-border-color !default;
 
/**
 * @var {number/list}
 * The FieldSet's padding
 */
$fieldset-padding: 0 10px !default;
 
/**
 * @var {number/list}
 * The FieldSet's margin
 */
$fieldset-margin: 0 0 10px !default;
 
/**
 * @var {number/list}
 * The padding to apply to the FieldSet's header
 */
$fieldset-header-padding: 0 3px 1px !default;
 
/**
 * @var {number/list}
 * The margin to apply to the FieldSet's collapse tool
 */
$fieldset-collapse-tool-margin: 1px 3px 0 0 !default;
 
/**
 * @var {number/list}
 * The padding to apply to the FieldSet's collapse tool
 */
$fieldset-collapse-tool-padding: 0 !default;
 
/**
 * @var {number/list}
 * The margin to apply to the FieldSet's checkbox (for FieldSets that use
 * {@link #checkboxToggle})
 */
$fieldset-checkbox-margin: $fieldset-collapse-tool-margin !default;
 
/**
 * @var {number}
 * The size of the FieldSet's collapse tool
 */
$fieldset-collapse-tool-size: 15px !default;
 
/**
 * @var {string} $fieldset-collapse-tool-background-image
 * The background-image to use for the collapse tool. If null the default tool
 * sprite will be used.  Defaults to null.
 */
$fieldset-collapse-tool-background-image: null !default;
 
// private
$fieldset-collapse-tool-background-position: 0 ($fieldset-collapse-tool-size * -4) !default;
 
// private
$fieldset-collapse-tool-background-position-over: (-$fieldset-collapse-tool-size) ($fieldset-collapse-tool-size * -4) !default;
 
// private
$fieldset-collapse-tool-background-position-collapsed: 0 ($fieldset-collapse-tool-size * -5) !default;
 
// private
$fieldset-collapse-tool-background-position-collapsed-over: (-$fieldset-collapse-tool-size) ($fieldset-collapse-tool-size * -5) !default;