urfu-ui-kit-vanilla 1.0.4 → 1.0.6
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/playground/index.html +2 -0
- package/src/main.css +32 -4
- package/src/main.less +2 -2
- package/src/styles/components/status.less +11 -0
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,9 +59,9 @@
|
|
|
59
59
|
display: none;
|
|
60
60
|
}
|
|
61
61
|
* {
|
|
62
|
-
scrollbar-color: transparent
|
|
62
|
+
scrollbar-color: #D3D3D3 transparent;
|
|
63
63
|
/*Цвет скролла, цвет ползунка*/
|
|
64
|
-
scrollbar-width:
|
|
64
|
+
scrollbar-width: thin;
|
|
65
65
|
/*Толщина скролла thin, auto*/
|
|
66
66
|
}
|
|
67
67
|
.u-button {
|
|
@@ -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");
|
|
@@ -1141,8 +1169,8 @@ h5 {
|
|
|
1141
1169
|
display: none;
|
|
1142
1170
|
}
|
|
1143
1171
|
* {
|
|
1144
|
-
scrollbar-color: transparent
|
|
1172
|
+
scrollbar-color: #D3D3D3 transparent;
|
|
1145
1173
|
/*Цвет скролла, цвет ползунка*/
|
|
1146
|
-
scrollbar-width:
|
|
1174
|
+
scrollbar-width: thin;
|
|
1147
1175
|
/*Толщина скролла thin, auto*/
|
|
1148
1176
|
}
|
package/src/main.less
CHANGED
|
@@ -57,8 +57,8 @@
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
* {
|
|
60
|
-
scrollbar-color: transparent
|
|
61
|
-
scrollbar-width:
|
|
60
|
+
scrollbar-color: #D3D3D3 transparent ; /*Цвет скролла, цвет ползунка*/
|
|
61
|
+
scrollbar-width: thin; /*Толщина скролла thin, auto*/
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
// страница показа
|