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
<!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-form-Labelable'>/**
</span> * @class Ext.form.Labelable
 */
 
<span id='Ext-form-Labelable-css_var-S-form-label-font-color'>/**
</span> * @var {color}
 * The text color of form field labels
 */
$form-label-font-color: $color !default;
 
<span id='Ext-form-Labelable-css_var-S-form-label-font-weight'>/**
</span> * @var {string}
 * The font-weight of form field labels
 */
$form-label-font-weight: normal !default;
 
<span id='Ext-form-Labelable-css_var-S-form-label-font-size'>/**
</span> * @var {number}
 * The font-size of form field labels
 */
$form-label-font-size: $font-size !default;
 
<span id='Ext-form-Labelable-css_var-S-form-label-font-family'>/**
</span> * @var {string}
 * The font-family of form field labels
 */
$form-label-font-family: $font-family !default;
 
<span id='Ext-form-Labelable-css_var-S-form-label-line-height'>/**
</span> * @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;
 
<span id='Ext-form-Labelable-css_var-S-form-toolbar-label-color'>/**
</span> * @var {color}
 * The text color of toolbar field labels
 */
$form-toolbar-label-color: $color !default;
 
<span id='Ext-form-Labelable-css_var-S-form-toolbar-label-font-weight'>/**
</span> * @var {string}
 * The font-weight of toolbar field labels
 */
$form-toolbar-label-font-weight: normal !default;
 
<span id='Ext-form-Labelable-css_var-S-form-toolbar-label-font-size'>/**
</span> * @var {number}
 * The font-size of toolbar field labels
 */
$form-toolbar-label-font-size: $font-size !default;
 
<span id='Ext-form-Labelable-css_var-S-form-toolbar-label-font-family'>/**
</span> * @var {string}
 * The font-family of toolbar field labels
 */
$form-toolbar-label-font-family: $font-family !default;
 
<span id='Ext-form-Labelable-css_var-S-form-toolbar-label-line-height'>/**
</span> * @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;
 
<span id='Ext-form-Labelable-css_var-S-form-error-icon-width'>/**
</span> * @var {number}
 * Width for form error icons.
 */
$form-error-icon-width: 16px !default;
 
<span id='Ext-form-Labelable-css_var-S-form-error-icon-height'>/**
</span> * @var {number}
 * Height for form error icons.
 */
$form-error-icon-height: 16px !default;
 
<span id='Ext-form-Labelable-css_var-S-form-error-icon-side-margin'>/**
</span> * @var {number/list}
 * Margin for error icons that are aligned to the side of the field
 */
$form-error-icon-side-margin: 0 1px !default;
 
<span id='Ext-form-Labelable-css_var-S-form-error-under-icon-spacing'>/**
</span> * @var {number}
 * The space between the icon and the message for errors that display under the field
 */
$form-error-under-icon-spacing: 4px !default;
 
<span id='Ext-form-Labelable-css_var-S-form-error-under-padding'>/**
</span> * @var {number/list}
 * The padding on errors that display under the form field
 */
$form-error-under-padding: 2px 2px 2px 0 !default;
 
<span id='Ext-form-Labelable-css_var-S-form-error-msg-color'>/**
</span> * @var {color}
 * The text color of form error messages
 */
$form-error-msg-color: $form-field-invalid-border-color !default;
 
<span id='Ext-form-Labelable-css_var-S-form-error-msg-font-weight'>/**
</span> * @var {string}
 * The font-weight of form error messages
 */
$form-error-msg-font-weight: normal !default;
 
<span id='Ext-form-Labelable-css_var-S-form-error-msg-font-size'>/**
</span> * @var {number}
 * The font-size of form error messages
 */
$form-error-msg-font-size: $font-size !default;
 
<span id='Ext-form-Labelable-css_var-S-form-error-msg-font-family'>/**
</span> * @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;
 
<span id='Ext-form-Labelable-css_var-S-form-error-msg-line-height'>/**
</span> * @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;
 
<span id='Ext-form-Labelable-css_var-S-form-item-margin-bottom'>/**
</span> * @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;</pre>
</body>
</html>