allaw-ui 3.9.3 → 3.9.4
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.
|
@@ -1,23 +1,17 @@
|
|
|
1
1
|
.other-status-tag {
|
|
2
|
-
height:
|
|
2
|
+
height: 26px;
|
|
3
3
|
display: inline-flex;
|
|
4
|
-
padding: 8px
|
|
4
|
+
padding: 8px 10px;
|
|
5
5
|
justify-content: center;
|
|
6
6
|
align-items: center;
|
|
7
7
|
gap: 10px;
|
|
8
|
-
border-radius:
|
|
8
|
+
border-radius: 8px;
|
|
9
9
|
font-family: "Open Sans", sans-serif;
|
|
10
10
|
font-size: 14px;
|
|
11
11
|
font-style: normal;
|
|
12
12
|
font-weight: 600;
|
|
13
13
|
line-height: normal;
|
|
14
14
|
text-align: center;
|
|
15
|
-
background: rgba(255, 255, 255, 0.35);
|
|
16
|
-
box-shadow: 0 2px 8px 0 rgba(37, 190, 235, 0.08), 0 1.5px 4px 0 rgba(114, 142, 167, 0.06);
|
|
17
|
-
border: 1.5px solid rgba(200, 220, 235, 0.25);
|
|
18
|
-
backdrop-filter: blur(6px) saturate(140%);
|
|
19
|
-
-webkit-backdrop-filter: blur(6px) saturate(140%);
|
|
20
|
-
transition: border 0.18s, box-shadow 0.18s, background 0.18s;
|
|
21
15
|
}
|
|
22
16
|
|
|
23
17
|
.other-status-tag-label {
|
|
@@ -28,14 +22,17 @@
|
|
|
28
22
|
}
|
|
29
23
|
|
|
30
24
|
.other-status-tag.readonly {
|
|
31
|
-
background:
|
|
25
|
+
background: var(--tag-white, #eef5fc);
|
|
32
26
|
color: var(--Primary-Dark-grey, var(--dark-grey, #456073));
|
|
33
|
-
border: 1.5px solid rgba(200, 220, 235, 0.25);
|
|
34
27
|
}
|
|
35
28
|
|
|
36
29
|
.other-status-tag.editable {
|
|
37
|
-
|
|
38
|
-
|
|
30
|
+
height: 35px;
|
|
31
|
+
padding: 8px;
|
|
32
|
+
gap: 4px;
|
|
33
|
+
flex-shrink: 0;
|
|
34
|
+
border: 1px solid #000;
|
|
35
|
+
background: #fff;
|
|
39
36
|
color: var(--Primary-Mid-black, var(--primary-black, #171e25));
|
|
40
37
|
font-weight: 400;
|
|
41
38
|
cursor: pointer;
|
|
@@ -43,7 +40,6 @@
|
|
|
43
40
|
|
|
44
41
|
.other-status-tag.editable:hover {
|
|
45
42
|
background: rgba(255, 255, 255, 0.6);
|
|
46
|
-
border: 1.5px solid var(--bleu-allaw, #25beeb);
|
|
47
43
|
}
|
|
48
44
|
|
|
49
45
|
.other-status-tag.editable .icon {
|
|
@@ -73,9 +69,8 @@
|
|
|
73
69
|
}
|
|
74
70
|
|
|
75
71
|
.other-status-tag.information.information-color-blue {
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
color: var(--bleu-allaw, #25beeb);
|
|
72
|
+
border: 1px solid var(--tag-blue, #1985e8);
|
|
73
|
+
color: var(--tag-blue, #1985e8);
|
|
79
74
|
}
|
|
80
75
|
|
|
81
76
|
.other-status-tag.information.information-color-green {
|