urfu-ui-kit-vanilla 1.2.0 → 1.3.1
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/package.json +1 -1
- package/src/main.css +25 -16
package/package.json
CHANGED
package/src/main.css
CHANGED
|
@@ -5,21 +5,21 @@
|
|
|
5
5
|
font-style: normal;
|
|
6
6
|
font-weight: 400;
|
|
7
7
|
font-display: swap;
|
|
8
|
-
src: url(https://fonts.gstatic.com/s/montserrat/
|
|
8
|
+
src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-.ttf) format('truetype');
|
|
9
9
|
}
|
|
10
10
|
@font-face {
|
|
11
11
|
font-family: 'Montserrat';
|
|
12
12
|
font-style: normal;
|
|
13
13
|
font-weight: 600;
|
|
14
14
|
font-display: swap;
|
|
15
|
-
src: url(https://fonts.gstatic.com/s/montserrat/
|
|
15
|
+
src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-.ttf) format('truetype');
|
|
16
16
|
}
|
|
17
17
|
@font-face {
|
|
18
18
|
font-family: 'Montserrat';
|
|
19
19
|
font-style: normal;
|
|
20
20
|
font-weight: 700;
|
|
21
21
|
font-display: swap;
|
|
22
|
-
src: url(https://fonts.gstatic.com/s/montserrat/
|
|
22
|
+
src: url(https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-.ttf) format('truetype');
|
|
23
23
|
}
|
|
24
24
|
* {
|
|
25
25
|
box-sizing: border-box;
|
|
@@ -79,7 +79,7 @@ button {
|
|
|
79
79
|
font-weight: 400;
|
|
80
80
|
font-stretch: normal;
|
|
81
81
|
font-display: swap;
|
|
82
|
-
src: url(https://fonts.gstatic.com/s/opensans/
|
|
82
|
+
src: url(https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4n.ttf) format('truetype');
|
|
83
83
|
}
|
|
84
84
|
@font-face {
|
|
85
85
|
font-family: 'Open Sans';
|
|
@@ -87,7 +87,7 @@ button {
|
|
|
87
87
|
font-weight: 600;
|
|
88
88
|
font-stretch: normal;
|
|
89
89
|
font-display: swap;
|
|
90
|
-
src: url(https://fonts.gstatic.com/s/opensans/
|
|
90
|
+
src: url(https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4n.ttf) format('truetype');
|
|
91
91
|
}
|
|
92
92
|
@font-face {
|
|
93
93
|
font-family: 'Open Sans';
|
|
@@ -95,7 +95,7 @@ button {
|
|
|
95
95
|
font-weight: 700;
|
|
96
96
|
font-stretch: normal;
|
|
97
97
|
font-display: swap;
|
|
98
|
-
src: url(https://fonts.gstatic.com/s/opensans/
|
|
98
|
+
src: url(https://fonts.gstatic.com/s/opensans/v43/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4n.ttf) format('truetype');
|
|
99
99
|
}
|
|
100
100
|
* {
|
|
101
101
|
font-family: 'Montserrat';
|
|
@@ -127,7 +127,7 @@ button {
|
|
|
127
127
|
.u-button:hover {
|
|
128
128
|
background-color: #0F2B5E;
|
|
129
129
|
}
|
|
130
|
-
.u-button:
|
|
130
|
+
.u-button:active {
|
|
131
131
|
background-color: #0F2B5E;
|
|
132
132
|
}
|
|
133
133
|
.u-button:disabled {
|
|
@@ -147,7 +147,7 @@ button {
|
|
|
147
147
|
border: 2px solid #1E4391;
|
|
148
148
|
}
|
|
149
149
|
.u-button-outline:hover,
|
|
150
|
-
.u-button-outline:
|
|
150
|
+
.u-button-outline:active {
|
|
151
151
|
background-color: #0F2B5E;
|
|
152
152
|
color: #FFFFFF;
|
|
153
153
|
border: 2px solid #0F2B5E;
|
|
@@ -163,7 +163,7 @@ button {
|
|
|
163
163
|
background-color: #EF302B;
|
|
164
164
|
}
|
|
165
165
|
.u-button-danger:hover,
|
|
166
|
-
.u-button-danger:
|
|
166
|
+
.u-button-danger:active {
|
|
167
167
|
background-color: #C0231F;
|
|
168
168
|
}
|
|
169
169
|
.u-button-danger:disabled {
|
|
@@ -176,7 +176,7 @@ button {
|
|
|
176
176
|
border: 2px solid #EF302B;
|
|
177
177
|
}
|
|
178
178
|
.u-button-danger-outline:hover,
|
|
179
|
-
.u-button-danger-outline:
|
|
179
|
+
.u-button-danger-outline:active {
|
|
180
180
|
background-color: #C0231F;
|
|
181
181
|
color: #FFFFFF;
|
|
182
182
|
border: 2px solid #C0231F;
|
|
@@ -193,7 +193,7 @@ button {
|
|
|
193
193
|
color: #222222;
|
|
194
194
|
}
|
|
195
195
|
.u-button-simple:hover,
|
|
196
|
-
.u-button-simple:
|
|
196
|
+
.u-button-simple:active {
|
|
197
197
|
border: 2px solid #D3D3D3;
|
|
198
198
|
background-color: #D3D3D3;
|
|
199
199
|
color: #222222;
|
|
@@ -212,7 +212,7 @@ button {
|
|
|
212
212
|
width: 48px;
|
|
213
213
|
}
|
|
214
214
|
.u-button-icon:hover,
|
|
215
|
-
.u-button-icon:
|
|
215
|
+
.u-button-icon:active {
|
|
216
216
|
border: 1px solid #1E4391;
|
|
217
217
|
background-color: #FFFFFF;
|
|
218
218
|
color: #1E4391;
|
|
@@ -281,7 +281,7 @@ button {
|
|
|
281
281
|
color: #1E4391;
|
|
282
282
|
}
|
|
283
283
|
.u-button-text:hover,
|
|
284
|
-
.u-button-text:
|
|
284
|
+
.u-button-text:active {
|
|
285
285
|
color: #0F2B5E;
|
|
286
286
|
}
|
|
287
287
|
.u-button-text:disabled {
|
|
@@ -308,7 +308,7 @@ button {
|
|
|
308
308
|
color: #748AB9;
|
|
309
309
|
}
|
|
310
310
|
.u-button-text-table:hover,
|
|
311
|
-
.u-button-text-table:
|
|
311
|
+
.u-button-text-table:active {
|
|
312
312
|
color: #0F2B5E;
|
|
313
313
|
}
|
|
314
314
|
.u-button-text-table:disabled {
|
|
@@ -319,7 +319,7 @@ button {
|
|
|
319
319
|
color: #E54B6A;
|
|
320
320
|
}
|
|
321
321
|
.u-button-text-danger:hover,
|
|
322
|
-
.u-button-text-danger:
|
|
322
|
+
.u-button-text-danger:active {
|
|
323
323
|
color: #B62C48;
|
|
324
324
|
}
|
|
325
325
|
.u-button-text-danger:disabled {
|
|
@@ -331,7 +331,7 @@ button {
|
|
|
331
331
|
color: #F58380;
|
|
332
332
|
}
|
|
333
333
|
.u-button-text-danger-table:hover,
|
|
334
|
-
.u-button-text-danger-table:
|
|
334
|
+
.u-button-text-danger-table:active {
|
|
335
335
|
color: #E54B6A;
|
|
336
336
|
}
|
|
337
337
|
.u-button-text-danger-table:disabled {
|
|
@@ -525,6 +525,14 @@ button {
|
|
|
525
525
|
/* Microsoft Edge */
|
|
526
526
|
color: #545454;
|
|
527
527
|
}
|
|
528
|
+
.u-textarea::-webkit-scrollbar-thumb {
|
|
529
|
+
height: calc(clamp(7px, 0.01vh, 16px) + 3px);
|
|
530
|
+
background-clip: content-box;
|
|
531
|
+
border: 2px solid transparent;
|
|
532
|
+
}
|
|
533
|
+
.u-textarea::-webkit-scrollbar {
|
|
534
|
+
width: calc(clamp(7px, 0.01vw, 16px) + 3px);
|
|
535
|
+
}
|
|
528
536
|
.u-number {
|
|
529
537
|
display: inline-block;
|
|
530
538
|
position: relative;
|
|
@@ -1558,6 +1566,7 @@ button {
|
|
|
1558
1566
|
overflow: hidden;
|
|
1559
1567
|
display: -webkit-box;
|
|
1560
1568
|
-webkit-line-clamp: 2;
|
|
1569
|
+
line-clamp: 2;
|
|
1561
1570
|
-webkit-box-orient: vertical;
|
|
1562
1571
|
}
|
|
1563
1572
|
.u-file-cell-content-props {
|