urfu-ui-kit-vanilla 1.0.3 → 1.0.5
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
CHANGED
package/playground/index.html
CHANGED
|
@@ -85,6 +85,8 @@
|
|
|
85
85
|
<span class="u-status-neutral">status</span>
|
|
86
86
|
<span class="u-status-success">status</span>
|
|
87
87
|
<span class="u-status-danger">status</span>
|
|
88
|
+
<span class="u-status-intermediate">status</span>
|
|
89
|
+
<span class="u-status-prepared">status</span>
|
|
88
90
|
</section>
|
|
89
91
|
<h2>Inputs</h2>
|
|
90
92
|
<section>
|
package/src/main.css
CHANGED
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
display: none;
|
|
60
60
|
}
|
|
61
61
|
* {
|
|
62
|
-
scrollbar-color: transparent
|
|
62
|
+
scrollbar-color: #D3D3D3 transparent;
|
|
63
63
|
/*Цвет скролла, цвет ползунка*/
|
|
64
64
|
scrollbar-width: 8px;
|
|
65
65
|
/*Толщина скролла thin, auto*/
|
|
@@ -828,6 +828,34 @@
|
|
|
828
828
|
background-color: #fdeaea;
|
|
829
829
|
color: #ef302b;
|
|
830
830
|
}
|
|
831
|
+
.u-status-intermediate {
|
|
832
|
+
display: flex;
|
|
833
|
+
justify-content: center;
|
|
834
|
+
align-items: center;
|
|
835
|
+
width: max-content;
|
|
836
|
+
font-size: 12px;
|
|
837
|
+
line-height: 140%;
|
|
838
|
+
font-weight: 400;
|
|
839
|
+
height: 27px;
|
|
840
|
+
padding: 0 12px;
|
|
841
|
+
border-radius: 8px;
|
|
842
|
+
background-color: #FCF4FF;
|
|
843
|
+
color: #742C8E;
|
|
844
|
+
}
|
|
845
|
+
.u-status-prepared {
|
|
846
|
+
display: flex;
|
|
847
|
+
justify-content: center;
|
|
848
|
+
align-items: center;
|
|
849
|
+
width: max-content;
|
|
850
|
+
font-size: 12px;
|
|
851
|
+
line-height: 140%;
|
|
852
|
+
font-weight: 400;
|
|
853
|
+
height: 27px;
|
|
854
|
+
padding: 0 12px;
|
|
855
|
+
border-radius: 8px;
|
|
856
|
+
background-color: #E8FFFF;
|
|
857
|
+
color: #007171;
|
|
858
|
+
}
|
|
831
859
|
.u-message {
|
|
832
860
|
background-color: #E7F2FF;
|
|
833
861
|
background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' stroke='%231E4391' stroke-width='2'%3E%3C/circle%3E%3Crect x='9' y='8' width='2' height='8' rx='1' fill='%231E4391'%3E%3C/rect%3E%3Ccircle cx='10' cy='6' r='1' fill='%231E4391'%3E%3C/circle%3E%3C/svg%3E");
|
|
@@ -1041,13 +1069,6 @@
|
|
|
1041
1069
|
.fw-600 {
|
|
1042
1070
|
font-weight: 600;
|
|
1043
1071
|
}
|
|
1044
|
-
h1,
|
|
1045
|
-
h2,
|
|
1046
|
-
h3,
|
|
1047
|
-
h4,
|
|
1048
|
-
h5 {
|
|
1049
|
-
margin: 0;
|
|
1050
|
-
}
|
|
1051
1072
|
h1 {
|
|
1052
1073
|
font-weight: 600;
|
|
1053
1074
|
font-size: 52px;
|
|
@@ -1148,7 +1169,7 @@ h5 {
|
|
|
1148
1169
|
display: none;
|
|
1149
1170
|
}
|
|
1150
1171
|
* {
|
|
1151
|
-
scrollbar-color: transparent
|
|
1172
|
+
scrollbar-color: #D3D3D3 transparent;
|
|
1152
1173
|
/*Цвет скролла, цвет ползунка*/
|
|
1153
1174
|
scrollbar-width: 8px;
|
|
1154
1175
|
/*Толщина скролла thin, auto*/
|
package/src/main.less
CHANGED