ros.grant.common 2.0.1627 → 2.0.1628
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.
|
@@ -31,10 +31,16 @@
|
|
|
31
31
|
&.locale-en {
|
|
32
32
|
&:before {
|
|
33
33
|
content: "saved";
|
|
34
|
+
color: var(--Green);
|
|
35
|
+
font-weight: 500;
|
|
34
36
|
-moz-animation: cssAnimationContentSaveEn 0s ease-in 3s forwards;
|
|
35
37
|
-webkit-animation: cssAnimationContentSaveEn 0s ease-in 3s forwards;
|
|
36
38
|
-o-animation: cssAnimationContentSaveEn 0s ease-in 3s forwards;
|
|
37
39
|
animation: cssAnimationContentSaveEn 0s ease-in 3s forwards;
|
|
40
|
+
-webkit-animation-fill-mode: forwards;
|
|
41
|
+
animation-fill-mode: forwards;
|
|
42
|
+
position: absolute;
|
|
43
|
+
right: 0;
|
|
38
44
|
}
|
|
39
45
|
}
|
|
40
46
|
|
|
@@ -119,6 +125,8 @@
|
|
|
119
125
|
&.locale-en {
|
|
120
126
|
&:before {
|
|
121
127
|
content: "error";
|
|
128
|
+
color: var(--Red);
|
|
129
|
+
font-weight: 500;
|
|
122
130
|
}
|
|
123
131
|
}
|
|
124
132
|
}
|
|
@@ -141,7 +149,15 @@
|
|
|
141
149
|
|
|
142
150
|
&.locale-en {
|
|
143
151
|
&:before {
|
|
152
|
+
font-size: 12px;
|
|
153
|
+
top: 2px;
|
|
154
|
+
right: 5px;
|
|
155
|
+
position: absolute;
|
|
156
|
+
z-index: 2;
|
|
144
157
|
content: "invalid";
|
|
158
|
+
color: var(--Red);
|
|
159
|
+
font-weight: 500;
|
|
160
|
+
padding: 0 4px;
|
|
145
161
|
}
|
|
146
162
|
}
|
|
147
163
|
|
package/package.json
CHANGED