allaw-ui 3.8.2 → 3.8.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.
|
@@ -10,25 +10,42 @@
|
|
|
10
10
|
justify-content: space-between;
|
|
11
11
|
align-items: flex-start;
|
|
12
12
|
flex-shrink: 0;
|
|
13
|
-
border-radius:
|
|
14
|
-
background:
|
|
15
|
-
box-shadow:
|
|
13
|
+
border-radius: 18px;
|
|
14
|
+
background: rgba(255, 255, 255, 1);
|
|
15
|
+
box-shadow:
|
|
16
|
+
0 4px 24px rgba(0, 0, 0, 0.06),
|
|
17
|
+
0 1px 2px rgba(0, 0, 0, 0.04);
|
|
16
18
|
cursor: pointer;
|
|
17
|
-
transition: all 0.
|
|
19
|
+
transition: all 0.18s cubic-bezier(0.4, 0.2, 0.2, 1);
|
|
18
20
|
width: 100%;
|
|
19
|
-
border:
|
|
20
|
-
|
|
21
|
+
border: 1px solid rgba(200, 220, 235, 0.25);
|
|
22
|
+
backdrop-filter: blur(6px) saturate(140%);
|
|
23
|
+
-webkit-backdrop-filter: blur(6px) saturate(140%);
|
|
24
|
+
position: relative;
|
|
25
|
+
overflow: hidden;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.case-card-wrapper::before {
|
|
29
|
+
content: "";
|
|
30
|
+
position: absolute;
|
|
31
|
+
inset: 0;
|
|
32
|
+
border-radius: 18px;
|
|
33
|
+
pointer-events: none;
|
|
34
|
+
border: 1px solid rgba(255,255,255,0.10);
|
|
35
|
+
z-index: 1;
|
|
21
36
|
}
|
|
22
37
|
|
|
23
38
|
.case-card-wrapper:hover {
|
|
24
|
-
box-shadow:
|
|
25
|
-
transform: scale(1.01);
|
|
26
|
-
border:
|
|
39
|
+
box-shadow: 0 6px 18px 0 rgba(37, 190, 235, 0.13), 0 2px 8px 0 rgba(114, 142, 167, 0.08);
|
|
40
|
+
transform: scale(1.01) translateY(-2px);
|
|
41
|
+
border: 1.5px solid var(--bleu-allaw, #25beeb);
|
|
42
|
+
background: rgba(255,255,255,0.28);
|
|
27
43
|
}
|
|
28
44
|
|
|
29
45
|
.case-card-wrapper:active {
|
|
30
|
-
transform: scale(1.
|
|
31
|
-
background
|
|
46
|
+
transform: scale(1.01);
|
|
47
|
+
background: rgba(246, 252, 254, 0.45);
|
|
48
|
+
border: 1.5px solid var(--bleu-allaw, #25beeb);
|
|
32
49
|
}
|
|
33
50
|
|
|
34
51
|
.case-card-wrapper.case-card-mobile,
|
|
@@ -44,6 +61,8 @@
|
|
|
44
61
|
align-self: stretch;
|
|
45
62
|
width: calc(100% - 100px);
|
|
46
63
|
overflow: hidden;
|
|
64
|
+
position: relative;
|
|
65
|
+
z-index: 2;
|
|
47
66
|
}
|
|
48
67
|
|
|
49
68
|
.case-card-header {
|
|
@@ -56,12 +75,13 @@
|
|
|
56
75
|
}
|
|
57
76
|
|
|
58
77
|
.case-card-client-name {
|
|
59
|
-
color: var(--
|
|
78
|
+
color: var(--mid-grey, #728ea7);
|
|
60
79
|
font-family: "Open Sans", sans-serif;
|
|
61
80
|
font-size: 12px;
|
|
62
81
|
font-weight: 400;
|
|
63
82
|
line-height: 15px;
|
|
64
83
|
letter-spacing: 0.3px;
|
|
84
|
+
text-shadow: 0 1px 2px rgba(255,255,255,0.5);
|
|
65
85
|
}
|
|
66
86
|
|
|
67
87
|
.case-card-title {
|
|
@@ -69,14 +89,15 @@
|
|
|
69
89
|
overflow: hidden;
|
|
70
90
|
text-overflow: ellipsis;
|
|
71
91
|
white-space: nowrap;
|
|
72
|
-
color: var(--
|
|
73
|
-
font-family:
|
|
74
|
-
font-size:
|
|
92
|
+
color: var(--noir, #171e25);
|
|
93
|
+
font-family: "Popins", sans-serif;
|
|
94
|
+
font-size: 18px;
|
|
75
95
|
font-weight: 600;
|
|
76
96
|
line-height: 1.2;
|
|
77
97
|
letter-spacing: 0.1px;
|
|
78
98
|
padding-top: 4px;
|
|
79
99
|
margin: 0;
|
|
100
|
+
text-shadow: 0 1px 2px rgba(255,255,255,0.4);
|
|
80
101
|
}
|
|
81
102
|
|
|
82
103
|
.case-card-title.closed {
|
|
@@ -91,27 +112,28 @@
|
|
|
91
112
|
height: 100%;
|
|
92
113
|
min-width: 100px;
|
|
93
114
|
flex-shrink: 0;
|
|
115
|
+
position: relative;
|
|
116
|
+
z-index: 2;
|
|
94
117
|
}
|
|
95
118
|
|
|
96
119
|
.case-card-next-appointment-label {
|
|
97
|
-
color: var(--
|
|
120
|
+
color: var(--dark-grey, #456073);
|
|
98
121
|
font-family: "Open Sans", sans-serif;
|
|
99
122
|
font-size: 12px;
|
|
100
123
|
font-weight: 400;
|
|
101
124
|
line-height: normal;
|
|
102
125
|
letter-spacing: 0.12px;
|
|
126
|
+
text-shadow: 0 1px 2px rgba(255,255,255,0.5);
|
|
103
127
|
}
|
|
104
128
|
|
|
105
129
|
.case-card-categories {
|
|
106
130
|
display: flex;
|
|
107
131
|
gap: 8px;
|
|
108
|
-
/* margin-top: 8px; */
|
|
109
132
|
margin-top: 16px;
|
|
110
|
-
/* background-color: red; */
|
|
111
133
|
}
|
|
112
134
|
|
|
113
135
|
.case-card-mobile .case-card-next-appointment-label {
|
|
114
|
-
color: var(--
|
|
136
|
+
color: var(--dark-grey, #456073);
|
|
115
137
|
}
|
|
116
138
|
|
|
117
139
|
.case-card-archived .case-card-next-appointment {
|
|
@@ -119,7 +141,8 @@
|
|
|
119
141
|
}
|
|
120
142
|
|
|
121
143
|
.case-card-progress-bar {
|
|
122
|
-
/* background-color: lightgray; */
|
|
123
144
|
width: 100%;
|
|
124
145
|
margin-left: -10px;
|
|
146
|
+
margin-bottom: 2px;
|
|
147
|
+
z-index: 2;
|
|
125
148
|
}
|