urfu-ui-kit-vanilla 1.3.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 +9 -0
package/package.json
CHANGED
package/src/main.css
CHANGED
|
@@ -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 {
|