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
/**
 * @class Ext.form.Labelable
 */
 
/**
 * @var {color}
 * The text color of form field labels
 */
$form-label-font-color: $color !default;
 
/**
 * @var {string}
 * The font-weight of form field labels
 */
$form-label-font-weight: normal !default;
 
/**
 * @var {number}
 * The font-size of form field labels
 */
$form-label-font-size: $font-size !default;
 
/**
 * @var {string}
 * The font-family of form field labels
 */
$form-label-font-family: $font-family !default;
 
/**
 * @var {number}
 * The line-height of form field labels
 */
$form-label-line-height: round($form-label-font-size * 1.15) !default;
 
// private
$form-label-font: $form-label-font-weight #{$form-label-font-size}/#{$form-label-line-height} $form-label-font-family !default;
 
/**
 * @var {color}
 * The text color of toolbar field labels
 */
$form-toolbar-label-color: $color !default;
 
/**
 * @var {string}
 * The font-weight of toolbar field labels
 */
$form-toolbar-label-font-weight: normal !default;
 
/**
 * @var {number}
 * The font-size of toolbar field labels
 */
$form-toolbar-label-font-size: $font-size !default;
 
/**
 * @var {string}
 * The font-family of toolbar field labels
 */
$form-toolbar-label-font-family: $font-family !default;
 
/**
 * @var {number}
 * The line-height of toolbar field labels
 */
$form-toolbar-label-line-height: round($form-toolbar-label-font-size * 1.15) !default;
 
// private
$form-toolbar-label-font: $form-toolbar-label-font-weight #{$form-toolbar-label-font-size}/#{$form-toolbar-label-line-height} $form-toolbar-label-font-family !default;
 
/**
 * @var {number}
 * Width for form error icons.
 */
$form-error-icon-width: 16px !default;
 
/**
 * @var {number}
 * Height for form error icons.
 */
$form-error-icon-height: 16px !default;
 
/**
 * @var {number/list}
 * Margin for error icons that are aligned to the side of the field
 */
$form-error-icon-side-margin: 0 1px !default;
 
/**
 * @var {number}
 * The space between the icon and the message for errors that display under the field
 */
$form-error-under-icon-spacing: 4px !default;
 
/**
 * @var {number/list}
 * The padding on errors that display under the form field
 */
$form-error-under-padding: 2px 2px 2px 0 !default;
 
/**
 * @var {color}
 * The text color of form error messages
 */
$form-error-msg-color: $form-field-invalid-border-color !default;
 
/**
 * @var {string}
 * The font-weight of form error messages
 */
$form-error-msg-font-weight: normal !default;
 
/**
 * @var {number}
 * The font-size of form error messages
 */
$form-error-msg-font-size: $font-size !default;
 
/**
 * @var {string}
 * The font-family of form error messages
 */
$form-error-msg-font-family: $font-family !default;
 
// private
$form-error-msg-font: $form-error-msg-font-weight $form-error-msg-font-size $form-error-msg-font-family !default;
 
/**
 * @var {number}
 * The line-height of form error messages
 */
$form-error-msg-line-height: $form-error-icon-height !default;
 
// private
$form-exclamation-icon: 'form/exclamation' !default;
 
/**
 * @var {measurement} $form-item-margin-bottom
 * The bottom margin to apply to form items when in auto, anchor, vbox, or table layout
 */
$form-item-margin-bottom: 5px !default;