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
@@ -3,7 +3,7 @@
3
3
  "description": "UrFU UI-Kit for Vanilla Web",
4
4
  "license": "UNLICENSED",
5
5
  "private": false,
6
- "version": "1.0.3",
6
+ "version": "1.0.5",
7
7
  "type": "module",
8
8
  "repository": {
9
9
  "type": "git",
@@ -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 #748AB9;
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 #748AB9;
1172
+ scrollbar-color: #D3D3D3 transparent;
1152
1173
  /*Цвет скролла, цвет ползунка*/
1153
1174
  scrollbar-width: 8px;
1154
1175
  /*Толщина скролла thin, auto*/
package/src/main.less CHANGED
@@ -57,7 +57,7 @@
57
57
  }
58
58
 
59
59
  * {
60
- scrollbar-color: transparent #748AB9; /*Цвет скролла, цвет ползунка*/
60
+ scrollbar-color: #D3D3D3 transparent ; /*Цвет скролла, цвет ползунка*/
61
61
  scrollbar-width: 8px; /*Толщина скролла thin, auto*/
62
62
  }
63
63
 
@@ -43,3 +43,14 @@
43
43
  color: #ef302b;
44
44
  }
45
45
 
46
+ .u-status-intermediate {
47
+ .status;
48
+ background-color: #FCF4FF;
49
+ color: #742C8E;
50
+ }
51
+
52
+ .u-status-prepared {
53
+ .status;
54
+ background-color: #E8FFFF;
55
+ color: #007171;
56
+ }
@@ -1,7 +1,4 @@
1
1
  @import "../const/fonts.less";
2
- h1, h2, h3, h4, h5 {
3
- margin: 0;
4
- }
5
2
  h1 {
6
3
  .h1;
7
4
  }