@visns-studio/visns-components 5.0.0 → 5.0.1
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 +1 -1
- package/src/components/crm/DataGrid.jsx +1 -0
- package/src/components/crm/Form.jsx +6 -6
- package/src/components/crm/auth/styles/Login.module.scss +49 -80
- package/src/components/crm/auth/styles/Profile.module.scss +97 -33
- package/src/components/crm/auth/styles/Reset.module.scss +55 -37
- package/src/components/crm/auth/styles/Verify.module.scss +55 -76
- package/src/components/crm/generic/GenericAuth.jsx +12 -4
- package/src/components/crm/generic/styles/AuditLog.module.scss +0 -37
- package/src/components/crm/generic/styles/AuditLogs.module.scss +0 -51
- package/src/components/crm/generic/styles/GenericDetail.module.scss +4 -74
- package/src/components/crm/generic/styles/GenericDynamic.module.scss +68 -134
- package/src/components/crm/generic/styles/GenericFormBuilder.module.scss +59 -53
- package/src/components/crm/generic/styles/GenericIndex.module.scss +46 -66
- package/src/components/crm/generic/styles/GenericMain.module.scss +7 -7
- package/src/components/crm/generic/styles/GenericSort.module.scss +0 -36
- package/src/components/crm/generic/styles/NotificationList.module.scss +1 -32
- package/src/components/crm/styles/DataGrid.module.scss +4 -86
- package/src/components/crm/styles/Field.module.scss +67 -43
- package/src/components/crm/styles/Form.module.scss +148 -379
- package/src/components/crm/styles/Navigation.module.scss +359 -454
- package/src/components/crm/styles/Notification.module.scss +1 -0
- package/src/components/crm/styles/SwitchAccount.module.scss +0 -1
- package/src/components/crm/styles/TableFilter.module.scss +2 -1
- package/src/components/styles/global.css +73 -33
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
.hwrap {
|
|
2
|
-
|
|
3
|
-
|
|
2
|
+
display: grid;
|
|
3
|
+
grid-template-columns: auto auto 1fr auto;
|
|
4
4
|
align-items: center;
|
|
5
|
+
gap: var(--padding);
|
|
6
|
+
width: 100%;
|
|
5
7
|
|
|
6
8
|
.logo {
|
|
7
|
-
width:
|
|
8
|
-
padding: 0
|
|
9
|
+
width: var(--logo-width);
|
|
10
|
+
padding: 0;
|
|
9
11
|
margin: 0;
|
|
10
12
|
line-height: 1.45;
|
|
13
|
+
margin-right: 1rem;
|
|
11
14
|
|
|
12
15
|
img {
|
|
13
16
|
width: 100%;
|
|
14
|
-
max-width: 180px;
|
|
15
17
|
height: auto;
|
|
16
18
|
display: block;
|
|
17
19
|
margin: 0 auto;
|
|
@@ -21,16 +23,16 @@
|
|
|
21
23
|
.branding {
|
|
22
24
|
margin: 0;
|
|
23
25
|
padding: 0;
|
|
24
|
-
font-weight:
|
|
26
|
+
font-weight: var(--title-weight);
|
|
25
27
|
letter-spacing: -1px;
|
|
26
28
|
text-align: center;
|
|
27
29
|
|
|
28
30
|
.highlight {
|
|
29
|
-
color:
|
|
31
|
+
color: var(--tertiary-color);
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
.light {
|
|
33
|
-
font-weight:
|
|
35
|
+
font-weight: var(--para-weight);
|
|
34
36
|
color: var(--secondary-color);
|
|
35
37
|
}
|
|
36
38
|
}
|
|
@@ -44,302 +46,247 @@
|
|
|
44
46
|
display: flex;
|
|
45
47
|
flex-wrap: nowrap;
|
|
46
48
|
flex-direction: row;
|
|
47
|
-
|
|
49
|
+
gap: .5rem;
|
|
48
50
|
margin: 0;
|
|
49
51
|
list-style: none;
|
|
50
52
|
align-items: center;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
.app-nav .nav-item,
|
|
54
|
-
.app-nav .nav-item-alternate {
|
|
55
|
-
cursor: pointer;
|
|
56
|
-
transition: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
57
|
-
box-sizing: border-box;
|
|
58
|
-
position: relative;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
.app-nav .nav-item a,
|
|
62
|
-
.app-nav .nav-item-alternate a,
|
|
63
|
-
.app-nav .nav-item span,
|
|
64
|
-
.app-nav .nav-item-alternate span {
|
|
65
|
-
display: flex;
|
|
66
|
-
flex-wrap: nowrap;
|
|
67
|
-
align-items: center;
|
|
68
|
-
gap: 0.25rem;
|
|
69
|
-
box-sizing: border-box;
|
|
70
|
-
padding: 0.5em;
|
|
71
|
-
margin: 0.25em;
|
|
72
|
-
text-decoration: none;
|
|
73
|
-
outline: none;
|
|
74
|
-
border-radius: var(--br);
|
|
75
|
-
transition: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
.app-nav .nav-item a,
|
|
79
|
-
.app-nav .nav-item span {
|
|
80
|
-
color: var(--tertiary-color);
|
|
81
|
-
background: var(--primary-color);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.app-nav .nav-item a svg,
|
|
85
|
-
.app-nav .nav-item span svg {
|
|
86
|
-
color: var(--highlight-color);
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
.app-nav .nav-item-alternate a,
|
|
90
|
-
.app-nav .nav-item-alternate span {
|
|
91
|
-
color: var(--paragraph-color);
|
|
92
|
-
background: white;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
.app-nav .nav-item-alternate a svg,
|
|
96
|
-
.app-nav .nav-item-alternate span svg {
|
|
97
|
-
color: var(--highlight-color);
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.app-nav .nav-item:hover a,
|
|
101
|
-
.app-nav .nav-item.active a,
|
|
102
|
-
.app-nav .nav-item:hover span,
|
|
103
|
-
.app-nav .nav-item.active span {
|
|
104
|
-
background: var(--primary-color-lighter);
|
|
105
|
-
color: var(--highlight-color);
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
.app-nav .nav-item:hover a svg,
|
|
109
|
-
.app-nav .nav-item.active a svg,
|
|
110
|
-
.app-nav .nav-item:hover span svg,
|
|
111
|
-
.app-nav .nav-item.active span svg {
|
|
112
|
-
color: var(--highlight-color);
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
.app-nav .nav-item-alternate:hover a,
|
|
116
|
-
.app-nav .nav-item-alternate.active a,
|
|
117
|
-
.app-nav .nav-item-alternate:hover span,
|
|
118
|
-
.app-nav .nav-item-alternate.active span {
|
|
119
|
-
background: rgba(238, 238, 238, 0.5);
|
|
120
|
-
color: var(--paragraph-color);
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
.app-nav .nav-item-alternate:hover a svg,
|
|
124
|
-
.app-nav .nav-item-alternate.active a svg,
|
|
125
|
-
.app-nav .nav-item-alternate:hover span svg,
|
|
126
|
-
.app-nav .nav-item-alternate.active span svg {
|
|
127
|
-
color: var(--highlight-color);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
|
-
.app-nav .nav-item > ul,
|
|
131
|
-
.app-nav .nav-item-alternate > ul {
|
|
132
|
-
width: 200px;
|
|
133
|
-
position: absolute;
|
|
134
|
-
height: auto;
|
|
135
|
-
margin: 0;
|
|
136
53
|
padding: 0;
|
|
137
|
-
list-style: none;
|
|
138
|
-
display: none;
|
|
139
|
-
opacity: 0;
|
|
140
|
-
background: rgba(var(--primary-color-rgb), 0.75);
|
|
141
|
-
border-radius: 5px;
|
|
142
|
-
}
|
|
143
54
|
|
|
144
|
-
.
|
|
145
|
-
.
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
.app-nav .nav-item > ul li:last-of-type,
|
|
152
|
-
.app-nav .nav-item-alternate > ul li:last-of-type {
|
|
153
|
-
margin-bottom: 0;
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.app-nav .nav-item > ul li a,
|
|
157
|
-
.app-nav .nav-item-alternate > ul li a {
|
|
158
|
-
width: 100%;
|
|
159
|
-
padding: 8px 20px;
|
|
160
|
-
box-sizing: border-box;
|
|
161
|
-
display: block;
|
|
162
|
-
text-decoration: none;
|
|
163
|
-
border-radius: 3px;
|
|
164
|
-
transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
165
|
-
outline: none;
|
|
166
|
-
margin: 0;
|
|
167
|
-
}
|
|
168
|
-
|
|
169
|
-
.app-nav .nav-item > ul li a {
|
|
170
|
-
background: rgba(var(--primary-color-rgb), 0.9);
|
|
171
|
-
color: var(--tertiary-color) !important;
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
.app-nav .nav-item-alternate > ul li a {
|
|
175
|
-
background: rgba(var(--alternate-background-color-rgb), 0.9);
|
|
176
|
-
color: var(--alternate-paragraph-color);
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
.app-nav .nav-item > ul li:hover a,
|
|
180
|
-
.app-nav .nav-item-alternate > ul li:hover a {
|
|
181
|
-
background: rgba(var(--primary-color-rgb), 1.05);
|
|
182
|
-
color: var(--highlight-color);
|
|
183
|
-
}
|
|
55
|
+
.nav-item,
|
|
56
|
+
.nav-item-alternate {
|
|
57
|
+
cursor: pointer;
|
|
58
|
+
transition: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
59
|
+
box-sizing: border-box;
|
|
60
|
+
position: relative;
|
|
184
61
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
62
|
+
a,
|
|
63
|
+
span {
|
|
64
|
+
font-size: 1rem;
|
|
65
|
+
display: flex;
|
|
66
|
+
flex-wrap: nowrap;
|
|
67
|
+
align-items: center;
|
|
68
|
+
gap: 0.25rem;
|
|
69
|
+
box-sizing: border-box;
|
|
70
|
+
padding: 0.35em 0.5em;
|
|
71
|
+
margin: 0;
|
|
72
|
+
line-height: 1;
|
|
73
|
+
text-decoration: none;
|
|
74
|
+
outline: none;
|
|
75
|
+
border-radius: var(--br);
|
|
76
|
+
transition: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
77
|
+
}
|
|
189
78
|
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
79
|
+
&.nav-item {
|
|
80
|
+
a,
|
|
81
|
+
span {
|
|
82
|
+
color: var(--tertiary-color);
|
|
83
|
+
}
|
|
194
84
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
}
|
|
85
|
+
svg {
|
|
86
|
+
color: var(--secondary-color);
|
|
87
|
+
display: none;
|
|
88
|
+
visibility: hidden;
|
|
89
|
+
}
|
|
200
90
|
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
91
|
+
&:hover a,
|
|
92
|
+
&.active a,
|
|
93
|
+
&:hover span,
|
|
94
|
+
&.active span {
|
|
95
|
+
background: rgba(var(--secondary-rgb), 0.25);
|
|
96
|
+
color: var(--secondary-color);
|
|
97
|
+
}
|
|
206
98
|
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
}
|
|
99
|
+
&:hover svg,
|
|
100
|
+
&.active svg {
|
|
101
|
+
color: var(--secondary-color);
|
|
102
|
+
}
|
|
211
103
|
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
104
|
+
> ul {
|
|
105
|
+
width: 200px;
|
|
106
|
+
position: absolute;
|
|
107
|
+
height: auto;
|
|
108
|
+
margin: 0;
|
|
109
|
+
padding: 0;
|
|
110
|
+
list-style: none;
|
|
111
|
+
display: none;
|
|
112
|
+
opacity: 0;
|
|
113
|
+
background: rgba(var(--primary-rgb), 0.75);
|
|
114
|
+
border-radius: var(--br);
|
|
115
|
+
|
|
116
|
+
li {
|
|
117
|
+
display: block;
|
|
118
|
+
position: relative;
|
|
119
|
+
margin: 1px 0;
|
|
120
|
+
|
|
121
|
+
&:last-of-type {
|
|
122
|
+
margin-bottom: 0;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
a {
|
|
126
|
+
width: 100%;
|
|
127
|
+
padding: 8px 20px;
|
|
128
|
+
box-sizing: border-box;
|
|
129
|
+
display: block;
|
|
130
|
+
text-decoration: none;
|
|
131
|
+
border-radius: var(--br);
|
|
132
|
+
transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
133
|
+
outline: none;
|
|
134
|
+
margin: 0;
|
|
135
|
+
background: rgba(var(--primary-rgb), 0.9);
|
|
136
|
+
color: var(--tertiary-color) !important;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
&:hover a {
|
|
140
|
+
background: rgba(var(--primary-rgb), 1.05);
|
|
141
|
+
color: var(--secondary-color);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
svg {
|
|
145
|
+
transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
223
149
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
150
|
+
&:hover > ul {
|
|
151
|
+
display: block;
|
|
152
|
+
opacity: 1;
|
|
153
|
+
}
|
|
154
|
+
}
|
|
227
155
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
border: 2px solid var(--primary-color-lighter);
|
|
235
|
-
border-radius: 100%;
|
|
236
|
-
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
237
|
-
display: flex;
|
|
238
|
-
align-items: center;
|
|
239
|
-
}
|
|
156
|
+
&.nav-item-alternate {
|
|
157
|
+
a,
|
|
158
|
+
span {
|
|
159
|
+
color: var(--paragraph-color);
|
|
160
|
+
background: var(--tertiary-color);
|
|
161
|
+
}
|
|
240
162
|
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
}
|
|
163
|
+
svg {
|
|
164
|
+
color: var(--secondary-color);
|
|
165
|
+
}
|
|
245
166
|
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
167
|
+
&:hover a,
|
|
168
|
+
&.active a,
|
|
169
|
+
&:hover span,
|
|
170
|
+
&.active span {
|
|
171
|
+
background: rgba(238, 238, 238, 0.5);
|
|
172
|
+
color: var(--paragraph-color);
|
|
173
|
+
}
|
|
250
174
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
text-decoration: none;
|
|
256
|
-
background: none;
|
|
257
|
-
border: 1px solid var(--primary-color-lighter);
|
|
258
|
-
border-radius: 100%;
|
|
259
|
-
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
260
|
-
display: flex;
|
|
261
|
-
align-items: center;
|
|
262
|
-
outline: none;
|
|
263
|
-
appearance: none;
|
|
264
|
-
}
|
|
175
|
+
&:hover svg,
|
|
176
|
+
&.active svg {
|
|
177
|
+
color: var(--secondary-color);
|
|
178
|
+
}
|
|
265
179
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
180
|
+
> ul {
|
|
181
|
+
width: 200px;
|
|
182
|
+
position: absolute;
|
|
183
|
+
height: auto;
|
|
184
|
+
margin: 0;
|
|
185
|
+
padding: 0;
|
|
186
|
+
list-style: none;
|
|
187
|
+
display: none;
|
|
188
|
+
opacity: 0;
|
|
189
|
+
background: rgba(var(--primary-rgb), 0.9);
|
|
190
|
+
border-radius: var(--br);
|
|
191
|
+
|
|
192
|
+
li {
|
|
193
|
+
display: block;
|
|
194
|
+
position: relative;
|
|
195
|
+
margin-bottom: 2px;
|
|
196
|
+
|
|
197
|
+
&:last-of-type {
|
|
198
|
+
margin-bottom: 0;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
a {
|
|
202
|
+
width: 100%;
|
|
203
|
+
padding: 8px 20px;
|
|
204
|
+
box-sizing: border-box;
|
|
205
|
+
display: block;
|
|
206
|
+
text-decoration: none;
|
|
207
|
+
background: rgba(var(--primary-rgb), 0.9);
|
|
208
|
+
color: var(--paragraph-color);
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
&:hover a {
|
|
212
|
+
background: rgba(var(--primary-rgb), 1.05);
|
|
213
|
+
color: var(--secondary-color);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
270
217
|
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
218
|
+
&:hover > ul {
|
|
219
|
+
display: block;
|
|
220
|
+
opacity: 1;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
274
223
|
}
|
|
275
224
|
}
|
|
276
225
|
|
|
277
|
-
.hactions
|
|
226
|
+
.hactions {
|
|
227
|
+
width: max-content;
|
|
228
|
+
justify-self: end;
|
|
229
|
+
|
|
278
230
|
> ul {
|
|
279
231
|
list-style: none;
|
|
280
232
|
display: flex;
|
|
281
|
-
padding: 0
|
|
233
|
+
padding: 0;
|
|
282
234
|
margin: 0;
|
|
283
235
|
flex-wrap: nowrap;
|
|
284
236
|
flex-direction: row;
|
|
285
237
|
align-items: center;
|
|
286
238
|
justify-content: center;
|
|
287
|
-
}
|
|
288
239
|
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
240
|
+
li {
|
|
241
|
+
margin: 0 5px;
|
|
242
|
+
}
|
|
292
243
|
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
}
|
|
244
|
+
a {
|
|
245
|
+
color: var(--tertiary-color);
|
|
246
|
+
box-sizing: border-box;
|
|
247
|
+
padding: 0.35rem;
|
|
248
|
+
text-decoration: none;
|
|
249
|
+
background: none;
|
|
250
|
+
border: 2px solid var(--primary-color);
|
|
251
|
+
border-radius: 100%;
|
|
252
|
+
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
253
|
+
display: flex;
|
|
254
|
+
align-items: center;
|
|
305
255
|
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
309
|
-
}
|
|
256
|
+
&:hover {
|
|
257
|
+
background: var(--primary-color);
|
|
310
258
|
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
259
|
+
svg {
|
|
260
|
+
color: var(--secondary-color);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
315
264
|
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
}
|
|
265
|
+
button {
|
|
266
|
+
color: var(--tertiary-color);
|
|
267
|
+
box-sizing: border-box;
|
|
268
|
+
padding: 0.35rem;
|
|
269
|
+
text-decoration: none;
|
|
270
|
+
background: none;
|
|
271
|
+
border: 1px solid var(--primary-color);
|
|
272
|
+
border-radius: 100%;
|
|
273
|
+
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
274
|
+
display: flex;
|
|
275
|
+
align-items: center;
|
|
276
|
+
outline: none;
|
|
277
|
+
appearance: none;
|
|
330
278
|
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
334
|
-
}
|
|
279
|
+
&:hover {
|
|
280
|
+
background: var(--primary-color);
|
|
335
281
|
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
282
|
+
svg {
|
|
283
|
+
color: var(--secondary-color);
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
339
287
|
}
|
|
340
288
|
}
|
|
341
289
|
|
|
342
|
-
/** Simple Layout */
|
|
343
290
|
.cwrap {
|
|
344
291
|
display: flex;
|
|
345
292
|
}
|
|
@@ -350,164 +297,142 @@
|
|
|
350
297
|
overflow: hidden;
|
|
351
298
|
height: 100%;
|
|
352
299
|
width: var(--sidebar-width);
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
.aside--cms--open {
|
|
356
|
-
transform: translateX(0);
|
|
357
|
-
transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
358
|
-
}
|
|
359
|
-
|
|
360
|
-
.aside--cms .logo {
|
|
361
|
-
width: 100%;
|
|
362
|
-
position: relative;
|
|
363
|
-
background: rgba(var(--tertiary-color-rgb), 0.95);
|
|
364
|
-
height: 50px;
|
|
365
|
-
display: flex;
|
|
366
|
-
flex-wrap: nowrap;
|
|
367
|
-
justify-content: center;
|
|
368
|
-
align-items: center;
|
|
369
|
-
}
|
|
370
|
-
|
|
371
|
-
.cwrap .logo img {
|
|
372
|
-
width: 100%;
|
|
373
|
-
max-width: 90px;
|
|
374
|
-
height: auto;
|
|
375
|
-
display: block;
|
|
376
|
-
margin: 0 auto;
|
|
377
|
-
}
|
|
378
|
-
|
|
379
|
-
.awrap {
|
|
380
|
-
width: 100%;
|
|
381
|
-
position: relative;
|
|
382
|
-
padding: 1rem 0;
|
|
383
|
-
}
|
|
384
|
-
|
|
385
|
-
.navwrap {
|
|
386
|
-
width: 100%;
|
|
387
|
-
position: relative;
|
|
388
|
-
}
|
|
389
|
-
|
|
390
|
-
.aside--cms .awrap .navwrap .app-nav {
|
|
391
|
-
width: 100%;
|
|
392
|
-
display: flex;
|
|
393
|
-
flex-wrap: wrap;
|
|
394
|
-
flex-direction: column;
|
|
395
|
-
padding: 0;
|
|
396
|
-
margin: 0;
|
|
397
|
-
list-style: none;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item {
|
|
401
|
-
width: 100%;
|
|
402
|
-
cursor: pointer;
|
|
403
|
-
box-sizing: border-box;
|
|
404
|
-
position: relative;
|
|
405
|
-
border-radius: var(--br);
|
|
406
|
-
overflow: hidden;
|
|
407
|
-
padding: 0.15rem 0.45rem;
|
|
408
|
-
}
|
|
409
|
-
|
|
410
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item a {
|
|
411
|
-
display: flex;
|
|
412
|
-
flex-wrap: nowrap;
|
|
413
|
-
align-items: center;
|
|
414
|
-
color: var(--tertiary-color);
|
|
415
|
-
box-sizing: border-box;
|
|
416
|
-
padding: 0.5rem 1rem;
|
|
417
|
-
line-height: 1.25;
|
|
418
|
-
text-decoration: none;
|
|
419
|
-
background: var(--nav-bg);
|
|
420
|
-
outline: none;
|
|
421
|
-
border-radius: var(--br);
|
|
422
|
-
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
423
|
-
}
|
|
424
|
-
|
|
425
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item a > svg {
|
|
426
|
-
position: relative;
|
|
427
|
-
right: 8px;
|
|
428
|
-
opacity: 1;
|
|
429
|
-
transition: opacity 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
430
|
-
color: var(--highlight-color);
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item:hover a,
|
|
434
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item.active a {
|
|
435
|
-
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
436
|
-
background: rgba(var(--tertiary-color-rgb), 0.05);
|
|
437
|
-
color: var(--highlight-color);
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item:hover a > svg,
|
|
441
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item.active a > svg {
|
|
442
|
-
opacity: 1;
|
|
443
|
-
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
444
|
-
}
|
|
445
|
-
|
|
446
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item:hover ul {
|
|
447
|
-
display: block;
|
|
448
|
-
opacity: 1;
|
|
449
|
-
}
|
|
450
|
-
|
|
451
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item.active a {
|
|
452
|
-
background: rgba(var(--tertiary-color-rgb), 0.075);
|
|
453
|
-
color: var(--highlight-color);
|
|
454
|
-
}
|
|
455
300
|
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
padding: 1.25em 0.85em;
|
|
461
|
-
line-height: 1.25;
|
|
462
|
-
text-decoration: none;
|
|
463
|
-
background: var(--primary-color);
|
|
464
|
-
}
|
|
465
|
-
|
|
466
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item span:hover {
|
|
467
|
-
transition: all 0.15s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
468
|
-
background: rgba(var(--primary-color-rgb), 1.05);
|
|
469
|
-
}
|
|
470
|
-
|
|
471
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item > ul {
|
|
472
|
-
width: 200px;
|
|
473
|
-
position: absolute;
|
|
474
|
-
height: auto;
|
|
475
|
-
margin: 0;
|
|
476
|
-
padding: 0.25em;
|
|
477
|
-
list-style: none;
|
|
478
|
-
display: none;
|
|
479
|
-
opacity: 0;
|
|
480
|
-
background: var(---primary-color);
|
|
481
|
-
border-radius: 5px;
|
|
482
|
-
}
|
|
483
|
-
|
|
484
|
-
.aside--cms .awrap .navwrap .app-nav .nav-item > ul li {
|
|
485
|
-
display: block;
|
|
486
|
-
position: relative;
|
|
487
|
-
margin-bottom: 2px;
|
|
488
|
-
}
|
|
301
|
+
&--open {
|
|
302
|
+
transform: translateX(0);
|
|
303
|
+
transition: all 0.55s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
304
|
+
}
|
|
489
305
|
|
|
490
|
-
.
|
|
491
|
-
|
|
492
|
-
|
|
306
|
+
.logo {
|
|
307
|
+
width: 100%;
|
|
308
|
+
position: relative;
|
|
309
|
+
background: rgba(var(--tertiary-color-rgb), 0.95);
|
|
310
|
+
height: 50px;
|
|
311
|
+
display: flex;
|
|
312
|
+
flex-wrap: nowrap;
|
|
313
|
+
justify-content: center;
|
|
314
|
+
align-items: center;
|
|
315
|
+
}
|
|
493
316
|
|
|
494
|
-
.
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
display: block;
|
|
499
|
-
text-decoration: none;
|
|
500
|
-
background: rgba(var(--primary-color-rgb), 0.92);
|
|
501
|
-
color: var(---tertiary-color);
|
|
502
|
-
border-radius: 3px;
|
|
503
|
-
transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
504
|
-
outline: none;
|
|
505
|
-
}
|
|
317
|
+
.awrap {
|
|
318
|
+
width: 100%;
|
|
319
|
+
position: relative;
|
|
320
|
+
padding: var(--padding) 0;
|
|
506
321
|
|
|
507
|
-
.
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
322
|
+
.navwrap {
|
|
323
|
+
width: 100%;
|
|
324
|
+
position: relative;
|
|
325
|
+
|
|
326
|
+
.app-nav {
|
|
327
|
+
width: 100%;
|
|
328
|
+
display: flex;
|
|
329
|
+
flex-wrap: wrap;
|
|
330
|
+
flex-direction: column;
|
|
331
|
+
padding: 0;
|
|
332
|
+
margin: 0;
|
|
333
|
+
list-style: none;
|
|
334
|
+
|
|
335
|
+
.nav-item {
|
|
336
|
+
width: 100%;
|
|
337
|
+
cursor: pointer;
|
|
338
|
+
box-sizing: border-box;
|
|
339
|
+
position: relative;
|
|
340
|
+
border-radius: var(--br);
|
|
341
|
+
overflow: hidden;
|
|
342
|
+
padding: 0.15rem 0.45rem;
|
|
343
|
+
|
|
344
|
+
a {
|
|
345
|
+
display: flex;
|
|
346
|
+
flex-wrap: nowrap;
|
|
347
|
+
align-items: center;
|
|
348
|
+
color: var(--tertiary-color);
|
|
349
|
+
box-sizing: border-box;
|
|
350
|
+
padding: 0.5rem 1rem;
|
|
351
|
+
line-height: 1.25;
|
|
352
|
+
text-decoration: none;
|
|
353
|
+
background: var(--nav-bg);
|
|
354
|
+
outline: none;
|
|
355
|
+
border-radius: var(--br);
|
|
356
|
+
transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
svg {
|
|
360
|
+
position: relative;
|
|
361
|
+
right: 8px;
|
|
362
|
+
opacity: 1;
|
|
363
|
+
transition: opacity 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
364
|
+
color: var(--secondary-color);
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
&:hover a,
|
|
368
|
+
&.active a {
|
|
369
|
+
background: rgba(var(--tertiary-color-rgb), 0.05);
|
|
370
|
+
color: var(--secondary-color);
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
&:hover svg,
|
|
374
|
+
&.active svg {
|
|
375
|
+
opacity: 1;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
span {
|
|
379
|
+
display: block;
|
|
380
|
+
color: rgba(var(--paragraph-rgb), 0.3);
|
|
381
|
+
box-sizing: border-box;
|
|
382
|
+
padding: 1.25em 0.85em;
|
|
383
|
+
line-height: 1.25;
|
|
384
|
+
text-decoration: none;
|
|
385
|
+
background: var(--primary-color);
|
|
386
|
+
|
|
387
|
+
&:hover {
|
|
388
|
+
background: rgba(var(--primary-rgb), 1.05);
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
> ul {
|
|
393
|
+
width: 200px;
|
|
394
|
+
position: absolute;
|
|
395
|
+
height: auto;
|
|
396
|
+
margin: 0;
|
|
397
|
+
padding: 0.25em;
|
|
398
|
+
list-style: none;
|
|
399
|
+
display: none;
|
|
400
|
+
opacity: 0;
|
|
401
|
+
background: var(--primary-color);
|
|
402
|
+
border-radius: 5px;
|
|
403
|
+
|
|
404
|
+
li {
|
|
405
|
+
display: block;
|
|
406
|
+
position: relative;
|
|
407
|
+
margin-bottom: 2px;
|
|
408
|
+
|
|
409
|
+
&:last-of-type {
|
|
410
|
+
margin-bottom: 0;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
a {
|
|
414
|
+
width: 100%;
|
|
415
|
+
padding: 8px 20px;
|
|
416
|
+
box-sizing: border-box;
|
|
417
|
+
display: block;
|
|
418
|
+
text-decoration: none;
|
|
419
|
+
background: rgba(var(--primary-rgb), 0.92);
|
|
420
|
+
color: var(--tertiary-color);
|
|
421
|
+
border-radius: 3px;
|
|
422
|
+
transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
|
|
423
|
+
outline: none;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
&:hover a {
|
|
427
|
+
background: rgba(var(--secondary-rgb), 0.75);
|
|
428
|
+
color: var(--primary-color);
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
}
|
|
434
|
+
}
|
|
435
|
+
}
|
|
511
436
|
}
|
|
512
437
|
|
|
513
438
|
.content {
|
|
@@ -519,7 +444,7 @@
|
|
|
519
444
|
box-sizing: border-box;
|
|
520
445
|
padding: 0.15rem;
|
|
521
446
|
height: 50px;
|
|
522
|
-
box-shadow:
|
|
447
|
+
box-shadow: var(--box-shadow-small);
|
|
523
448
|
display: flex;
|
|
524
449
|
flex-wrap: nowrap;
|
|
525
450
|
justify-content: space-between;
|
|
@@ -528,7 +453,7 @@
|
|
|
528
453
|
|
|
529
454
|
.content-title {
|
|
530
455
|
width: max-content;
|
|
531
|
-
padding: 0
|
|
456
|
+
padding: 0 var(--padding);
|
|
532
457
|
|
|
533
458
|
h1 {
|
|
534
459
|
padding: 0;
|
|
@@ -536,7 +461,7 @@
|
|
|
536
461
|
font-size: 1em;
|
|
537
462
|
line-height: 1.25;
|
|
538
463
|
color: var(--paragraph-color);
|
|
539
|
-
font-weight:
|
|
464
|
+
font-weight: var(--para-weight);
|
|
540
465
|
}
|
|
541
466
|
|
|
542
467
|
.mobmenu {
|
|
@@ -576,23 +501,7 @@
|
|
|
576
501
|
}
|
|
577
502
|
}
|
|
578
503
|
|
|
579
|
-
@media (max-width: 1600px) {
|
|
580
|
-
body {
|
|
581
|
-
font-size: 90%;
|
|
582
|
-
}
|
|
583
|
-
|
|
584
|
-
.grid {
|
|
585
|
-
width: 100%;
|
|
586
|
-
max-width: 1150px;
|
|
587
|
-
margin: 0 auto;
|
|
588
|
-
}
|
|
589
|
-
}
|
|
590
|
-
|
|
591
504
|
@media (max-width: 1024px) {
|
|
592
|
-
body {
|
|
593
|
-
font-size: 85%;
|
|
594
|
-
}
|
|
595
|
-
|
|
596
505
|
.app-container {
|
|
597
506
|
width: 100%;
|
|
598
507
|
min-height: 100vh;
|
|
@@ -821,7 +730,7 @@
|
|
|
821
730
|
background: rgba(var(--primary-color), 0.15);
|
|
822
731
|
margin: 0;
|
|
823
732
|
font-weight: bold;
|
|
824
|
-
border-bottom: 1px solid
|
|
733
|
+
border-bottom: 1px solid var(--border-color);
|
|
825
734
|
}
|
|
826
735
|
|
|
827
736
|
.dassigned__emp h2 > div {
|
|
@@ -835,7 +744,7 @@
|
|
|
835
744
|
.dassigned__emp h2 > div small {
|
|
836
745
|
font-size: 0.7rem;
|
|
837
746
|
color: var(--paragraph-color);
|
|
838
|
-
font-weight:
|
|
747
|
+
font-weight: var(--para-weight);
|
|
839
748
|
display: block;
|
|
840
749
|
padding-right: 5px;
|
|
841
750
|
}
|
|
@@ -863,10 +772,6 @@
|
|
|
863
772
|
}
|
|
864
773
|
|
|
865
774
|
@media (max-width: 960px) {
|
|
866
|
-
.padding {
|
|
867
|
-
padding: 0.15rem;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
775
|
.userdetails {
|
|
871
776
|
display: none;
|
|
872
777
|
visibility: hidden;
|
|
@@ -874,14 +779,14 @@
|
|
|
874
779
|
|
|
875
780
|
.subtitle h2 {
|
|
876
781
|
font-size: 1em;
|
|
877
|
-
line-height:
|
|
782
|
+
line-height: var(--title-height);
|
|
878
783
|
}
|
|
879
784
|
|
|
880
785
|
.dashlist a {
|
|
881
786
|
width: 100%;
|
|
882
787
|
height: auto;
|
|
883
788
|
margin: 0.25rem 0 0.25rem 0;
|
|
884
|
-
padding:
|
|
789
|
+
padding: var(--padding);
|
|
885
790
|
}
|
|
886
791
|
|
|
887
792
|
.dashlist a:nth-child(3n) {
|
|
@@ -897,7 +802,7 @@
|
|
|
897
802
|
}
|
|
898
803
|
|
|
899
804
|
.pagination {
|
|
900
|
-
padding: 0
|
|
805
|
+
padding: 0 var(--padding);
|
|
901
806
|
}
|
|
902
807
|
}
|
|
903
808
|
|
|
@@ -914,11 +819,11 @@
|
|
|
914
819
|
border: none;
|
|
915
820
|
background: var(--primary-color);
|
|
916
821
|
appearance: none;
|
|
917
|
-
border-radius:
|
|
822
|
+
border-radius: var(--br);
|
|
918
823
|
|
|
919
824
|
svg {
|
|
920
825
|
display: block;
|
|
921
|
-
color:
|
|
826
|
+
color: var(--tertiary-color);
|
|
922
827
|
width: 100%;
|
|
923
828
|
max-width: 20px;
|
|
924
829
|
}
|
|
@@ -941,7 +846,7 @@
|
|
|
941
846
|
}
|
|
942
847
|
|
|
943
848
|
.toggleActive {
|
|
944
|
-
color: var(--
|
|
849
|
+
color: var(--secondary-color);
|
|
945
850
|
}
|
|
946
851
|
}
|
|
947
852
|
|
|
@@ -953,10 +858,10 @@
|
|
|
953
858
|
.AutocompletePlace-results {
|
|
954
859
|
width: 400px;
|
|
955
860
|
position: absolute;
|
|
956
|
-
background-color:
|
|
861
|
+
background-color: var(--tertiary-color);
|
|
957
862
|
padding: 0;
|
|
958
863
|
margin: 0;
|
|
959
|
-
border: 1px solid rgba(var(--primary-
|
|
864
|
+
border: 1px solid rgba(var(--primary-rgb), 0.25);
|
|
960
865
|
border-radius: var(--br);
|
|
961
866
|
overflow: hidden;
|
|
962
867
|
|
|
@@ -968,11 +873,11 @@
|
|
|
968
873
|
|
|
969
874
|
.AutocompletePlace-items {
|
|
970
875
|
list-style: none;
|
|
971
|
-
border-bottom: 1px solid rgba(var(--primary-
|
|
876
|
+
border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
|
|
972
877
|
cursor: pointer;
|
|
973
878
|
padding: 10px 10px;
|
|
974
879
|
|
|
975
880
|
&:hover {
|
|
976
|
-
background-color: rgba(var(--paragraph-
|
|
881
|
+
background-color: rgba(var(--paragraph-rgb), 0.065);
|
|
977
882
|
}
|
|
978
883
|
}
|