@ldmjs/ui 1.0.73 → 1.0.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/css/index.css +11 -11
- package/dist/index.js +938 -592
- package/dist/scss/_inputs.scss +12 -0
- package/dist/scss/_variables.scss +2 -0
- package/package.json +1 -1
package/dist/scss/_inputs.scss
CHANGED
|
@@ -122,7 +122,19 @@ body {
|
|
|
122
122
|
.v-input__details {
|
|
123
123
|
opacity: 1;
|
|
124
124
|
}
|
|
125
|
+
.v-input__append {
|
|
126
|
+
opacity: 1;
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
&--horizontal {
|
|
130
|
+
.v-input__append {
|
|
131
|
+
margin-inline-start: 0;
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
.v-input__append {
|
|
135
|
+
padding-top: 0;
|
|
125
136
|
}
|
|
137
|
+
|
|
126
138
|
}
|
|
127
139
|
.v-field__input {
|
|
128
140
|
display: flex;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
$font-size: 12px !default; // основной шрифт приложения
|
|
2
2
|
$input-height: 28px !default; // высота атомарного элемента ui (button, input)
|
|
3
|
+
$icon-height: 24px !default; // размеры обычной иконки
|
|
3
4
|
$border-radius: 4px !default; // радиус скругления атомарного элемента ui
|
|
4
5
|
$chip-height: 20px !default; // высота элемента chip
|
|
5
6
|
$toolbar-height: 44px !default; // высота тулбара
|
|
@@ -24,6 +25,7 @@ $shadow-4: 0px 16px 20px 0px rgba(0, 0, 0, 0.20);
|
|
|
24
25
|
--toolbar-height: #{$toolbar-height};
|
|
25
26
|
--toolbar-border-radius: #{$toolbar-border-radius};
|
|
26
27
|
--pager-height: #{$pager-height};
|
|
28
|
+
--icon-height: #{$icon-height};
|
|
27
29
|
--shadow-1: #{$shadow-1};
|
|
28
30
|
--shadow-2: #{$shadow-2};
|
|
29
31
|
--shadow-3: #{$shadow-3};
|