ros.grant.common 2.0.1322 → 2.0.1325
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.
|
@@ -399,9 +399,25 @@
|
|
|
399
399
|
display: flex;
|
|
400
400
|
align-items: center;
|
|
401
401
|
justify-content: center;
|
|
402
|
+
position: relative;
|
|
403
|
+
|
|
404
|
+
&:after {
|
|
405
|
+
content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' width='24px' viewBox='0 0 24 24'%3E%3Cdefs/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M20 21v-2c0-2.2091-1.7909-4-4-4H8c-2.20914 0-4 1.7909-4 4v2'/%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M12 11c2.2091 0 4-1.79086 4-4s-1.7909-4-4-4C9.79086 3 8 4.79086 8 7s1.79086 4 4 4z' clip-rule='evenodd'/%3E%3C/svg%3E");
|
|
406
|
+
position: absolute;
|
|
407
|
+
width: 100%;
|
|
408
|
+
height: 100%;
|
|
409
|
+
display: flex;
|
|
410
|
+
align-items: center;
|
|
411
|
+
justify-content: center;
|
|
412
|
+
background: linear-gradient(0deg, rgba(1, 1, 1, 0.5), rgba(1, 1, 1, 0.5));
|
|
413
|
+
transition: 0.2s;
|
|
414
|
+
z-index: 1;
|
|
415
|
+
}
|
|
402
416
|
|
|
403
417
|
img {
|
|
404
418
|
max-width: 100%;
|
|
419
|
+
position: relative;
|
|
420
|
+
z-index: 2;
|
|
405
421
|
}
|
|
406
422
|
}
|
|
407
423
|
|
|
@@ -409,7 +425,7 @@
|
|
|
409
425
|
&__role {
|
|
410
426
|
font-size: 12px;
|
|
411
427
|
line-height: 16px;
|
|
412
|
-
color: var(--
|
|
428
|
+
color: var(--Secondary);
|
|
413
429
|
}
|
|
414
430
|
|
|
415
431
|
&__name {
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
.mrx-editor {
|
|
2
|
+
.error-message {
|
|
3
|
+
font-weight: 400;
|
|
4
|
+
font-size: 12px;
|
|
5
|
+
line-height: 16px;
|
|
6
|
+
color: var(--Red)
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
&.mrx-input-error {
|
|
10
|
+
.ck.ck-editor__main>.ck-editor__editable {
|
|
11
|
+
border-color: var(--Red);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
&.mrx-pouring-error {
|
|
16
|
+
.ck.ck-editor__main>.ck-editor__editable {
|
|
17
|
+
background-color: var(--Warning);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.mrx-pouring-success {
|
|
22
|
+
.ck.ck-editor__main>.ck-editor__editable {
|
|
23
|
+
background-color: var(--Good);
|
|
24
|
+
border: 1px solid #60A772;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|
package/package.json
CHANGED