@intellias/menu 2.1.8 → 2.1.10
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/README.md +0 -2
- package/dist/css/main.css +652 -1449
- package/dist/js/kudosForm.js +42 -30
- package/dist/js/main.js +105 -117
- package/dist/js/vendors~kudosForm.js +0 -22
- package/package.json +1 -1
- package/dist/js/vue.js +0 -15
package/dist/css/main.css
CHANGED
|
@@ -1,6 +1,51 @@
|
|
|
1
1
|
@import url(https://fonts.googleapis.com/css?family=Play:400,700&display=swap);
|
|
2
2
|
@import url(https://fonts.googleapis.com/css?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap);
|
|
3
3
|
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap);
|
|
4
|
+
@import url(https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap);
|
|
5
|
+
.modal-wrapper[data-v-47941d80] {
|
|
6
|
+
padding-bottom: 1rem;
|
|
7
|
+
border-radius: 6px !important;
|
|
8
|
+
background-color: #ffffff;
|
|
9
|
+
box-shadow: 0 15px 30px rgba(37, 55, 70, 0.202715);
|
|
10
|
+
}
|
|
11
|
+
.modal-header[data-v-47941d80] {
|
|
12
|
+
display: flex;
|
|
13
|
+
justify-content: space-between;
|
|
14
|
+
padding: 2rem 2rem 1rem 2rem;
|
|
15
|
+
font-size: 1.25rem;
|
|
16
|
+
font-weight: bold;
|
|
17
|
+
color: #1a2732 !important;
|
|
18
|
+
}
|
|
19
|
+
.modal-header.dark[data-v-47941d80] {
|
|
20
|
+
color: #ffffff !important;
|
|
21
|
+
}
|
|
22
|
+
.modal-header.dark i.icon[data-v-47941d80]:before {
|
|
23
|
+
background-color: #ffffff !important;
|
|
24
|
+
}
|
|
25
|
+
.modal-header i.icon[data-v-47941d80]:before {
|
|
26
|
+
background-color: #1a2732 !important;
|
|
27
|
+
}
|
|
28
|
+
.modal-content[data-v-47941d80] {
|
|
29
|
+
padding: 1rem 2rem;
|
|
30
|
+
}
|
|
31
|
+
.modal-close[data-v-47941d80] {
|
|
32
|
+
width: 15px !important;
|
|
33
|
+
min-width: 15px;
|
|
34
|
+
height: 15px !important;
|
|
35
|
+
cursor: pointer;
|
|
36
|
+
}
|
|
37
|
+
.modal-footer[data-v-47941d80] {
|
|
38
|
+
display: flex;
|
|
39
|
+
justify-content: flex-end;
|
|
40
|
+
padding: 1rem 2rem;
|
|
41
|
+
}
|
|
42
|
+
.modal-footer .btn[data-v-47941d80]:not(:first-child) {
|
|
43
|
+
margin-left: 1rem;
|
|
44
|
+
}
|
|
45
|
+
.vm--overlay[data-v-47941d80] {
|
|
46
|
+
background-color: rgba(37, 55, 70, 0.55) !important;
|
|
47
|
+
transition: 0.3s !important;
|
|
48
|
+
}
|
|
4
49
|
.action-button.is-btn-link[data-v-4bad7ad2] {
|
|
5
50
|
padding: 0;
|
|
6
51
|
border: 0;
|
|
@@ -114,208 +159,230 @@
|
|
|
114
159
|
transform: rotate(360deg);
|
|
115
160
|
}
|
|
116
161
|
}
|
|
117
|
-
.
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
162
|
+
.secondary-button[data-v-ab516b6a] {
|
|
163
|
+
position: relative;
|
|
164
|
+
text-overflow: ellipsis;
|
|
165
|
+
overflow: hidden;
|
|
166
|
+
white-space: nowrap;
|
|
167
|
+
color: #1a2732;
|
|
168
|
+
text-transform: initial;
|
|
169
|
+
border-radius: 4px;
|
|
170
|
+
font-weight: 600;
|
|
171
|
+
line-height: 38px;
|
|
172
|
+
display: flex;
|
|
173
|
+
align-items: center;
|
|
123
174
|
}
|
|
124
|
-
.
|
|
125
|
-
|
|
175
|
+
.secondary-button.dark[data-v-ab516b6a] {
|
|
176
|
+
height: 40px;
|
|
177
|
+
padding: 0 var(--spacing-16);
|
|
178
|
+
background: var(--surface-primary);
|
|
179
|
+
color: var(--text-primary);
|
|
180
|
+
text-decoration: none;
|
|
181
|
+
border-radius: var(--border-radius-6);
|
|
182
|
+
border: solid var(--border) 1px;
|
|
183
|
+
font-size: var(--font-size-14);
|
|
184
|
+
line-height: var(--line-height-24);
|
|
185
|
+
transition: 0.3s;
|
|
126
186
|
}
|
|
127
|
-
.
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
transition: visibility 0s;
|
|
187
|
+
.secondary-button.dark[data-v-ab516b6a]:hover {
|
|
188
|
+
background: var(--surface-tertiary);
|
|
189
|
+
border-color: var(--border);
|
|
131
190
|
}
|
|
132
|
-
.
|
|
133
|
-
|
|
134
|
-
align-items: center;
|
|
135
|
-
justify-content: center;
|
|
191
|
+
.secondary-button i.icon[data-v-ab516b6a] {
|
|
192
|
+
vertical-align: middle;
|
|
136
193
|
}
|
|
137
|
-
.
|
|
138
|
-
position: relative;
|
|
194
|
+
.secondary-button .spinner-solid[data-v-ab516b6a] {
|
|
139
195
|
color: #1a2732;
|
|
196
|
+
animation: spin-ab516b6a 2s linear infinite;
|
|
197
|
+
vertical-align: middle;
|
|
198
|
+
transition: width 300ms, height 300ms;
|
|
199
|
+
margin-left: 8px;
|
|
140
200
|
}
|
|
141
|
-
.
|
|
142
|
-
|
|
201
|
+
.secondary-button .left-icon[data-v-ab516b6a] {
|
|
202
|
+
margin-right: 4px;
|
|
203
|
+
}
|
|
204
|
+
.secondary-button.disabled[data-v-ab516b6a], .secondary-button.btn-secondary[data-v-ab516b6a]:disabled, .secondary-button.btn[disabled][data-v-ab516b6a] {
|
|
205
|
+
background-color: #f1f5f9 !important;
|
|
143
206
|
color: #94a3b8;
|
|
144
|
-
border: 1px #475569 solid;
|
|
145
|
-
box-shadow: 0 2px 2px 0 rgba(15, 19, 23, 0.55), 0 3px 1px -2px rgba(15, 19, 23, 0.55), 0 1px 5px 0 rgba(15, 19, 23, 0.55);
|
|
146
207
|
}
|
|
147
|
-
.
|
|
148
|
-
color: #
|
|
208
|
+
.secondary-button.disabled .spinner-solid[data-v-ab516b6a], .secondary-button.btn-secondary:disabled .spinner-solid[data-v-ab516b6a], .secondary-button.btn[disabled] .spinner-solid[data-v-ab516b6a] {
|
|
209
|
+
color: #94a3b8 !important;
|
|
149
210
|
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
background-color: #253746;
|
|
211
|
+
@keyframes spin-ab516b6a {
|
|
212
|
+
100% {
|
|
213
|
+
transform: rotate(360deg);
|
|
154
214
|
}
|
|
155
|
-
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row {
|
|
156
|
-
border-bottom: 1px #475569 solid;
|
|
157
215
|
}
|
|
158
|
-
.
|
|
159
|
-
|
|
160
|
-
border: 1px #475569 solid;
|
|
161
|
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
|
|
216
|
+
.play-pause {
|
|
217
|
+
margin-left: 20px;
|
|
162
218
|
}
|
|
163
|
-
|
|
164
|
-
|
|
219
|
+
@media only screen and (max-width : 600px) {
|
|
220
|
+
.play-pause {
|
|
221
|
+
margin-left: 8px;
|
|
165
222
|
}
|
|
166
|
-
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a {
|
|
167
|
-
color: #f8fafc;
|
|
168
223
|
}
|
|
169
|
-
.
|
|
170
|
-
|
|
224
|
+
.play-pause-btn {
|
|
225
|
+
display: flex;
|
|
226
|
+
justify-content: center;
|
|
227
|
+
align-items: center;
|
|
228
|
+
width: 40px;
|
|
229
|
+
height: 40px;
|
|
230
|
+
border-radius: 100%;
|
|
231
|
+
cursor: pointer;
|
|
171
232
|
}
|
|
172
|
-
.
|
|
173
|
-
|
|
233
|
+
.play-pause-btn .icon {
|
|
234
|
+
width: 40px;
|
|
235
|
+
height: 40px;
|
|
174
236
|
}
|
|
175
|
-
.
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
z-index: 1000;
|
|
237
|
+
.play-pause-btn .icon.spinner-solid {
|
|
238
|
+
width: 24px;
|
|
239
|
+
height: 24px;
|
|
240
|
+
animation: spin 1s linear infinite;
|
|
180
241
|
}
|
|
181
|
-
|
|
182
|
-
|
|
242
|
+
#modalTracked {
|
|
243
|
+
color: #253746;
|
|
183
244
|
}
|
|
184
|
-
.
|
|
185
|
-
color: #
|
|
245
|
+
#modalTracked.dark {
|
|
246
|
+
color: #ffffff !important;
|
|
186
247
|
}
|
|
187
|
-
.
|
|
188
|
-
color: #
|
|
248
|
+
#modalTracked.dark i.icon:before {
|
|
249
|
+
background-color: #ffffff !important;
|
|
189
250
|
}
|
|
190
|
-
|
|
191
|
-
|
|
251
|
+
#modalTracked .modal-content #tracked-content {
|
|
252
|
+
display: flex;
|
|
253
|
+
align-items: center;
|
|
192
254
|
}
|
|
193
|
-
|
|
194
|
-
|
|
255
|
+
#modalTracked .modal-content #tracked-content p {
|
|
256
|
+
margin: 0;
|
|
257
|
+
line-height: initial;
|
|
195
258
|
}
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
border-bottom: 1px #475569 solid;
|
|
259
|
+
#modalTracked .modal-content #span-clock {
|
|
260
|
+
margin-right: 10px;
|
|
199
261
|
}
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
-webkit-mask-size: cover;
|
|
203
|
-
mask-size: cover;
|
|
204
|
-
-webkit-mask-repeat: no-repeat;
|
|
205
|
-
mask-repeat: no-repeat;
|
|
206
|
-
background-color: #94a3b8;
|
|
262
|
+
#modalTracked .modal-content #span-clock i {
|
|
263
|
+
font-size: 54px;
|
|
207
264
|
}
|
|
208
|
-
|
|
209
|
-
|
|
265
|
+
#modalTracked .modal-footer .action-button {
|
|
266
|
+
margin-left: 15px;
|
|
210
267
|
}
|
|
211
|
-
|
|
212
|
-
|
|
268
|
+
@keyframes spin {
|
|
269
|
+
100% {
|
|
270
|
+
transform: rotate(360deg);
|
|
213
271
|
}
|
|
214
|
-
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .row {
|
|
215
|
-
background-color: #253746;
|
|
216
272
|
}
|
|
217
|
-
.
|
|
218
|
-
|
|
273
|
+
.managers-portal-link {
|
|
274
|
+
display: inline-flex;
|
|
275
|
+
justify-content: center;
|
|
276
|
+
align-items: center;
|
|
219
277
|
}
|
|
220
|
-
.
|
|
221
|
-
|
|
278
|
+
.managers-portal-link-counter {
|
|
279
|
+
display: inline-flex;
|
|
280
|
+
justify-content: center;
|
|
281
|
+
align-items: center;
|
|
282
|
+
width: 16px;
|
|
283
|
+
height: 16px;
|
|
284
|
+
margin-left: 8px;
|
|
285
|
+
background-color: #186ade;
|
|
286
|
+
border-radius: 100% !important;
|
|
287
|
+
font-size: 0.67rem;
|
|
288
|
+
font-weight: 700;
|
|
289
|
+
line-height: normal;
|
|
290
|
+
color: #ffffff !important;
|
|
222
291
|
}
|
|
223
|
-
.
|
|
224
|
-
|
|
292
|
+
.progress[data-v-92cd54c2] {
|
|
293
|
+
margin: 0;
|
|
294
|
+
position: absolute;
|
|
295
|
+
visibility: hidden;
|
|
296
|
+
opacity: 0;
|
|
297
|
+
transition: opacity 1.5s, visibility 1.5s;
|
|
225
298
|
}
|
|
226
|
-
.
|
|
227
|
-
background-color: #
|
|
299
|
+
.progress .determinate[data-v-92cd54c2] {
|
|
300
|
+
background-color: #00a58e;
|
|
228
301
|
}
|
|
229
|
-
.
|
|
230
|
-
|
|
302
|
+
.progress.show[data-v-92cd54c2] {
|
|
303
|
+
visibility: visible;
|
|
304
|
+
opacity: 1;
|
|
305
|
+
transition: visibility 0s;
|
|
231
306
|
}
|
|
232
|
-
.
|
|
233
|
-
|
|
307
|
+
.preloader {
|
|
308
|
+
display: flex;
|
|
309
|
+
align-items: center;
|
|
310
|
+
justify-content: center;
|
|
234
311
|
}
|
|
235
|
-
.notifications-sidebar
|
|
236
|
-
|
|
237
|
-
|
|
312
|
+
.notifications-sidebar {
|
|
313
|
+
position: relative;
|
|
314
|
+
display: flex;
|
|
315
|
+
align-items: center;
|
|
316
|
+
}
|
|
317
|
+
.notifications-sidebar .notifications-trigger {
|
|
318
|
+
display: flex;
|
|
319
|
+
transition: 0.3s;
|
|
320
|
+
}
|
|
321
|
+
.notifications-sidebar .notifications-trigger .icon.bell {
|
|
322
|
+
width: 18px;
|
|
323
|
+
height: 20px;
|
|
324
|
+
}
|
|
325
|
+
.notifications-sidebar .notifications-trigger:hover {
|
|
326
|
+
color: #00a58e;
|
|
327
|
+
}
|
|
328
|
+
.notifications-sidebar .notifications-trigger:hover .icon {
|
|
329
|
+
color: #00a58e;
|
|
238
330
|
}
|
|
239
331
|
.notifications-sidebar .row .col {
|
|
240
332
|
padding: 0 0.75rem;
|
|
241
333
|
}
|
|
334
|
+
.notifications-sidebar .row .col > .icon:before {
|
|
335
|
+
background-color: #45d6ad;
|
|
336
|
+
}
|
|
242
337
|
.notifications-sidebar .col .row {
|
|
243
338
|
margin-left: -0.75rem;
|
|
244
339
|
margin-right: -0.75rem;
|
|
245
340
|
}
|
|
246
341
|
.notifications-sidebar .v-dropdown-menu__container {
|
|
247
|
-
|
|
248
|
-
|
|
342
|
+
top: calc(100% + 23px);
|
|
343
|
+
left: -12px;
|
|
249
344
|
max-width: none;
|
|
250
|
-
min-width: none;
|
|
251
345
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
|
|
252
346
|
}
|
|
347
|
+
@media only screen and (max-width : 600px) {
|
|
348
|
+
.notifications-sidebar .v-dropdown-menu__container {
|
|
349
|
+
left: -24px;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
253
352
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row {
|
|
254
|
-
border-bottom: 1px #cbd5e1 solid;
|
|
255
|
-
padding: 0 3px 0 13px;
|
|
256
|
-
margin-bottom: 10px;
|
|
257
353
|
display: flex;
|
|
258
|
-
align-items: center;
|
|
259
354
|
justify-content: space-between;
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
line-height: 50px;
|
|
264
|
-
font-weight: bold;
|
|
265
|
-
}
|
|
266
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s8 {
|
|
267
|
-
height: 50px;
|
|
268
|
-
line-height: 50px;
|
|
269
|
-
margin-left: 0;
|
|
270
|
-
font-weight: bold;
|
|
271
|
-
}
|
|
272
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s2 {
|
|
273
|
-
height: 50px;
|
|
274
|
-
line-height: 50px;
|
|
275
|
-
margin-left: 5px;
|
|
276
|
-
display: flex;
|
|
277
|
-
align-items: center;
|
|
278
|
-
padding: 0 30px 0 0;
|
|
355
|
+
padding: 0 3px 0 13px;
|
|
356
|
+
margin-bottom: 0;
|
|
357
|
+
border-bottom: 1px #cbd5e1 solid;
|
|
279
358
|
}
|
|
280
359
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s2 .notifications-state-marker .v-dropdown-menu__container {
|
|
281
|
-
top:
|
|
282
|
-
height: 75px;
|
|
360
|
+
top: 45px;
|
|
283
361
|
}
|
|
284
362
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s2 .notifications-state-marker .notification-manage-toggler {
|
|
285
|
-
position: relative;
|
|
286
363
|
display: flex;
|
|
287
|
-
flex-wrap: wrap;
|
|
288
364
|
flex-direction: column;
|
|
289
365
|
justify-content: center;
|
|
290
366
|
width: 20px;
|
|
291
367
|
height: 64px;
|
|
292
|
-
line-height: 64px;
|
|
293
|
-
cursor: pointer;
|
|
294
368
|
}
|
|
295
369
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s2 .notifications-state-marker .notification-manage-toggler span {
|
|
296
|
-
|
|
370
|
+
display: inline-block;
|
|
297
371
|
width: 4px;
|
|
298
372
|
height: 4px;
|
|
299
|
-
display: inline-block;
|
|
300
373
|
border-radius: 50%;
|
|
301
374
|
margin: 1px auto;
|
|
375
|
+
background-color: #94a3b8;
|
|
302
376
|
}
|
|
303
377
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu {
|
|
304
|
-
|
|
305
|
-
border-radius: 2px;
|
|
306
|
-
box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
|
|
307
|
-
padding-left: 0px;
|
|
308
|
-
}
|
|
309
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li {
|
|
310
|
-
min-height: 30px;
|
|
311
|
-
line-height: 30px;
|
|
312
|
-
width: 100%;
|
|
313
|
-
display: block;
|
|
378
|
+
margin: 0;
|
|
314
379
|
}
|
|
315
380
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li:hover:not(.is-disabled), .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li:active:not(.is-disabled) {
|
|
316
381
|
background-color: #c2e9e4;
|
|
317
382
|
}
|
|
318
383
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a {
|
|
384
|
+
display: inline-block;
|
|
385
|
+
width: 100%;
|
|
319
386
|
color: #1a2732;
|
|
320
387
|
font-size: 14px;
|
|
321
388
|
font-weight: 400;
|
|
@@ -335,52 +402,35 @@
|
|
|
335
402
|
}
|
|
336
403
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown {
|
|
337
404
|
width: 370px;
|
|
338
|
-
height: auto !important;
|
|
339
|
-
transform: none !important;
|
|
340
|
-
}
|
|
341
|
-
@media only screen and (max-width : 600px) {
|
|
342
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown {
|
|
343
|
-
position: fixed;
|
|
344
|
-
width: 100% !important;
|
|
345
405
|
}
|
|
406
|
+
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .row {
|
|
407
|
+
margin-bottom: 0;
|
|
346
408
|
}
|
|
347
409
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs {
|
|
348
|
-
height: 38px;
|
|
349
|
-
line-height: 24px;
|
|
350
|
-
padding-left: 0;
|
|
351
|
-
list-style-type: none;
|
|
352
410
|
position: relative;
|
|
353
|
-
|
|
354
|
-
overflow-y: hidden;
|
|
355
|
-
width: 100%;
|
|
356
|
-
background-color: #ffffff;
|
|
357
|
-
margin: 0 auto;
|
|
358
|
-
white-space: nowrap;
|
|
411
|
+
height: 48px;
|
|
359
412
|
border-bottom: 1px #cbd5e1 solid;
|
|
413
|
+
background-color: #ffffff;
|
|
414
|
+
box-shadow: none;
|
|
415
|
+
line-height: normal;
|
|
360
416
|
}
|
|
361
417
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button {
|
|
362
|
-
clear: inherit;
|
|
363
|
-
min-height: auto;
|
|
364
418
|
width: 50%;
|
|
365
|
-
line-height: 28px;
|
|
366
|
-
background-color: #ffffff;
|
|
367
419
|
border: none;
|
|
420
|
+
background: none;
|
|
368
421
|
cursor: pointer;
|
|
369
422
|
}
|
|
370
423
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab {
|
|
371
|
-
height:
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
padding: 0;
|
|
375
|
-
margin: 0;
|
|
424
|
+
height: auto;
|
|
425
|
+
padding: 0 10px;
|
|
426
|
+
margin-top: 18px;
|
|
376
427
|
font-size: 0.8rem;
|
|
377
428
|
text-transform: initial;
|
|
378
|
-
padding: 0px 10px;
|
|
379
429
|
color: #64748b;
|
|
430
|
+
line-height: normal;
|
|
380
431
|
background-color: inherit;
|
|
381
432
|
}
|
|
382
433
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab.active, .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab:focus, .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab:hover, .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab:focus.active {
|
|
383
|
-
background-color: inherit;
|
|
384
434
|
color: #1a2732;
|
|
385
435
|
}
|
|
386
436
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab.active {
|
|
@@ -388,7 +438,6 @@
|
|
|
388
438
|
}
|
|
389
439
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab .counter {
|
|
390
440
|
font-weight: bold;
|
|
391
|
-
text-align: center;
|
|
392
441
|
font-size: 0.67rem;
|
|
393
442
|
border-radius: 10px;
|
|
394
443
|
padding: 2px 6px;
|
|
@@ -396,39 +445,23 @@
|
|
|
396
445
|
background-color: #ff8041;
|
|
397
446
|
margin-left: 4px;
|
|
398
447
|
}
|
|
399
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab:focus, .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab:hover {
|
|
400
|
-
background-color: inherit;
|
|
401
|
-
}
|
|
402
448
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs .indicator {
|
|
403
449
|
background-color: #00a58e;
|
|
404
450
|
margin: 0 25px;
|
|
405
|
-
width: initial;
|
|
406
|
-
height: 3px;
|
|
407
451
|
width: 140px !important;
|
|
408
452
|
position: absolute;
|
|
409
453
|
bottom: 0;
|
|
410
454
|
height: 2px;
|
|
411
|
-
will-change: left, right;
|
|
412
|
-
transition: background-color 0.3s;
|
|
413
455
|
transition: transform 0.4s ease, width 0.4s ease;
|
|
414
456
|
}
|
|
415
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content {
|
|
416
|
-
padding: 0;
|
|
417
|
-
margin-left: 0;
|
|
418
|
-
width: 100%;
|
|
419
|
-
height: -moz-fit-content;
|
|
420
|
-
height: fit-content;
|
|
421
|
-
}
|
|
422
457
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list {
|
|
423
|
-
|
|
424
|
-
box-shadow: inset 0 12px 8px -8px rgba(0, 0, 0, 0.12);
|
|
425
|
-
border-top: 1px #cbd5e1 solid;
|
|
458
|
+
margin-bottom: 0;
|
|
426
459
|
line-height: 18px;
|
|
427
460
|
}
|
|
428
461
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content {
|
|
429
|
-
min-height: 120px;
|
|
430
|
-
max-height: 70vh;
|
|
431
462
|
width: 100%;
|
|
463
|
+
min-height: 120px;
|
|
464
|
+
max-height: calc(100vh - 275px);
|
|
432
465
|
}
|
|
433
466
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .preloader {
|
|
434
467
|
display: flex;
|
|
@@ -439,25 +472,11 @@
|
|
|
439
472
|
height: 80px;
|
|
440
473
|
}
|
|
441
474
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note {
|
|
442
|
-
border-bottom: 1px #cbd5e1 solid;
|
|
443
475
|
padding: 20px 25px;
|
|
444
476
|
margin: 0 -0.75rem;
|
|
445
477
|
}
|
|
446
478
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:hover .manage-notification {
|
|
447
|
-
|
|
448
|
-
}
|
|
449
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i.icon:not(.original):before {
|
|
450
|
-
background-image: none;
|
|
451
|
-
-webkit-mask-size: cover;
|
|
452
|
-
mask-size: cover;
|
|
453
|
-
-webkit-mask-repeat: no-repeat;
|
|
454
|
-
mask-repeat: no-repeat;
|
|
455
|
-
background-color: #94a3b8;
|
|
456
|
-
}
|
|
457
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .semi-primary-text {
|
|
458
|
-
font-size: 14px;
|
|
459
|
-
line-height: 1.25;
|
|
460
|
-
font-weight: normal;
|
|
479
|
+
opacity: 1;
|
|
461
480
|
}
|
|
462
481
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .semi-primary-text b a {
|
|
463
482
|
font-weight: 700;
|
|
@@ -471,30 +490,13 @@
|
|
|
471
490
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:not(.read) {
|
|
472
491
|
border-left: 3px solid #ff8041;
|
|
473
492
|
}
|
|
474
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note
|
|
475
|
-
|
|
476
|
-
display: flex;
|
|
477
|
-
}
|
|
478
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:last-child {
|
|
479
|
-
border-bottom: none;
|
|
480
|
-
}
|
|
481
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note i.category-icon {
|
|
482
|
-
width: 28px;
|
|
483
|
-
height: 28px !important;
|
|
484
|
-
}
|
|
485
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .new-notification {
|
|
486
|
-
position: absolute;
|
|
487
|
-
width: 9px;
|
|
488
|
-
height: 9px;
|
|
489
|
-
border-radius: 5px;
|
|
490
|
-
background-color: #ff8041;
|
|
491
|
-
top: 0;
|
|
492
|
-
right: 10px;
|
|
493
|
+
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:not(:first-child) {
|
|
494
|
+
border-top: 1px #cbd5e1 solid;
|
|
493
495
|
}
|
|
494
496
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification {
|
|
495
497
|
position: absolute;
|
|
496
|
-
right:
|
|
497
|
-
|
|
498
|
+
right: 16px;
|
|
499
|
+
opacity: 0;
|
|
498
500
|
}
|
|
499
501
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i {
|
|
500
502
|
height: 16px;
|
|
@@ -512,27 +514,16 @@
|
|
|
512
514
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i.delete:hover:before {
|
|
513
515
|
background-color: #da1e28 !important;
|
|
514
516
|
}
|
|
515
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .reject-color {
|
|
516
|
-
color: #da1e28;
|
|
517
|
-
}
|
|
518
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .reject-color .span-text {
|
|
519
|
-
color: #da1e28;
|
|
520
|
-
}
|
|
521
517
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .note-title-col {
|
|
522
518
|
max-width: 70%;
|
|
523
519
|
padding-left: 4px;
|
|
524
520
|
}
|
|
525
|
-
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .note-title-col .text-muted {
|
|
526
|
-
font-size: 12px;
|
|
527
|
-
color: #64748b;
|
|
528
|
-
}
|
|
529
521
|
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .action-buttons {
|
|
530
|
-
|
|
522
|
+
width: 100%;
|
|
531
523
|
}
|
|
532
|
-
.notifications-sidebar .notifications-
|
|
533
|
-
|
|
534
|
-
height:
|
|
535
|
-
font-size: 1.2rem;
|
|
524
|
+
.notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .action-buttons button {
|
|
525
|
+
height: auto;
|
|
526
|
+
line-height: initial;
|
|
536
527
|
}
|
|
537
528
|
.notifications-sidebar a {
|
|
538
529
|
color: #00a58e;
|
|
@@ -540,35 +531,22 @@
|
|
|
540
531
|
padding: 0;
|
|
541
532
|
font-size: inherit;
|
|
542
533
|
}
|
|
543
|
-
.notifications-sidebar a:hover {
|
|
544
|
-
background-color: initial;
|
|
545
|
-
}
|
|
546
|
-
.notifications-sidebar .primary-text {
|
|
547
|
-
font-size: 14px !important;
|
|
548
|
-
line-height: 1.29;
|
|
549
|
-
font-weight: bold;
|
|
550
|
-
}
|
|
551
534
|
.notifications-sidebar .view-all-row {
|
|
552
535
|
border-top: 1px #cbd5e1 solid;
|
|
553
|
-
line-height:
|
|
536
|
+
line-height: 50px;
|
|
554
537
|
}
|
|
555
538
|
.notifications-sidebar .ps__rail-x {
|
|
556
539
|
display: none !important;
|
|
557
540
|
}
|
|
558
541
|
.notifications-sidebar .has-unread {
|
|
559
|
-
display: inline-block;
|
|
560
542
|
position: absolute;
|
|
561
|
-
top:
|
|
543
|
+
top: -6px;
|
|
544
|
+
right: -8px;
|
|
562
545
|
height: 9px;
|
|
563
546
|
width: 9px;
|
|
564
547
|
border-radius: 50%;
|
|
565
548
|
background-color: #ff8041;
|
|
566
549
|
}
|
|
567
|
-
@media only screen and (max-width : 430px) {
|
|
568
|
-
.notifications-sidebar .has-unread {
|
|
569
|
-
right: -10px;
|
|
570
|
-
}
|
|
571
|
-
}
|
|
572
550
|
.notifications-sidebar .fade-enter-active,
|
|
573
551
|
.notifications-sidebar .fade-leave-active {
|
|
574
552
|
transition: opacity 0.5s;
|
|
@@ -577,328 +555,126 @@
|
|
|
577
555
|
.notifications-sidebar .fade-leave-to {
|
|
578
556
|
opacity: 0;
|
|
579
557
|
}
|
|
580
|
-
.
|
|
581
|
-
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
-moz-transform-origin: 50% 4px;
|
|
585
|
-
animation: ring 5.6s 0.5s ease-in-out infinite;
|
|
586
|
-
transform-origin: 50% 4px;
|
|
558
|
+
.notifications-sidebar.dark .v-dropdown-menu__container {
|
|
559
|
+
background-color: #253746;
|
|
560
|
+
color: #94a3b8;
|
|
561
|
+
border: 1px #475569 solid;
|
|
587
562
|
}
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
transform: rotate(0);
|
|
563
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .primary-text {
|
|
564
|
+
color: #f8fafc;
|
|
591
565
|
}
|
|
592
|
-
|
|
593
|
-
|
|
566
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header {
|
|
567
|
+
position: relative;
|
|
568
|
+
z-index: 1001;
|
|
594
569
|
}
|
|
595
|
-
|
|
596
|
-
|
|
570
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row {
|
|
571
|
+
border-bottom: 1px #475569 solid;
|
|
597
572
|
}
|
|
598
|
-
|
|
599
|
-
|
|
573
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu {
|
|
574
|
+
background-color: #253746;
|
|
575
|
+
border: 1px #475569 solid;
|
|
600
576
|
}
|
|
601
|
-
|
|
602
|
-
|
|
577
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li:hover:not(.is-disabled) {
|
|
578
|
+
background-color: #275b57;
|
|
603
579
|
}
|
|
604
|
-
|
|
605
|
-
|
|
580
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a {
|
|
581
|
+
color: #f8fafc;
|
|
606
582
|
}
|
|
607
|
-
|
|
608
|
-
|
|
583
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a:hover:not(.is-disabled) {
|
|
584
|
+
background-color: #275b57;
|
|
609
585
|
}
|
|
610
|
-
|
|
611
|
-
|
|
586
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs {
|
|
587
|
+
background-color: #253746;
|
|
588
|
+
border-bottom: 1px #475569 solid;
|
|
589
|
+
z-index: 1000;
|
|
612
590
|
}
|
|
613
|
-
|
|
614
|
-
|
|
591
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs .indicator {
|
|
592
|
+
background-color: #45d6ad;
|
|
615
593
|
}
|
|
616
|
-
|
|
617
|
-
|
|
594
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs button.tab {
|
|
595
|
+
color: #94a3b8;
|
|
618
596
|
}
|
|
619
|
-
|
|
620
|
-
|
|
597
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs button.tab .counter {
|
|
598
|
+
color: #253746;
|
|
621
599
|
}
|
|
622
|
-
|
|
623
|
-
|
|
600
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs button.tab.active, .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs button.tab:hover {
|
|
601
|
+
color: #f8fafc;
|
|
624
602
|
}
|
|
625
|
-
|
|
626
|
-
|
|
603
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note {
|
|
604
|
+
background-color: #253746;
|
|
605
|
+
border-bottom: 1px #475569 solid;
|
|
627
606
|
}
|
|
628
|
-
|
|
629
|
-
|
|
607
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note a {
|
|
608
|
+
color: #45d6ad;
|
|
630
609
|
}
|
|
631
|
-
|
|
632
|
-
|
|
610
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .time-ago {
|
|
611
|
+
color: #94a3b8;
|
|
633
612
|
}
|
|
634
|
-
|
|
635
|
-
|
|
613
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note.read {
|
|
614
|
+
background-color: #1a2732;
|
|
636
615
|
}
|
|
637
|
-
|
|
638
|
-
|
|
616
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note.read .row {
|
|
617
|
+
background-color: #1a2732;
|
|
639
618
|
}
|
|
640
|
-
|
|
641
|
-
|
|
619
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .span-text {
|
|
620
|
+
color: #45d6ad;
|
|
642
621
|
}
|
|
643
|
-
|
|
644
|
-
|
|
622
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .view-all-row {
|
|
623
|
+
border-top: 1px #475569 solid;
|
|
645
624
|
}
|
|
646
|
-
|
|
647
|
-
|
|
625
|
+
.notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .view-all-row .action-button.is-link {
|
|
626
|
+
color: #45d6ad;
|
|
648
627
|
}
|
|
649
|
-
|
|
650
|
-
|
|
628
|
+
.bell-animation {
|
|
629
|
+
-webkit-animation: ring 5.6s 0.5s ease-in-out infinite;
|
|
630
|
+
-webkit-transform-origin: 50% 4px;
|
|
631
|
+
-moz-animation: ring 5.6s 0.5s ease-in-out infinite;
|
|
632
|
+
-moz-transform-origin: 50% 4px;
|
|
633
|
+
animation: ring 5.6s 0.5s ease-in-out infinite;
|
|
634
|
+
transform-origin: 50% 4px;
|
|
651
635
|
}
|
|
652
|
-
|
|
653
|
-
|
|
636
|
+
.image-wrapper.sm[data-v-7393283b] {
|
|
637
|
+
width: 35px;
|
|
638
|
+
height: 35px;
|
|
654
639
|
}
|
|
655
|
-
|
|
656
|
-
|
|
640
|
+
.image-wrapper.sm .user-image[data-v-7393283b] {
|
|
641
|
+
border: 1px solid #cbd5e1;
|
|
657
642
|
}
|
|
658
|
-
|
|
659
|
-
|
|
643
|
+
.image-wrapper.sm .user-image.anonymous[data-v-7393283b] {
|
|
644
|
+
font-size: 12px;
|
|
660
645
|
}
|
|
661
|
-
|
|
662
|
-
|
|
646
|
+
.image-wrapper.sm .user-image.anonymous.dark[data-v-7393283b] {
|
|
647
|
+
background-color: var(--bg-primary);
|
|
648
|
+
color: var(--text-disable);
|
|
649
|
+
border: 1px solid var(--border);
|
|
663
650
|
}
|
|
664
|
-
|
|
665
|
-
|
|
651
|
+
.image-wrapper.md[data-v-7393283b] {
|
|
652
|
+
height: 44px;
|
|
653
|
+
width: 44px;
|
|
666
654
|
}
|
|
667
|
-
|
|
668
|
-
|
|
655
|
+
.image-wrapper.md .user-image[data-v-7393283b] {
|
|
656
|
+
border: 1px solid #cbd5e1;
|
|
669
657
|
}
|
|
670
|
-
|
|
671
|
-
|
|
658
|
+
.image-wrapper.md .user-image.anonymous[data-v-7393283b] {
|
|
659
|
+
font-size: 16px;
|
|
660
|
+
color: #94a3b8;
|
|
672
661
|
}
|
|
673
|
-
|
|
674
|
-
|
|
662
|
+
.image-wrapper.md .user-image.anonymous.dark[data-v-7393283b] {
|
|
663
|
+
background-color: var(--bg-primary);
|
|
664
|
+
color: var(--text-disable);
|
|
665
|
+
border: 1px solid var(--border);
|
|
675
666
|
}
|
|
676
|
-
|
|
677
|
-
|
|
667
|
+
.image-wrapper.lg[data-v-7393283b] {
|
|
668
|
+
height: 96px;
|
|
669
|
+
width: 96px;
|
|
678
670
|
}
|
|
679
|
-
|
|
680
|
-
|
|
671
|
+
.image-wrapper.xl[data-v-7393283b] {
|
|
672
|
+
height: 128px;
|
|
673
|
+
width: 128px;
|
|
681
674
|
}
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
64% {
|
|
686
|
-
transform: rotate(-1deg);
|
|
687
|
-
}
|
|
688
|
-
66% {
|
|
689
|
-
transform: rotate(1deg);
|
|
690
|
-
}
|
|
691
|
-
70% {
|
|
692
|
-
transform: rotate(0);
|
|
693
|
-
}
|
|
694
|
-
100% {
|
|
695
|
-
transform: rotate(0);
|
|
696
|
-
}
|
|
697
|
-
}
|
|
698
|
-
.modal-wrapper[data-v-47941d80] {
|
|
699
|
-
padding-bottom: 1rem;
|
|
700
|
-
border-radius: 6px !important;
|
|
701
|
-
background-color: #ffffff;
|
|
702
|
-
box-shadow: 0 15px 30px rgba(37, 55, 70, 0.202715);
|
|
703
|
-
}
|
|
704
|
-
.modal-header[data-v-47941d80] {
|
|
705
|
-
display: flex;
|
|
706
|
-
justify-content: space-between;
|
|
707
|
-
padding: 2rem 2rem 1rem 2rem;
|
|
708
|
-
font-size: 1.25rem;
|
|
709
|
-
font-weight: bold;
|
|
710
|
-
color: #1a2732 !important;
|
|
711
|
-
}
|
|
712
|
-
.modal-header.dark[data-v-47941d80] {
|
|
713
|
-
color: #ffffff !important;
|
|
714
|
-
}
|
|
715
|
-
.modal-header.dark i.icon[data-v-47941d80]:before {
|
|
716
|
-
background-color: #ffffff !important;
|
|
717
|
-
}
|
|
718
|
-
.modal-header i.icon[data-v-47941d80]:before {
|
|
719
|
-
background-color: #1a2732 !important;
|
|
720
|
-
}
|
|
721
|
-
.modal-content[data-v-47941d80] {
|
|
722
|
-
padding: 1rem 2rem;
|
|
723
|
-
}
|
|
724
|
-
.modal-close[data-v-47941d80] {
|
|
725
|
-
width: 15px !important;
|
|
726
|
-
min-width: 15px;
|
|
727
|
-
height: 15px !important;
|
|
728
|
-
cursor: pointer;
|
|
729
|
-
}
|
|
730
|
-
.modal-footer[data-v-47941d80] {
|
|
731
|
-
display: flex;
|
|
732
|
-
justify-content: flex-end;
|
|
733
|
-
padding: 1rem 2rem;
|
|
734
|
-
}
|
|
735
|
-
.modal-footer .btn[data-v-47941d80]:not(:first-child) {
|
|
736
|
-
margin-left: 1rem;
|
|
737
|
-
}
|
|
738
|
-
.vm--overlay[data-v-47941d80] {
|
|
739
|
-
background-color: rgba(37, 55, 70, 0.55) !important;
|
|
740
|
-
transition: 0.3s !important;
|
|
741
|
-
}
|
|
742
|
-
.secondary-button[data-v-ab516b6a] {
|
|
743
|
-
position: relative;
|
|
744
|
-
text-overflow: ellipsis;
|
|
745
|
-
overflow: hidden;
|
|
746
|
-
white-space: nowrap;
|
|
747
|
-
color: #1a2732;
|
|
748
|
-
text-transform: initial;
|
|
749
|
-
border-radius: 4px;
|
|
750
|
-
font-weight: 600;
|
|
751
|
-
line-height: 38px;
|
|
752
|
-
display: flex;
|
|
753
|
-
align-items: center;
|
|
754
|
-
}
|
|
755
|
-
.secondary-button.dark[data-v-ab516b6a] {
|
|
756
|
-
height: 40px;
|
|
757
|
-
padding: 0 var(--spacing-16);
|
|
758
|
-
background: var(--surface-primary);
|
|
759
|
-
color: var(--text-primary);
|
|
760
|
-
text-decoration: none;
|
|
761
|
-
border-radius: var(--border-radius-6);
|
|
762
|
-
border: solid var(--border) 1px;
|
|
763
|
-
font-size: var(--font-size-14);
|
|
764
|
-
line-height: var(--line-height-24);
|
|
765
|
-
transition: 0.3s;
|
|
766
|
-
}
|
|
767
|
-
.secondary-button.dark[data-v-ab516b6a]:hover {
|
|
768
|
-
background: var(--surface-tertiary);
|
|
769
|
-
border-color: var(--border);
|
|
770
|
-
}
|
|
771
|
-
.secondary-button i.icon[data-v-ab516b6a] {
|
|
772
|
-
vertical-align: middle;
|
|
773
|
-
}
|
|
774
|
-
.secondary-button .spinner-solid[data-v-ab516b6a] {
|
|
775
|
-
color: #1a2732;
|
|
776
|
-
animation: spin-ab516b6a 2s linear infinite;
|
|
777
|
-
vertical-align: middle;
|
|
778
|
-
transition: width 300ms, height 300ms;
|
|
779
|
-
margin-left: 8px;
|
|
780
|
-
}
|
|
781
|
-
.secondary-button .left-icon[data-v-ab516b6a] {
|
|
782
|
-
margin-right: 4px;
|
|
783
|
-
}
|
|
784
|
-
.secondary-button.disabled[data-v-ab516b6a], .secondary-button.btn-secondary[data-v-ab516b6a]:disabled, .secondary-button.btn[disabled][data-v-ab516b6a] {
|
|
785
|
-
background-color: #f1f5f9 !important;
|
|
786
|
-
color: #94a3b8;
|
|
787
|
-
}
|
|
788
|
-
.secondary-button.disabled .spinner-solid[data-v-ab516b6a], .secondary-button.btn-secondary:disabled .spinner-solid[data-v-ab516b6a], .secondary-button.btn[disabled] .spinner-solid[data-v-ab516b6a] {
|
|
789
|
-
color: #94a3b8 !important;
|
|
790
|
-
}
|
|
791
|
-
@keyframes spin-ab516b6a {
|
|
792
|
-
100% {
|
|
793
|
-
transform: rotate(360deg);
|
|
794
|
-
}
|
|
795
|
-
}
|
|
796
|
-
#modalTracked {
|
|
797
|
-
color: #253746;
|
|
798
|
-
}
|
|
799
|
-
#modalTracked.dark {
|
|
800
|
-
color: #ffffff !important;
|
|
801
|
-
}
|
|
802
|
-
#modalTracked.dark i.icon:before {
|
|
803
|
-
background-color: #ffffff !important;
|
|
804
|
-
}
|
|
805
|
-
#modalTracked .modal-content #tracked-content {
|
|
806
|
-
display: flex;
|
|
807
|
-
align-items: center;
|
|
808
|
-
}
|
|
809
|
-
#modalTracked .modal-content #tracked-content p {
|
|
810
|
-
margin: 0;
|
|
811
|
-
line-height: initial;
|
|
812
|
-
}
|
|
813
|
-
#modalTracked .modal-content #span-clock {
|
|
814
|
-
margin-right: 10px;
|
|
815
|
-
}
|
|
816
|
-
#modalTracked .modal-content #span-clock i {
|
|
817
|
-
font-size: 54px;
|
|
818
|
-
}
|
|
819
|
-
#modalTracked .modal-footer .action-button {
|
|
820
|
-
margin-left: 15px;
|
|
821
|
-
}
|
|
822
|
-
.play-pause {
|
|
823
|
-
display: flex;
|
|
824
|
-
}
|
|
825
|
-
.play-pause i.spinner-solid {
|
|
826
|
-
animation: spin 1s linear infinite;
|
|
827
|
-
}
|
|
828
|
-
@keyframes spin {
|
|
829
|
-
100% {
|
|
830
|
-
transform: rotate(360deg);
|
|
831
|
-
}
|
|
832
|
-
}
|
|
833
|
-
.sub-menu[data-v-25586497] {
|
|
834
|
-
overflow: hidden;
|
|
835
|
-
background-color: #ffffff;
|
|
836
|
-
box-shadow: 0 2px 6px 0 rgba(37, 55, 70, 0.1);
|
|
837
|
-
padding-left: 32px;
|
|
838
|
-
}
|
|
839
|
-
.sub-menu .items[data-v-25586497] {
|
|
840
|
-
width: 100%;
|
|
841
|
-
font-size: 0.94rem;
|
|
842
|
-
font-family: "open sans", sans-serif;
|
|
843
|
-
white-space: nowrap;
|
|
844
|
-
}
|
|
845
|
-
.sub-menu .items a[data-v-25586497] {
|
|
846
|
-
color: #253746;
|
|
847
|
-
padding: 0 5px 5px;
|
|
848
|
-
margin-right: 15px;
|
|
849
|
-
float: left;
|
|
850
|
-
line-height: 29px;
|
|
851
|
-
height: 29px;
|
|
852
|
-
border-bottom: 3px solid white;
|
|
853
|
-
text-decoration: none;
|
|
854
|
-
box-sizing: content-box;
|
|
855
|
-
}
|
|
856
|
-
.sub-menu .items a[data-v-25586497]:hover, .sub-menu .items a.router-link-exact-active[data-v-25586497] {
|
|
857
|
-
-webkit-text-stroke: 0.7px #253746;
|
|
858
|
-
border-bottom: 3px solid #00a58e;
|
|
859
|
-
}
|
|
860
|
-
.image-wrapper.sm[data-v-7393283b] {
|
|
861
|
-
width: 35px;
|
|
862
|
-
height: 35px;
|
|
863
|
-
}
|
|
864
|
-
.image-wrapper.sm .user-image[data-v-7393283b] {
|
|
865
|
-
border: 1px solid #cbd5e1;
|
|
866
|
-
}
|
|
867
|
-
.image-wrapper.sm .user-image.anonymous[data-v-7393283b] {
|
|
868
|
-
font-size: 12px;
|
|
869
|
-
}
|
|
870
|
-
.image-wrapper.sm .user-image.anonymous.dark[data-v-7393283b] {
|
|
871
|
-
background-color: var(--bg-primary);
|
|
872
|
-
color: var(--text-disable);
|
|
873
|
-
border: 1px solid var(--border);
|
|
874
|
-
}
|
|
875
|
-
.image-wrapper.md[data-v-7393283b] {
|
|
876
|
-
height: 44px;
|
|
877
|
-
width: 44px;
|
|
878
|
-
}
|
|
879
|
-
.image-wrapper.md .user-image[data-v-7393283b] {
|
|
880
|
-
border: 1px solid #cbd5e1;
|
|
881
|
-
}
|
|
882
|
-
.image-wrapper.md .user-image.anonymous[data-v-7393283b] {
|
|
883
|
-
font-size: 16px;
|
|
884
|
-
color: #94a3b8;
|
|
885
|
-
}
|
|
886
|
-
.image-wrapper.md .user-image.anonymous.dark[data-v-7393283b] {
|
|
887
|
-
background-color: var(--bg-primary);
|
|
888
|
-
color: var(--text-disable);
|
|
889
|
-
border: 1px solid var(--border);
|
|
890
|
-
}
|
|
891
|
-
.image-wrapper.lg[data-v-7393283b] {
|
|
892
|
-
height: 96px;
|
|
893
|
-
width: 96px;
|
|
894
|
-
}
|
|
895
|
-
.image-wrapper.xl[data-v-7393283b] {
|
|
896
|
-
height: 128px;
|
|
897
|
-
width: 128px;
|
|
898
|
-
}
|
|
899
|
-
.image-wrapper.xl .user-image.anonymous[data-v-7393283b] {
|
|
900
|
-
font-size: 50px;
|
|
901
|
-
color: #94a3b8;
|
|
675
|
+
.image-wrapper.xl .user-image.anonymous[data-v-7393283b] {
|
|
676
|
+
font-size: 50px;
|
|
677
|
+
color: #94a3b8;
|
|
902
678
|
}
|
|
903
679
|
.image-wrapper.xl .user-image.anonymous.dark[data-v-7393283b] {
|
|
904
680
|
background-color: var(--bg-primary);
|
|
@@ -937,7 +713,7 @@
|
|
|
937
713
|
.on-boarding-sign[data-v-0d7f0ada] {
|
|
938
714
|
position: absolute;
|
|
939
715
|
top: 97px;
|
|
940
|
-
right:
|
|
716
|
+
right: 30px;
|
|
941
717
|
width: 485px;
|
|
942
718
|
padding: 1.5rem;
|
|
943
719
|
border-radius: 16px;
|
|
@@ -990,913 +766,231 @@
|
|
|
990
766
|
margin-left: 2rem;
|
|
991
767
|
color: #f8fafc;
|
|
992
768
|
}
|
|
993
|
-
.
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
border-radius: 2px;
|
|
997
|
-
background-color: #ff8036;
|
|
998
|
-
font-family: play, sans-serif;
|
|
999
|
-
font-size: 0.67rem;
|
|
1000
|
-
font-weight: bold;
|
|
1001
|
-
color: #ffffff;
|
|
1002
|
-
padding: 2px;
|
|
1003
|
-
bottom: 1px;
|
|
769
|
+
.intems-menu {
|
|
770
|
+
border-bottom: solid #e2e8f0 1px;
|
|
771
|
+
font-family: "Nunito", sans-serif;
|
|
1004
772
|
}
|
|
1005
|
-
.menu-
|
|
773
|
+
.intems-menu-container {
|
|
774
|
+
position: relative;
|
|
1006
775
|
display: flex;
|
|
1007
|
-
|
|
1008
|
-
justify-content:
|
|
776
|
+
gap: 16px;
|
|
777
|
+
justify-content: space-between;
|
|
1009
778
|
align-items: center;
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
background: #
|
|
1013
|
-
|
|
1014
|
-
font-size: 10px;
|
|
1015
|
-
border-radius: 2px;
|
|
1016
|
-
}
|
|
1017
|
-
.menu-new.horizontal, .menu-new.overflowed {
|
|
1018
|
-
right: 0;
|
|
1019
|
-
top: -16px;
|
|
1020
|
-
color: #ffffff;
|
|
779
|
+
height: 64px;
|
|
780
|
+
padding: 0 20px;
|
|
781
|
+
background-color: #ffffff;
|
|
782
|
+
z-index: 997;
|
|
1021
783
|
}
|
|
1022
|
-
|
|
1023
|
-
|
|
784
|
+
@media only screen and (max-width : 600px) {
|
|
785
|
+
.intems-menu-container {
|
|
786
|
+
gap: 0;
|
|
787
|
+
padding: 0 16px;
|
|
1024
788
|
}
|
|
1025
|
-
.vm--container i.icon.huge {
|
|
1026
|
-
width: 64px;
|
|
1027
|
-
height: 64px !important;
|
|
1028
789
|
}
|
|
1029
|
-
.
|
|
1030
|
-
|
|
790
|
+
.intems-menu-container a, .intems-menu-container a:hover {
|
|
791
|
+
text-decoration: none;
|
|
1031
792
|
}
|
|
1032
|
-
.
|
|
793
|
+
.intems-menu-left {
|
|
1033
794
|
display: flex;
|
|
1034
795
|
align-items: center;
|
|
1035
|
-
|
|
1036
|
-
}
|
|
1037
|
-
.managers-portal-item span:nth-child(2) {
|
|
1038
|
-
display: inline-flex;
|
|
1039
|
-
justify-content: center;
|
|
1040
|
-
align-items: center;
|
|
1041
|
-
width: 24px;
|
|
1042
|
-
height: 24px;
|
|
1043
|
-
margin-left: auto;
|
|
1044
|
-
background-color: #186ade;
|
|
1045
|
-
border-radius: 100%;
|
|
1046
|
-
font-size: 0.67rem;
|
|
1047
|
-
font-weight: 700;
|
|
1048
|
-
color: #ffffff;
|
|
796
|
+
width: 100%;
|
|
1049
797
|
}
|
|
1050
|
-
.
|
|
798
|
+
.intems-menu-toggler {
|
|
1051
799
|
position: relative;
|
|
1052
800
|
display: flex;
|
|
1053
801
|
flex-wrap: wrap;
|
|
1054
802
|
flex-direction: column;
|
|
1055
|
-
justify-content:
|
|
1056
|
-
width:
|
|
1057
|
-
height:
|
|
1058
|
-
|
|
803
|
+
justify-content: space-between;
|
|
804
|
+
width: 15px;
|
|
805
|
+
height: 10px;
|
|
806
|
+
margin-right: 20px;
|
|
1059
807
|
cursor: pointer;
|
|
1060
808
|
}
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
height: 4px;
|
|
809
|
+
@media only screen and (max-width : 600px) {
|
|
810
|
+
.intems-menu-toggler {
|
|
811
|
+
margin-right: 0;
|
|
1065
812
|
}
|
|
1066
|
-
.overflowed-menu-toggler + ul .managers-portal-item {
|
|
1067
|
-
display: flex;
|
|
1068
|
-
align-items: center;
|
|
1069
|
-
justify-content: space-between;
|
|
1070
813
|
}
|
|
1071
|
-
.
|
|
814
|
+
.intems-menu-toggler span {
|
|
1072
815
|
display: inline-block;
|
|
1073
|
-
width:
|
|
1074
|
-
height:
|
|
1075
|
-
border-radius:
|
|
1076
|
-
|
|
1077
|
-
|
|
816
|
+
width: 100%;
|
|
817
|
+
height: 2px;
|
|
818
|
+
border-radius: 2px;
|
|
819
|
+
background-color: #253746;
|
|
820
|
+
transition: width 0.3s 0.2s;
|
|
1078
821
|
}
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
822
|
+
.intems-menu-toggler .icon {
|
|
823
|
+
position: absolute;
|
|
824
|
+
top: 50%;
|
|
825
|
+
right: -9px;
|
|
826
|
+
transform: translateY(-50%);
|
|
827
|
+
width: 16px;
|
|
828
|
+
height: 16px;
|
|
829
|
+
opacity: 0;
|
|
830
|
+
transition: 0.3s;
|
|
1082
831
|
}
|
|
832
|
+
@media only screen and (min-width : 993px) {
|
|
833
|
+
.intems-menu-toggler.lite {
|
|
834
|
+
display: none;
|
|
1083
835
|
}
|
|
1084
|
-
.navbar-fixed {
|
|
1085
|
-
position: relative;
|
|
1086
|
-
display: flex;
|
|
1087
|
-
align-items: center;
|
|
1088
|
-
height: 64px;
|
|
1089
|
-
max-height: 64px;
|
|
1090
|
-
z-index: 997;
|
|
1091
|
-
}
|
|
1092
|
-
.navbar-fixed a,
|
|
1093
|
-
.navbar-fixed a:hover {
|
|
1094
|
-
text-decoration: none;
|
|
1095
|
-
}
|
|
1096
|
-
.navbar-fixed nav {
|
|
1097
|
-
position: fixed;
|
|
1098
|
-
box-shadow: none !important;
|
|
1099
|
-
min-width: 250px;
|
|
1100
|
-
width: 100vw;
|
|
1101
|
-
background-color: #253746;
|
|
1102
|
-
}
|
|
1103
|
-
.navbar-fixed nav ul .href-wrap {
|
|
1104
|
-
position: relative;
|
|
1105
|
-
}
|
|
1106
|
-
.navbar-fixed nav ul a {
|
|
1107
|
-
position: relative;
|
|
1108
|
-
white-space: nowrap;
|
|
1109
|
-
color: #f8fafc;
|
|
1110
|
-
transition: background-color 0.3s;
|
|
1111
|
-
font-size: 18px;
|
|
1112
|
-
display: block;
|
|
1113
|
-
padding: 0 15px;
|
|
1114
|
-
cursor: pointer;
|
|
1115
|
-
}
|
|
1116
|
-
.navbar-fixed nav ul a:hover {
|
|
1117
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
1118
|
-
}
|
|
1119
|
-
.navbar-fixed nav ul a.notifications-trigger {
|
|
1120
|
-
display: inline;
|
|
1121
|
-
}
|
|
1122
|
-
.navbar-fixed nav .brand-logo {
|
|
1123
|
-
position: relative;
|
|
1124
|
-
display: inline-flex;
|
|
1125
|
-
align-items: center;
|
|
1126
|
-
font-weight: bold;
|
|
1127
|
-
text-transform: uppercase;
|
|
1128
|
-
vertical-align: middle;
|
|
1129
|
-
font-family: play, sans-serif;
|
|
1130
|
-
height: inherit;
|
|
1131
|
-
}
|
|
1132
|
-
.navbar-fixed nav .brand-logo img {
|
|
1133
|
-
width: 150px;
|
|
1134
|
-
height: 54px;
|
|
1135
|
-
margin-left: 15px;
|
|
1136
|
-
}
|
|
1137
|
-
@media only screen and (max-width : 600px) {
|
|
1138
|
-
.navbar-fixed nav .brand-logo img {
|
|
1139
|
-
height: 56px;
|
|
1140
|
-
width: 100px;
|
|
1141
|
-
}
|
|
1142
|
-
}
|
|
1143
|
-
@media only screen and (max-width : 992px) {
|
|
1144
|
-
.navbar-fixed nav .brand-logo {
|
|
1145
|
-
order: 1;
|
|
1146
|
-
left: 0;
|
|
1147
|
-
transform: translateX(0);
|
|
1148
|
-
margin: 0 auto;
|
|
1149
|
-
}
|
|
1150
|
-
}
|
|
1151
|
-
.navbar-fixed nav .btn.play-pause {
|
|
1152
|
-
line-height: 42px;
|
|
1153
|
-
padding: 8px;
|
|
1154
|
-
margin-left: 20px;
|
|
1155
|
-
margin-right: 10px;
|
|
1156
|
-
border-radius: 5px;
|
|
1157
|
-
}
|
|
1158
|
-
@media only screen and (max-width : 992px) {
|
|
1159
|
-
.navbar-fixed nav .btn.play-pause {
|
|
1160
|
-
order: 0;
|
|
1161
|
-
margin-left: 12px;
|
|
1162
|
-
}
|
|
1163
|
-
}
|
|
1164
|
-
@media only screen and (max-width : 600px) {
|
|
1165
|
-
.navbar-fixed nav .btn.play-pause {
|
|
1166
|
-
height: 36px;
|
|
1167
|
-
line-height: 36px;
|
|
1168
|
-
padding: 6px 6px;
|
|
1169
|
-
}
|
|
1170
|
-
}
|
|
1171
|
-
.navbar-fixed nav .btn.play-pause > i.icon {
|
|
1172
|
-
vertical-align: baseline;
|
|
1173
|
-
}
|
|
1174
|
-
.navbar-fixed nav .btn.play-pause > i.icon:before {
|
|
1175
|
-
transition: background-color 0.2s ease-out;
|
|
1176
|
-
}
|
|
1177
|
-
.navbar-fixed nav .btn.play-pause > i.icon.pause:before {
|
|
1178
|
-
background-color: #00a58e;
|
|
1179
|
-
}
|
|
1180
|
-
.navbar-fixed nav .btn.play-pause > i.icon.play {
|
|
1181
|
-
color: #ffffff;
|
|
1182
|
-
}
|
|
1183
|
-
.navbar-fixed nav .btn.play-pause:hover > i.icon.play:before {
|
|
1184
|
-
background-color: #00a58e;
|
|
1185
|
-
}
|
|
1186
|
-
.navbar-fixed nav .btn.play-pause:hover > i.icon.pause:before {
|
|
1187
|
-
background-color: #ffffff;
|
|
1188
|
-
}
|
|
1189
|
-
.navbar-fixed nav .menu-items {
|
|
1190
|
-
flex: 1;
|
|
1191
|
-
white-space: nowrap;
|
|
1192
|
-
overflow: initial;
|
|
1193
|
-
font-weight: bold;
|
|
1194
|
-
height: 64px;
|
|
1195
|
-
font-family: play, sans-serif;
|
|
1196
|
-
}
|
|
1197
|
-
.navbar-fixed nav .menu-items.hasOverflow {
|
|
1198
|
-
overflow: hidden;
|
|
1199
|
-
}
|
|
1200
|
-
.navbar-fixed nav .menu-items li {
|
|
1201
|
-
height: 64px;
|
|
1202
|
-
list-style-type: none;
|
|
1203
|
-
float: left;
|
|
1204
|
-
}
|
|
1205
|
-
.navbar-fixed nav .menu-items li a.router-link-active,
|
|
1206
|
-
.navbar-fixed nav .menu-items li a.router-link-exact-active {
|
|
1207
|
-
color: #45d6ad;
|
|
1208
|
-
box-shadow: inset 0px -3px 0px 0 #45d6ad;
|
|
1209
|
-
}
|
|
1210
|
-
.navbar-fixed nav .menu-items li a {
|
|
1211
|
-
display: flex;
|
|
1212
|
-
align-items: center;
|
|
1213
|
-
transition: background-color 0.3s;
|
|
1214
|
-
font-size: 18px;
|
|
1215
|
-
padding: 0 15px;
|
|
1216
|
-
height: 64px;
|
|
1217
|
-
cursor: pointer;
|
|
1218
|
-
}
|
|
1219
|
-
.navbar-fixed nav .menu-items li a:hover {
|
|
1220
|
-
background-color: rgba(0, 0, 0, 0.1);
|
|
1221
|
-
}
|
|
1222
|
-
.navbar-fixed nav .menu-items li ul {
|
|
1223
|
-
background-color: #253746;
|
|
1224
|
-
position: absolute;
|
|
1225
|
-
display: none;
|
|
1226
|
-
margin: 0;
|
|
1227
|
-
padding: 0;
|
|
1228
|
-
}
|
|
1229
|
-
.navbar-fixed nav .menu-items li ul.admin li {
|
|
1230
|
-
width: 100%;
|
|
1231
|
-
}
|
|
1232
|
-
.navbar-fixed nav .menu-items li ul.admin li.subItems i.icon:before {
|
|
1233
|
-
background-color: #1a2732 !important;
|
|
1234
|
-
}
|
|
1235
|
-
.navbar-fixed nav .menu-items li ul.admin li.subItems ul {
|
|
1236
|
-
right: 100%;
|
|
1237
|
-
top: 0;
|
|
1238
|
-
}
|
|
1239
|
-
.navbar-fixed nav .menu-items li ul.admin li:hover > a {
|
|
1240
|
-
background-color: rgba(65, 84, 100, 0.35);
|
|
1241
|
-
}
|
|
1242
|
-
.navbar-fixed nav .menu-items li.subItems {
|
|
1243
|
-
position: relative;
|
|
1244
|
-
}
|
|
1245
|
-
.navbar-fixed nav .menu-items li.subItems i.icon:before {
|
|
1246
|
-
background-color: #1a2732 !important;
|
|
1247
|
-
}
|
|
1248
|
-
.navbar-fixed nav .menu-items li:hover > ul {
|
|
1249
|
-
display: block;
|
|
1250
836
|
}
|
|
1251
|
-
.
|
|
1252
|
-
max-height: 58px;
|
|
1253
|
-
margin: 0 15px;
|
|
1254
|
-
}
|
|
1255
|
-
@media only screen and (max-width : 992px) {
|
|
1256
|
-
.navbar-fixed nav .notifications-bell {
|
|
1257
|
-
order: 0;
|
|
1258
|
-
}
|
|
1259
|
-
.navbar-fixed nav .notifications-bell .v-dropdown-menu__container {
|
|
1260
|
-
transform: translateX(-75%) translateY(0) !important;
|
|
1261
|
-
}
|
|
1262
|
-
}
|
|
1263
|
-
@media only screen and (min-width : 601px) {
|
|
1264
|
-
.navbar-fixed nav .notifications-bell {
|
|
1265
|
-
line-height: 58px;
|
|
1266
|
-
}
|
|
1267
|
-
.navbar-fixed nav .notifications-bell + a {
|
|
1268
|
-
margin-left: 15px;
|
|
1269
|
-
}
|
|
1270
|
-
}
|
|
1271
|
-
@media only screen and (max-width : 600px) {
|
|
1272
|
-
.navbar-fixed nav .notifications-bell {
|
|
1273
|
-
line-height: 58px;
|
|
1274
|
-
}
|
|
1275
|
-
.navbar-fixed nav .notifications-bell .notifications-trigger {
|
|
1276
|
-
padding-bottom: 17px;
|
|
1277
|
-
}
|
|
1278
|
-
.navbar-fixed nav .notifications-bell .v-dropdown-menu__container {
|
|
1279
|
-
left: 0;
|
|
1280
|
-
transform: translateX(0) !important;
|
|
1281
|
-
top: 85px;
|
|
1282
|
-
height: 95%;
|
|
1283
|
-
position: fixed;
|
|
1284
|
-
width: 100vw;
|
|
1285
|
-
}
|
|
1286
|
-
}
|
|
1287
|
-
@media only screen and (max-width : 600px) and (-webkit-min-device-pixel-ratio: 0) {
|
|
1288
|
-
.navbar-fixed nav .notifications-bell .v-dropdown-menu__container {
|
|
1289
|
-
height: 95svh;
|
|
1290
|
-
}
|
|
1291
|
-
}
|
|
1292
|
-
.navbar-fixed nav .menu-items-overflowed {
|
|
1293
|
-
font-weight: bold;
|
|
1294
|
-
font-family: play, sans-serif;
|
|
1295
|
-
position: relative;
|
|
1296
|
-
cursor: pointer;
|
|
1297
|
-
margin-right: 30px;
|
|
1298
|
-
padding: 0 5px;
|
|
1299
|
-
}
|
|
1300
|
-
.navbar-fixed nav .menu-items-overflowed:hover > ul {
|
|
1301
|
-
display: flex;
|
|
1302
|
-
visibility: visible;
|
|
1303
|
-
}
|
|
1304
|
-
.navbar-fixed nav .menu-items-overflowed ul {
|
|
1305
|
-
position: absolute;
|
|
1306
|
-
min-width: 230px;
|
|
1307
|
-
flex-direction: column;
|
|
1308
|
-
background: #253746;
|
|
1309
|
-
visibility: hidden;
|
|
1310
|
-
transition: transform 0.3s, visibility 0.3s;
|
|
1311
|
-
right: 0;
|
|
1312
|
-
bottom: 0;
|
|
1313
|
-
transform: translateY(100%) translateX(0);
|
|
1314
|
-
}
|
|
1315
|
-
.navbar-fixed nav .menu-items-overflowed ul.moved {
|
|
1316
|
-
transform: translateY(100%) translateX(-10%);
|
|
1317
|
-
}
|
|
1318
|
-
.navbar-fixed nav .menu-items-overflowed ul a.router-link-exact-active {
|
|
1319
|
-
background-color: rgba(0, 0, 0, 0.05);
|
|
1320
|
-
}
|
|
1321
|
-
.navbar-fixed nav .menu-items-overflowed ul > li {
|
|
1322
|
-
width: 100%;
|
|
1323
|
-
background-color: #253746;
|
|
1324
|
-
}
|
|
1325
|
-
.navbar-fixed nav .menu-items-overflowed ul > li.subItems i.icon:before {
|
|
1326
|
-
background-color: #ffffff !important;
|
|
1327
|
-
}
|
|
1328
|
-
.navbar-fixed nav .menu-items-overflowed ul > li.subItems ul {
|
|
1329
|
-
top: 0;
|
|
1330
|
-
right: initial;
|
|
1331
|
-
left: 100%;
|
|
1332
|
-
transform: none;
|
|
1333
|
-
}
|
|
1334
|
-
.navbar-fixed nav .menu-items-overflowed ul li a {
|
|
1335
|
-
line-height: 56px;
|
|
1336
|
-
}
|
|
1337
|
-
.navbar-fixed nav .menu-items-overflowed ul li.subItems i.icon:before {
|
|
1338
|
-
background-color: #ffffff !important;
|
|
1339
|
-
}
|
|
1340
|
-
.navbar-fixed nav .menu-items-overflowed ul li.subItems:hover > ul {
|
|
1341
|
-
display: flex;
|
|
1342
|
-
visibility: visible;
|
|
1343
|
-
}
|
|
1344
|
-
.navbar-fixed nav .menu-items-overflowed ul li.subItems a {
|
|
1345
|
-
display: flex;
|
|
1346
|
-
justify-content: space-between;
|
|
1347
|
-
align-items: center;
|
|
1348
|
-
}
|
|
1349
|
-
.navbar-fixed nav .menu-items-overflowed ul > li:hover > a {
|
|
1350
|
-
background-color: rgba(65, 84, 100, 0.35);
|
|
1351
|
-
}
|
|
1352
|
-
.navbar-fixed nav .menu-items-overflowed ul > li:hover > ul > li {
|
|
1353
|
-
background-color: #253746;
|
|
1354
|
-
}
|
|
1355
|
-
.navbar-fixed nav .nav-wrapper {
|
|
1356
|
-
display: flex;
|
|
1357
|
-
align-items: center;
|
|
1358
|
-
margin: 0 20px;
|
|
1359
|
-
position: relative;
|
|
1360
|
-
height: 100%;
|
|
1361
|
-
}
|
|
1362
|
-
@media only screen and (max-width : 430px) {
|
|
1363
|
-
.navbar-fixed nav .nav-wrapper {
|
|
1364
|
-
margin: 0 5px 0 5px;
|
|
1365
|
-
}
|
|
1366
|
-
}
|
|
1367
|
-
.navbar-fixed nav .nav-wrapper .sidebar-toggler {
|
|
1368
|
-
position: relative;
|
|
1369
|
-
display: flex;
|
|
1370
|
-
flex-wrap: wrap;
|
|
1371
|
-
flex-direction: column;
|
|
1372
|
-
justify-content: space-between;
|
|
1373
|
-
width: 20px;
|
|
1374
|
-
height: 14px;
|
|
1375
|
-
cursor: pointer;
|
|
1376
|
-
}
|
|
1377
|
-
.navbar-fixed nav .nav-wrapper .sidebar-toggler span {
|
|
1378
|
-
display: inline-block;
|
|
1379
|
-
width: 100%;
|
|
1380
|
-
height: 2px;
|
|
1381
|
-
border-radius: 2px;
|
|
1382
|
-
background-color: #ffffff;
|
|
1383
|
-
transition: width 0.3s 0.2s;
|
|
1384
|
-
}
|
|
1385
|
-
.navbar-fixed nav .nav-wrapper .sidebar-toggler .icon {
|
|
1386
|
-
position: absolute;
|
|
1387
|
-
top: 50%;
|
|
1388
|
-
right: -7px;
|
|
1389
|
-
transform: translateY(-50%);
|
|
1390
|
-
width: 14px;
|
|
1391
|
-
height: 14px;
|
|
1392
|
-
color: #ffffff;
|
|
1393
|
-
opacity: 0;
|
|
1394
|
-
transition: 0.3s;
|
|
1395
|
-
}
|
|
1396
|
-
.navbar-fixed nav .nav-wrapper .sidebar-toggler.collapsed span:nth-child(2) {
|
|
837
|
+
.intems-menu-toggler.collapsed span:nth-child(2) {
|
|
1397
838
|
width: 75%;
|
|
1398
839
|
transition: width 0.3s;
|
|
1399
840
|
}
|
|
1400
|
-
.
|
|
841
|
+
.intems-menu-toggler.collapsed .icon {
|
|
1401
842
|
opacity: 1;
|
|
1402
843
|
transition: 0.2s 0.3s;
|
|
1403
844
|
}
|
|
1404
|
-
.
|
|
845
|
+
.intems-menu-toggler.open span {
|
|
1405
846
|
position: absolute;
|
|
1406
847
|
transition: 0.5s;
|
|
1407
848
|
}
|
|
1408
|
-
.
|
|
849
|
+
.intems-menu-toggler.open span:first-child, .intems-menu-toggler.open span:nth-child(3) {
|
|
1409
850
|
top: 6px;
|
|
1410
851
|
left: -1px;
|
|
1411
852
|
}
|
|
1412
|
-
.
|
|
853
|
+
.intems-menu-toggler.open span:first-child {
|
|
1413
854
|
transform: rotate(45deg);
|
|
1414
855
|
}
|
|
1415
|
-
.
|
|
856
|
+
.intems-menu-toggler.open span:nth-child(2) {
|
|
1416
857
|
width: 0;
|
|
1417
858
|
opacity: 0;
|
|
1418
859
|
}
|
|
1419
|
-
.
|
|
860
|
+
.intems-menu-toggler.open span:nth-child(3) {
|
|
1420
861
|
transform: rotate(-45deg);
|
|
1421
862
|
}
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
flex-direction: column;
|
|
1427
|
-
justify-content: space-between;
|
|
1428
|
-
min-width: 20px;
|
|
1429
|
-
height: 14px;
|
|
1430
|
-
order: 0;
|
|
1431
|
-
margin: 0 5px;
|
|
1432
|
-
}
|
|
1433
|
-
.navbar-fixed nav .nav-wrapper .mobile-menu-toggler span {
|
|
1434
|
-
display: inline-block;
|
|
1435
|
-
width: 100%;
|
|
1436
|
-
height: 2px;
|
|
1437
|
-
border-radius: 2px;
|
|
1438
|
-
background-color: #ffffff;
|
|
1439
|
-
}
|
|
1440
|
-
}
|
|
1441
|
-
.navbar-fixed nav .nav-wrapper i.icon {
|
|
1442
|
-
height: 24px;
|
|
1443
|
-
vertical-align: middle;
|
|
1444
|
-
}
|
|
1445
|
-
.navbar-fixed nav .nav-wrapper i.icon.icon-medium {
|
|
1446
|
-
height: 16px !important;
|
|
1447
|
-
width: 16px !important;
|
|
1448
|
-
}
|
|
1449
|
-
.navbar-fixed nav .nav-wrapper i.icon:before {
|
|
1450
|
-
background-color: #45d6ad;
|
|
1451
|
-
}
|
|
1452
|
-
.navbar-fixed nav .nav-wrapper i.icon.notification {
|
|
1453
|
-
float: none;
|
|
1454
|
-
margin: 0;
|
|
1455
|
-
}
|
|
1456
|
-
.navbar-fixed nav .nav-wrapper i.icon.notification:before {
|
|
1457
|
-
background-color: #45d6ad;
|
|
1458
|
-
}
|
|
1459
|
-
.navbar-fixed nav .nav-wrapper i.icon.notification.has-unread {
|
|
1460
|
-
position: relative;
|
|
1461
|
-
}
|
|
1462
|
-
.navbar-fixed nav .nav-wrapper i.icon.notification.has-unread:after {
|
|
1463
|
-
content: "";
|
|
1464
|
-
height: 9px;
|
|
1465
|
-
width: 9px;
|
|
1466
|
-
border-radius: 50%;
|
|
1467
|
-
background-color: #ff8041;
|
|
1468
|
-
position: absolute;
|
|
1469
|
-
top: -8px;
|
|
1470
|
-
right: -8px;
|
|
1471
|
-
}
|
|
1472
|
-
.navbar-fixed nav .nav-wrapper .right-side {
|
|
1473
|
-
display: flex;
|
|
1474
|
-
align-items: center;
|
|
1475
|
-
margin-right: 20px;
|
|
1476
|
-
position: relative;
|
|
1477
|
-
max-height: 64px;
|
|
1478
|
-
}
|
|
1479
|
-
@media only screen and (max-width : 992px) {
|
|
1480
|
-
.navbar-fixed nav .nav-wrapper .right-side {
|
|
1481
|
-
order: 3;
|
|
1482
|
-
margin-right: 2px;
|
|
1483
|
-
}
|
|
1484
|
-
}
|
|
1485
|
-
.navbar-fixed nav .nav-wrapper .right-side .icons {
|
|
1486
|
-
display: inline-block;
|
|
1487
|
-
vertical-align: middle;
|
|
1488
|
-
font-size: 1.07rem;
|
|
1489
|
-
line-height: 64px;
|
|
1490
|
-
}
|
|
1491
|
-
.navbar-fixed nav .nav-wrapper .right-side .icons li {
|
|
1492
|
-
transition: background-color 0.3s;
|
|
1493
|
-
float: left;
|
|
1494
|
-
padding: 0;
|
|
1495
|
-
}
|
|
1496
|
-
.navbar-fixed nav .nav-wrapper .right-side .icons .icon + span {
|
|
1497
|
-
vertical-align: middle;
|
|
1498
|
-
margin-left: 8px;
|
|
1499
|
-
font-weight: 500;
|
|
1500
|
-
}
|
|
1501
|
-
.navbar-fixed nav .nav-wrapper .right-side .user-wrapper {
|
|
1502
|
-
padding: 0 15px;
|
|
1503
|
-
display: inline-block;
|
|
1504
|
-
vertical-align: middle;
|
|
1505
|
-
width: -moz-fit-content;
|
|
1506
|
-
width: fit-content;
|
|
1507
|
-
line-height: 64px;
|
|
863
|
+
.intems-menu-logo {
|
|
864
|
+
display: inline-flex;
|
|
865
|
+
width: 90px;
|
|
866
|
+
height: 30px;
|
|
1508
867
|
}
|
|
1509
868
|
@media only screen and (max-width : 600px) {
|
|
1510
|
-
.
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
}
|
|
1514
|
-
}
|
|
1515
|
-
@media only screen and (max-width : 430px) {
|
|
1516
|
-
.navbar-fixed nav .nav-wrapper .right-side .user-wrapper {
|
|
1517
|
-
margin-left: 5px;
|
|
1518
|
-
padding: 0 5px;
|
|
1519
|
-
}
|
|
1520
|
-
}
|
|
1521
|
-
.navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user {
|
|
1522
|
-
display: flex;
|
|
1523
|
-
align-items: center;
|
|
1524
|
-
float: left;
|
|
1525
|
-
vertical-align: middle;
|
|
1526
|
-
height: inherit;
|
|
1527
|
-
}
|
|
1528
|
-
.navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user .image-wrapper {
|
|
1529
|
-
vertical-align: middle;
|
|
1530
|
-
-o-object-fit: cover;
|
|
1531
|
-
object-fit: cover;
|
|
1532
|
-
height: 40px;
|
|
1533
|
-
width: 40px;
|
|
1534
|
-
min-width: 40px;
|
|
1535
|
-
}
|
|
1536
|
-
@media only screen and (max-width : 992px) {
|
|
1537
|
-
.navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user .image-wrapper {
|
|
1538
|
-
height: 32px;
|
|
1539
|
-
width: 32px;
|
|
1540
|
-
min-width: 32px;
|
|
869
|
+
.intems-menu-logo {
|
|
870
|
+
order: 1;
|
|
871
|
+
margin-left: 16px;
|
|
1541
872
|
}
|
|
1542
873
|
}
|
|
1543
|
-
.
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
align-items: center;
|
|
874
|
+
.intems-menu-logo img {
|
|
875
|
+
width: 100%;
|
|
876
|
+
height: 100%;
|
|
1547
877
|
}
|
|
1548
|
-
.
|
|
878
|
+
.intems-menu-links {
|
|
1549
879
|
display: flex;
|
|
880
|
+
justify-content: space-between;
|
|
1550
881
|
align-items: center;
|
|
1551
|
-
|
|
1552
|
-
margin-left:
|
|
1553
|
-
font-size: 0.875rem;
|
|
1554
|
-
cursor: pointer;
|
|
882
|
+
width: 100%;
|
|
883
|
+
margin-left: 12px;
|
|
1555
884
|
}
|
|
1556
885
|
@media only screen and (max-width : 600px) {
|
|
1557
|
-
.
|
|
1558
|
-
margin-left: 5px;
|
|
1559
|
-
}
|
|
1560
|
-
}
|
|
1561
|
-
@media only screen and (max-width : 430px) {
|
|
1562
|
-
.navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user .logout span {
|
|
886
|
+
.intems-menu-links {
|
|
1563
887
|
display: none;
|
|
1564
888
|
}
|
|
1565
889
|
}
|
|
1566
|
-
.
|
|
1567
|
-
margin-left: 0.75rem;
|
|
1568
|
-
color: #f8fafc;
|
|
1569
|
-
}
|
|
1570
|
-
.navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user .logout .icon:before {
|
|
1571
|
-
background-color: #f8fafc;
|
|
1572
|
-
}
|
|
1573
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper {
|
|
1574
|
-
height: 63px;
|
|
1575
|
-
margin-bottom: 1px;
|
|
1576
|
-
padding: 0 15px;
|
|
1577
|
-
display: inline-block;
|
|
1578
|
-
vertical-align: middle;
|
|
1579
|
-
width: -moz-fit-content;
|
|
1580
|
-
width: fit-content;
|
|
1581
|
-
line-height: 64px;
|
|
1582
|
-
}
|
|
1583
|
-
@media only screen and (max-width : 992px) {
|
|
1584
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper {
|
|
1585
|
-
height: auto;
|
|
1586
|
-
}
|
|
1587
|
-
}
|
|
1588
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper:hover {
|
|
1589
|
-
background-color: #3b4d5d;
|
|
1590
|
-
border-radius: 2px;
|
|
1591
|
-
cursor: pointer;
|
|
1592
|
-
}
|
|
1593
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper:before {
|
|
1594
|
-
content: "";
|
|
1595
|
-
position: absolute;
|
|
1596
|
-
right: 158px;
|
|
1597
|
-
bottom: 15px;
|
|
1598
|
-
height: 50%;
|
|
1599
|
-
width: 5px;
|
|
1600
|
-
border-right: 1px solid #3b4d5d;
|
|
1601
|
-
}
|
|
1602
|
-
@media only screen and (max-width : 992px) {
|
|
1603
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper {
|
|
1604
|
-
display: flex;
|
|
1605
|
-
flex-direction: column;
|
|
1606
|
-
align-items: center;
|
|
1607
|
-
padding: 0 5px;
|
|
1608
|
-
}
|
|
1609
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper:hover {
|
|
1610
|
-
background: none;
|
|
1611
|
-
}
|
|
1612
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper:before {
|
|
1613
|
-
content: "";
|
|
1614
|
-
position: absolute;
|
|
1615
|
-
right: 90px;
|
|
1616
|
-
bottom: 5%;
|
|
1617
|
-
height: 90%;
|
|
1618
|
-
width: 5px;
|
|
1619
|
-
border-right: 1px solid #3b4d5d;
|
|
1620
|
-
}
|
|
1621
|
-
}
|
|
1622
|
-
@media only screen and (max-width : 992px) {
|
|
1623
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper a {
|
|
1624
|
-
float: none;
|
|
1625
|
-
line-height: initial;
|
|
1626
|
-
}
|
|
1627
|
-
}
|
|
1628
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-user {
|
|
1629
|
-
display: flex;
|
|
1630
|
-
align-items: center;
|
|
1631
|
-
float: left;
|
|
1632
|
-
vertical-align: middle;
|
|
1633
|
-
height: inherit;
|
|
1634
|
-
}
|
|
1635
|
-
@media only screen and (max-width : 992px) {
|
|
1636
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-user {
|
|
1637
|
-
margin-left: 15px;
|
|
1638
|
-
}
|
|
1639
|
-
}
|
|
1640
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-user .image-wrapper {
|
|
1641
|
-
vertical-align: middle;
|
|
1642
|
-
-o-object-fit: cover;
|
|
1643
|
-
object-fit: cover;
|
|
1644
|
-
height: 40px;
|
|
1645
|
-
width: 40px;
|
|
1646
|
-
min-width: 40px;
|
|
1647
|
-
}
|
|
1648
|
-
@media only screen and (max-width : 992px) {
|
|
1649
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-user .image-wrapper {
|
|
1650
|
-
height: 32px;
|
|
1651
|
-
width: 32px;
|
|
1652
|
-
min-width: 32px;
|
|
1653
|
-
}
|
|
1654
|
-
}
|
|
1655
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-user .image-wrapper .user-image {
|
|
1656
|
-
display: flex;
|
|
1657
|
-
justify-content: center;
|
|
1658
|
-
align-items: center;
|
|
1659
|
-
}
|
|
1660
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-logo {
|
|
1661
|
-
vertical-align: middle;
|
|
1662
|
-
margin-left: 15px;
|
|
1663
|
-
text-decoration: none;
|
|
1664
|
-
color: #45d6ad;
|
|
1665
|
-
font-family: play, sans-serif;
|
|
1666
|
-
font-weight: 700;
|
|
1667
|
-
font-size: 16px;
|
|
1668
|
-
}
|
|
1669
|
-
.navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-logo.white-font {
|
|
1670
|
-
color: #ffffff;
|
|
1671
|
-
}
|
|
1672
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown {
|
|
1673
|
-
min-width: -moz-fit-content;
|
|
1674
|
-
min-width: fit-content;
|
|
1675
|
-
padding: 10px;
|
|
1676
|
-
border-radius: 4px;
|
|
1677
|
-
box-shadow: 0 2px 6px 0 rgba(37, 55, 70, 0.1);
|
|
1678
|
-
}
|
|
1679
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown #avatar_dropdown_li {
|
|
1680
|
-
display: flex;
|
|
1681
|
-
}
|
|
1682
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown .avatar {
|
|
1683
|
-
width: 44px;
|
|
1684
|
-
height: 44px;
|
|
1685
|
-
-o-object-fit: cover;
|
|
1686
|
-
object-fit: cover;
|
|
1687
|
-
vertical-align: middle;
|
|
1688
|
-
}
|
|
1689
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div {
|
|
1690
|
-
display: inline-block;
|
|
1691
|
-
}
|
|
1692
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div p {
|
|
1693
|
-
margin: 0;
|
|
1694
|
-
white-space: nowrap;
|
|
1695
|
-
}
|
|
1696
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div p#empl_name {
|
|
1697
|
-
font-weight: bold;
|
|
1698
|
-
color: #1a2732;
|
|
1699
|
-
}
|
|
1700
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div .employee-position {
|
|
1701
|
-
color: #64748b;
|
|
1702
|
-
}
|
|
1703
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div#avatar_div {
|
|
1704
|
-
float: right;
|
|
1705
|
-
margin-left: 26px;
|
|
1706
|
-
}
|
|
1707
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown li {
|
|
1708
|
-
min-height: 2em;
|
|
1709
|
-
background-color: #ffffff;
|
|
1710
|
-
}
|
|
1711
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown li.divider {
|
|
1712
|
-
background-color: #cbd5e1;
|
|
1713
|
-
margin: 10px 0;
|
|
1714
|
-
min-height: 1px;
|
|
1715
|
-
}
|
|
1716
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown li > a {
|
|
1717
|
-
background-color: #ffffff;
|
|
1718
|
-
padding: 0 0 0 0;
|
|
1719
|
-
color: #1a2732;
|
|
1720
|
-
border-bottom: none;
|
|
1721
|
-
}
|
|
1722
|
-
.navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown li > a:hover {
|
|
1723
|
-
color: #008c79;
|
|
1724
|
-
}
|
|
1725
|
-
#mobile-menu {
|
|
1726
|
-
font-family: play, sans-serif;
|
|
1727
|
-
font-weight: bold;
|
|
1728
|
-
width: 100%;
|
|
1729
|
-
height: 100%;
|
|
1730
|
-
background-color: #253746;
|
|
1731
|
-
}
|
|
1732
|
-
#mobile-menu.sidenav-mobile {
|
|
1733
|
-
position: fixed;
|
|
1734
|
-
left: 0;
|
|
1735
|
-
top: 0;
|
|
1736
|
-
margin: 0;
|
|
1737
|
-
padding-bottom: 60px;
|
|
1738
|
-
z-index: 999;
|
|
1739
|
-
overflow-y: auto;
|
|
1740
|
-
will-change: transform;
|
|
1741
|
-
backface-visibility: hidden;
|
|
1742
|
-
font-size: 14px;
|
|
1743
|
-
line-height: 1.5;
|
|
890
|
+
.intems-menu-links a {
|
|
1744
891
|
color: #253746;
|
|
1745
|
-
|
|
1746
|
-
transition:
|
|
1747
|
-
/* Add this line for the transition effect */
|
|
1748
|
-
}
|
|
1749
|
-
#mobile-menu.sidenav-mobile li > a {
|
|
1750
|
-
display: flex;
|
|
1751
|
-
align-items: center;
|
|
1752
|
-
justify-content: space-between;
|
|
1753
|
-
font-size: 18px;
|
|
1754
|
-
font-weight: 500;
|
|
1755
|
-
height: 48px;
|
|
1756
|
-
line-height: 48px;
|
|
1757
|
-
padding: 0 32px;
|
|
1758
|
-
}
|
|
1759
|
-
#mobile-menu.sidenav-mobile li > a:hover {
|
|
1760
|
-
background-color: rgba(0, 0, 0, 0.05);
|
|
1761
|
-
}
|
|
1762
|
-
#mobile-menu.sidenav-mobile.opened {
|
|
1763
|
-
transform: translateX(0%);
|
|
1764
|
-
}
|
|
1765
|
-
#mobile-menu a {
|
|
1766
|
-
position: relative;
|
|
1767
|
-
font-size: 18px;
|
|
1768
|
-
color: #ffffff;
|
|
1769
|
-
}
|
|
1770
|
-
#mobile-menu a.router-link-exact-active {
|
|
1771
|
-
color: #00a58e;
|
|
1772
|
-
}
|
|
1773
|
-
#mobile-menu a:hover {
|
|
1774
|
-
color: #00a58e;
|
|
1775
|
-
}
|
|
1776
|
-
#mobile-menu a .href-wrap {
|
|
1777
|
-
position: relative;
|
|
1778
|
-
}
|
|
1779
|
-
#mobile-menu .divider {
|
|
1780
|
-
margin: 8px 0;
|
|
1781
|
-
background-color: #64748b;
|
|
1782
|
-
}
|
|
1783
|
-
#mobile-menu li a.router-link-exact-active {
|
|
1784
|
-
background-color: rgba(0, 0, 0, 0.05);
|
|
1785
|
-
}
|
|
1786
|
-
#mobile-menu .admin {
|
|
1787
|
-
background-color: #253746;
|
|
1788
|
-
}
|
|
1789
|
-
#mobile-menu .admin i {
|
|
1790
|
-
color: #ffffff;
|
|
1791
|
-
}
|
|
1792
|
-
#mobile-menu .admin > li > ul {
|
|
1793
|
-
transition: max-height 2s;
|
|
1794
|
-
background: #e5feff;
|
|
1795
|
-
overflow: hidden;
|
|
1796
|
-
max-height: 0;
|
|
892
|
+
font-weight: 600;
|
|
893
|
+
transition: 0.3s;
|
|
1797
894
|
}
|
|
1798
|
-
|
|
1799
|
-
|
|
895
|
+
.intems-menu-links a .icon {
|
|
896
|
+
transition: 0.3s;
|
|
1800
897
|
}
|
|
1801
|
-
|
|
1802
|
-
|
|
898
|
+
.intems-menu-links a:hover {
|
|
899
|
+
color: #00a58e;
|
|
1803
900
|
}
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
background-color: #253746;
|
|
901
|
+
.intems-menu-links a:hover .icon {
|
|
902
|
+
color: #00a58e;
|
|
1807
903
|
}
|
|
1808
|
-
|
|
1809
|
-
|
|
904
|
+
.intems-menu-right {
|
|
905
|
+
position: relative;
|
|
906
|
+
display: flex;
|
|
907
|
+
align-items: center;
|
|
1810
908
|
}
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
width: 100%;
|
|
909
|
+
.intems-menu-right .icon {
|
|
910
|
+
color: #253746;
|
|
1814
911
|
}
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
912
|
+
.intems-menu-additional, .intems-menu-notifications-bell {
|
|
913
|
+
display: flex;
|
|
914
|
+
height: 44px;
|
|
915
|
+
padding: 6px 22px !important;
|
|
916
|
+
border-right: solid #cbd5e1 1px;
|
|
1818
917
|
}
|
|
1819
|
-
|
|
1820
|
-
|
|
918
|
+
@media only screen and (max-width : 600px) {
|
|
919
|
+
.intems-menu-additional, .intems-menu-notifications-bell {
|
|
920
|
+
padding: 6px 16px !important;
|
|
1821
921
|
}
|
|
1822
|
-
#mobile-menu #mobile-menu-head > div > a.brand-logo {
|
|
1823
|
-
font-family: play, sans-serif;
|
|
1824
|
-
font-weight: bold;
|
|
1825
922
|
}
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
923
|
+
.intems-menu-additional {
|
|
924
|
+
align-items: center;
|
|
925
|
+
gap: 24px;
|
|
926
|
+
margin: 0;
|
|
927
|
+
border-left: solid #cbd5e1 1px;
|
|
1829
928
|
}
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
border-style: solid;
|
|
1834
|
-
border-bottom: none;
|
|
1835
|
-
margin: 0.5rem 0 1rem 0;
|
|
929
|
+
@media only screen and (max-width : 992px) {
|
|
930
|
+
.intems-menu-additional {
|
|
931
|
+
display: none;
|
|
1836
932
|
}
|
|
1837
|
-
#mobile-menu .collapsible-mobile li i {
|
|
1838
|
-
float: right;
|
|
1839
933
|
}
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
934
|
+
.intems-menu-additional li a {
|
|
935
|
+
display: flex;
|
|
936
|
+
align-items: center;
|
|
937
|
+
gap: 8px;
|
|
938
|
+
color: #253746;
|
|
939
|
+
font-weight: 600;
|
|
940
|
+
cursor: pointer;
|
|
941
|
+
transition: 0.3s;
|
|
1844
942
|
}
|
|
1845
|
-
|
|
1846
|
-
color: #
|
|
1847
|
-
padding: 5px 32px;
|
|
943
|
+
.intems-menu-additional li a:hover {
|
|
944
|
+
color: #00a58e;
|
|
1848
945
|
}
|
|
1849
|
-
|
|
1850
|
-
|
|
946
|
+
.intems-menu-additional li a:hover .icon {
|
|
947
|
+
color: #00a58e;
|
|
1851
948
|
}
|
|
1852
|
-
|
|
1853
|
-
|
|
949
|
+
.intems-menu-additional li a.no-kudos {
|
|
950
|
+
cursor: default;
|
|
1854
951
|
}
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
transition: opacity 0.5s;
|
|
952
|
+
.intems-menu-additional li a.no-kudos:hover {
|
|
953
|
+
color: #253746;
|
|
1858
954
|
}
|
|
1859
|
-
|
|
1860
|
-
|
|
955
|
+
.intems-menu-additional li a.no-kudos:hover .icon {
|
|
956
|
+
color: #253746;
|
|
1861
957
|
}
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
padding: 0;
|
|
958
|
+
.intems-menu-additional li a .icon {
|
|
959
|
+
transition: 0.3s;
|
|
1865
960
|
}
|
|
1866
|
-
|
|
1867
|
-
display:
|
|
1868
|
-
|
|
961
|
+
.intems-menu-user {
|
|
962
|
+
display: flex;
|
|
963
|
+
align-items: center;
|
|
964
|
+
padding: 6px 0 6px 16px;
|
|
1869
965
|
}
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
966
|
+
@media only screen and (max-width : 600px) {
|
|
967
|
+
.intems-menu-user {
|
|
968
|
+
padding: 6px 0 6px 8px;
|
|
1873
969
|
}
|
|
1874
|
-
#mobile-menu #mobile-menu-head_avatar p#mobile-menu-empl_name {
|
|
1875
|
-
font-weight: bold;
|
|
1876
970
|
}
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
971
|
+
.intems-menu-user .intellihub-logo {
|
|
972
|
+
margin-left: 20px;
|
|
973
|
+
color: #45d6ad;
|
|
974
|
+
font-size: 0.94rem;
|
|
975
|
+
font-weight: 700;
|
|
1880
976
|
}
|
|
1881
|
-
|
|
1882
|
-
|
|
977
|
+
@media only screen and (max-width : 600px) {
|
|
978
|
+
.intems-menu-user .intellihub-logo {
|
|
979
|
+
margin-left: 4px;
|
|
1883
980
|
}
|
|
1884
|
-
#mobile-menu #mobile-menu-head_avatar #mobile-menu-avatar_div .avatar {
|
|
1885
|
-
width: 44px;
|
|
1886
|
-
height: 44px;
|
|
1887
|
-
-o-object-fit: cover;
|
|
1888
|
-
object-fit: cover;
|
|
1889
|
-
vertical-align: middle;
|
|
1890
981
|
}
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
982
|
+
.intems-menu-logout {
|
|
983
|
+
display: flex;
|
|
984
|
+
align-items: center;
|
|
985
|
+
color: #253746;
|
|
986
|
+
margin-left: 16px;
|
|
987
|
+
cursor: pointer;
|
|
988
|
+
font-size: 0.94rem;
|
|
989
|
+
font-weight: 600;
|
|
1897
990
|
}
|
|
1898
|
-
.
|
|
1899
|
-
|
|
991
|
+
.intems-menu-logout .icon {
|
|
992
|
+
margin-left: 8px;
|
|
993
|
+
color: #253746;
|
|
1900
994
|
}
|
|
1901
995
|
.tooltip {
|
|
1902
996
|
display: block !important;
|
|
@@ -1933,6 +1027,116 @@
|
|
|
1933
1027
|
opacity: 1;
|
|
1934
1028
|
transition: opacity 0.15s;
|
|
1935
1029
|
}
|
|
1030
|
+
@keyframes ring {
|
|
1031
|
+
0% {
|
|
1032
|
+
transform: rotate(0);
|
|
1033
|
+
}
|
|
1034
|
+
1% {
|
|
1035
|
+
transform: rotate(32deg);
|
|
1036
|
+
}
|
|
1037
|
+
3% {
|
|
1038
|
+
transform: rotate(-30deg);
|
|
1039
|
+
}
|
|
1040
|
+
5% {
|
|
1041
|
+
transform: rotate(42deg);
|
|
1042
|
+
}
|
|
1043
|
+
7% {
|
|
1044
|
+
transform: rotate(-40deg);
|
|
1045
|
+
}
|
|
1046
|
+
9% {
|
|
1047
|
+
transform: rotate(36deg);
|
|
1048
|
+
}
|
|
1049
|
+
11% {
|
|
1050
|
+
transform: rotate(-34deg);
|
|
1051
|
+
}
|
|
1052
|
+
13% {
|
|
1053
|
+
transform: rotate(32deg);
|
|
1054
|
+
}
|
|
1055
|
+
15% {
|
|
1056
|
+
transform: rotate(-30deg);
|
|
1057
|
+
}
|
|
1058
|
+
17% {
|
|
1059
|
+
transform: rotate(30deg);
|
|
1060
|
+
}
|
|
1061
|
+
19% {
|
|
1062
|
+
transform: rotate(-28deg);
|
|
1063
|
+
}
|
|
1064
|
+
21% {
|
|
1065
|
+
transform: rotate(28deg);
|
|
1066
|
+
}
|
|
1067
|
+
23% {
|
|
1068
|
+
transform: rotate(-26deg);
|
|
1069
|
+
}
|
|
1070
|
+
25% {
|
|
1071
|
+
transform: rotate(26deg);
|
|
1072
|
+
}
|
|
1073
|
+
27% {
|
|
1074
|
+
transform: rotate(-24deg);
|
|
1075
|
+
}
|
|
1076
|
+
29% {
|
|
1077
|
+
transform: rotate(24deg);
|
|
1078
|
+
}
|
|
1079
|
+
31% {
|
|
1080
|
+
transform: rotate(-22deg);
|
|
1081
|
+
}
|
|
1082
|
+
33% {
|
|
1083
|
+
transform: rotate(23deg);
|
|
1084
|
+
}
|
|
1085
|
+
35% {
|
|
1086
|
+
transform: rotate(-21deg);
|
|
1087
|
+
}
|
|
1088
|
+
37% {
|
|
1089
|
+
transform: rotate(22deg);
|
|
1090
|
+
}
|
|
1091
|
+
39% {
|
|
1092
|
+
transform: rotate(-20deg);
|
|
1093
|
+
}
|
|
1094
|
+
41% {
|
|
1095
|
+
transform: rotate(21deg);
|
|
1096
|
+
}
|
|
1097
|
+
43% {
|
|
1098
|
+
transform: rotate(-19deg);
|
|
1099
|
+
}
|
|
1100
|
+
45% {
|
|
1101
|
+
transform: rotate(18deg);
|
|
1102
|
+
}
|
|
1103
|
+
47% {
|
|
1104
|
+
transform: rotate(-16deg);
|
|
1105
|
+
}
|
|
1106
|
+
50% {
|
|
1107
|
+
transform: rotate(14deg);
|
|
1108
|
+
}
|
|
1109
|
+
52% {
|
|
1110
|
+
transform: rotate(-12deg);
|
|
1111
|
+
}
|
|
1112
|
+
54% {
|
|
1113
|
+
transform: rotate(10deg);
|
|
1114
|
+
}
|
|
1115
|
+
56% {
|
|
1116
|
+
transform: rotate(-8deg);
|
|
1117
|
+
}
|
|
1118
|
+
58% {
|
|
1119
|
+
transform: rotate(6deg);
|
|
1120
|
+
}
|
|
1121
|
+
60% {
|
|
1122
|
+
transform: rotate(-4deg);
|
|
1123
|
+
}
|
|
1124
|
+
62% {
|
|
1125
|
+
transform: rotate(2deg);
|
|
1126
|
+
}
|
|
1127
|
+
64% {
|
|
1128
|
+
transform: rotate(-1deg);
|
|
1129
|
+
}
|
|
1130
|
+
66% {
|
|
1131
|
+
transform: rotate(1deg);
|
|
1132
|
+
}
|
|
1133
|
+
70% {
|
|
1134
|
+
transform: rotate(0);
|
|
1135
|
+
}
|
|
1136
|
+
100% {
|
|
1137
|
+
transform: rotate(0);
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1936
1140
|
main {
|
|
1937
1141
|
overflow: auto;
|
|
1938
1142
|
position: relative;
|
|
@@ -1959,6 +1163,18 @@ main {
|
|
|
1959
1163
|
.margin-top-50 {
|
|
1960
1164
|
margin-top: 50px;
|
|
1961
1165
|
}
|
|
1166
|
+
.margin-left-15 {
|
|
1167
|
+
margin-left: 15px;
|
|
1168
|
+
}
|
|
1169
|
+
.margin-left-8 {
|
|
1170
|
+
margin-left: 8px;
|
|
1171
|
+
}
|
|
1172
|
+
.margin-bottom-5 {
|
|
1173
|
+
margin-bottom: 5px;
|
|
1174
|
+
}
|
|
1175
|
+
.margin-bottom-15 {
|
|
1176
|
+
margin-bottom: 15px;
|
|
1177
|
+
}
|
|
1962
1178
|
.title-row {
|
|
1963
1179
|
margin: 30px 0 40px;
|
|
1964
1180
|
}
|
|
@@ -1970,6 +1186,12 @@ main {
|
|
|
1970
1186
|
.title-row button {
|
|
1971
1187
|
order: 2;
|
|
1972
1188
|
}
|
|
1189
|
+
.flex {
|
|
1190
|
+
display: flex;
|
|
1191
|
+
}
|
|
1192
|
+
.flex.vertical-center {
|
|
1193
|
+
align-items: center;
|
|
1194
|
+
}
|
|
1973
1195
|
.center {
|
|
1974
1196
|
text-align: center;
|
|
1975
1197
|
justify-content: center;
|
|
@@ -1980,6 +1202,26 @@ main {
|
|
|
1980
1202
|
.pointer {
|
|
1981
1203
|
cursor: pointer;
|
|
1982
1204
|
}
|
|
1205
|
+
.primary-text {
|
|
1206
|
+
font-size: 14px !important;
|
|
1207
|
+
line-height: 1.29;
|
|
1208
|
+
font-weight: bold;
|
|
1209
|
+
}
|
|
1210
|
+
.semi-primary-text {
|
|
1211
|
+
font-size: 14px;
|
|
1212
|
+
line-height: 1.25;
|
|
1213
|
+
font-weight: normal;
|
|
1214
|
+
}
|
|
1215
|
+
.error-text {
|
|
1216
|
+
color: #da1e28;
|
|
1217
|
+
}
|
|
1218
|
+
.error-text span {
|
|
1219
|
+
color: #da1e28 !important;
|
|
1220
|
+
}
|
|
1221
|
+
.text-muted {
|
|
1222
|
+
font-size: 12px;
|
|
1223
|
+
color: #64748b;
|
|
1224
|
+
}
|
|
1983
1225
|
.modal.confirm {
|
|
1984
1226
|
box-sizing: border-box;
|
|
1985
1227
|
min-width: 280px;
|
|
@@ -2014,92 +1256,59 @@ main {
|
|
|
2014
1256
|
margin-right: 0;
|
|
2015
1257
|
padding-right: 0;
|
|
2016
1258
|
}
|
|
2017
|
-
.give-kudos
|
|
2018
|
-
|
|
2019
|
-
}
|
|
2020
|
-
.give-kudos a {
|
|
2021
|
-
font-weight: bold;
|
|
2022
|
-
}
|
|
2023
|
-
.give-kudos .subtitle {
|
|
2024
|
-
padding: 0px 0 30px 0;
|
|
2025
|
-
}
|
|
2026
|
-
.give-kudos .subtitle a,
|
|
2027
|
-
.give-kudos .subtitle a:hover {
|
|
1259
|
+
.give-kudos a,
|
|
1260
|
+
.give-kudos a:hover {
|
|
2028
1261
|
text-decoration: none;
|
|
2029
1262
|
color: #008c79;
|
|
2030
1263
|
}
|
|
2031
|
-
.give-kudos
|
|
1264
|
+
.give-kudos a.portals-link {
|
|
2032
1265
|
color: var(--text-link);
|
|
2033
1266
|
font-size: var(--font-size-14);
|
|
2034
1267
|
font-weight: 600;
|
|
2035
1268
|
text-decoration: underline;
|
|
2036
1269
|
}
|
|
2037
|
-
.give-kudos
|
|
1270
|
+
.give-kudos a.portals-link:hover {
|
|
2038
1271
|
color: var(--text-link-hover);
|
|
2039
1272
|
}
|
|
2040
|
-
.give-kudos .form {
|
|
2041
|
-
display: grid;
|
|
2042
|
-
grid-template-columns: auto 207px;
|
|
2043
|
-
grid-gap: 15px;
|
|
2044
|
-
/* Chrome, Safari, Edge, Opera */
|
|
1273
|
+
.give-kudos .kudos-form {
|
|
2045
1274
|
/* Firefox */
|
|
2046
1275
|
}
|
|
2047
|
-
.give-kudos .form .
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
white-space: nowrap;
|
|
2052
|
-
}
|
|
2053
|
-
.give-kudos .form .v-select .vs__dropdown-toggle {
|
|
2054
|
-
border-radius: 6px;
|
|
1276
|
+
.give-kudos .kudos-form .rows-group {
|
|
1277
|
+
display: grid;
|
|
1278
|
+
grid-template-columns: 1fr 200px;
|
|
1279
|
+
grid-column-gap: 32px;
|
|
2055
1280
|
}
|
|
2056
|
-
.give-kudos .form .kudos-quantity {
|
|
2057
|
-
|
|
1281
|
+
.give-kudos .kudos-form .kudos-quantity {
|
|
1282
|
+
width: 100%;
|
|
1283
|
+
height: 40px;
|
|
1284
|
+
padding: 0 15px;
|
|
2058
1285
|
margin: 0;
|
|
2059
1286
|
border: solid 1px #cbd5e1;
|
|
2060
|
-
background-color: #ffffff;
|
|
2061
1287
|
border-radius: 6px;
|
|
2062
1288
|
box-sizing: inherit;
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
.give-kudos .form .kudos-quantity.theme-reactive {
|
|
2066
|
-
border: solid 1px var(--border);
|
|
2067
|
-
background-color: var(--surface-primary);
|
|
2068
|
-
color: var(--text-primary);
|
|
2069
|
-
}
|
|
2070
|
-
.give-kudos .form .kudos-quantity.wide {
|
|
2071
|
-
width: 207px;
|
|
1289
|
+
font-size: 14px;
|
|
1290
|
+
font-weight: 600;
|
|
2072
1291
|
}
|
|
2073
|
-
.give-kudos .form .kudos-quantity:focus,
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
border: solid 1px #00a58e !important;
|
|
2077
|
-
box-shadow: none;
|
|
1292
|
+
.give-kudos .kudos-form .kudos-quantity:focus, .give-kudos .kudos-form .kudos-quantity:active, .give-kudos .kudos-form .kudos-quantity:focus-visible {
|
|
1293
|
+
border: solid 1px #00a58e;
|
|
1294
|
+
box-shadow: none !important;
|
|
2078
1295
|
outline: none !important;
|
|
2079
1296
|
}
|
|
2080
|
-
.give-kudos .form
|
|
2081
|
-
|
|
2082
|
-
-
|
|
2083
|
-
|
|
1297
|
+
.give-kudos .kudos-form .kudos-quantity:disabled {
|
|
1298
|
+
color: #94a3b8;
|
|
1299
|
+
font-weight: 400;
|
|
1300
|
+
background-color: #f1f5f9;
|
|
2084
1301
|
}
|
|
2085
|
-
.give-kudos .form input[type=number] {
|
|
1302
|
+
.give-kudos .kudos-form input[type=number] {
|
|
2086
1303
|
-moz-appearance: textfield;
|
|
2087
1304
|
}
|
|
2088
|
-
.give-kudos .form .
|
|
2089
|
-
|
|
2090
|
-
margin-right: 1px;
|
|
2091
|
-
}
|
|
2092
|
-
.give-kudos .form .block-kudos-quantity {
|
|
2093
|
-
width: 207px;
|
|
2094
|
-
}
|
|
2095
|
-
.give-kudos .form .block-kudos-category {
|
|
2096
|
-
margin-right: 5px;
|
|
1305
|
+
.give-kudos .kudos-form .v-select .vs__dropdown-toggle {
|
|
1306
|
+
border-radius: 6px;
|
|
2097
1307
|
}
|
|
2098
|
-
.give-kudos .form .
|
|
2099
|
-
|
|
2100
|
-
margin-right: 1px;
|
|
1308
|
+
.give-kudos .kudos-form .v-select .vs__deselect {
|
|
1309
|
+
margin-left: 15px;
|
|
2101
1310
|
}
|
|
2102
|
-
.give-kudos .form
|
|
1311
|
+
.give-kudos .kudos-form textarea {
|
|
2103
1312
|
resize: none;
|
|
2104
1313
|
min-height: 100px;
|
|
2105
1314
|
max-height: 300px;
|
|
@@ -2110,47 +1319,41 @@ main {
|
|
|
2110
1319
|
padding: 10px;
|
|
2111
1320
|
font-size: 14px;
|
|
2112
1321
|
}
|
|
2113
|
-
.give-kudos .form
|
|
2114
|
-
border: solid 1px var(--border);
|
|
2115
|
-
background-color: var(--surface-primary);
|
|
2116
|
-
color: var(--text-primary);
|
|
2117
|
-
}
|
|
2118
|
-
.give-kudos .form .description textarea.theme-reactive:focus {
|
|
2119
|
-
border: solid 1px var(--accent-primary);
|
|
2120
|
-
}
|
|
2121
|
-
.give-kudos .form .description textarea::-moz-placeholder {
|
|
1322
|
+
.give-kudos .kudos-form textarea::-moz-placeholder {
|
|
2122
1323
|
color: #5a6c7c;
|
|
2123
1324
|
font-size: 14px;
|
|
2124
1325
|
}
|
|
2125
|
-
.give-kudos .form
|
|
1326
|
+
.give-kudos .kudos-form textarea::placeholder {
|
|
2126
1327
|
color: #5a6c7c;
|
|
2127
1328
|
font-size: 14px;
|
|
2128
1329
|
}
|
|
2129
|
-
.give-kudos .form .
|
|
1330
|
+
.give-kudos .kudos-form .portals-input {
|
|
1331
|
+
border: solid 1px var(--border);
|
|
1332
|
+
background-color: var(--surface-primary);
|
|
1333
|
+
color: var(--text-primary);
|
|
1334
|
+
}
|
|
1335
|
+
.give-kudos .kudos-form .portals-input:focus {
|
|
1336
|
+
border: solid 1px var(--accent-primary);
|
|
1337
|
+
}
|
|
1338
|
+
.give-kudos .kudos-form .textarea-info {
|
|
2130
1339
|
display: flex;
|
|
2131
1340
|
flex-direction: column;
|
|
2132
|
-
align-items: end;
|
|
1341
|
+
align-items: flex-end;
|
|
2133
1342
|
font-size: var(--font-size-10);
|
|
2134
1343
|
}
|
|
2135
|
-
.give-kudos .form
|
|
1344
|
+
.give-kudos .kudos-form .textarea-info.lite-info {
|
|
1345
|
+
font-size: 0.67rem;
|
|
1346
|
+
}
|
|
1347
|
+
.give-kudos .kudos-form label {
|
|
2136
1348
|
display: flex;
|
|
2137
1349
|
font-size: 0.94rem;
|
|
2138
1350
|
margin-bottom: 10px;
|
|
2139
1351
|
color: var(--text-primary);
|
|
2140
1352
|
}
|
|
2141
|
-
.give-kudos .form .error {
|
|
1353
|
+
.give-kudos .kudos-form .error {
|
|
2142
1354
|
font-size: 0.8rem;
|
|
2143
1355
|
color: #da1e28;
|
|
2144
1356
|
}
|
|
2145
|
-
.give-kudos .form .error-field {
|
|
1357
|
+
.give-kudos .kudos-form .error-field {
|
|
2146
1358
|
border: solid 1px #da1e28 !important;
|
|
2147
1359
|
}
|
|
2148
|
-
.give-kudos .modal-footer .submit {
|
|
2149
|
-
margin-left: 15px;
|
|
2150
|
-
}
|
|
2151
|
-
.give-kudos button.btn-large[disabled] {
|
|
2152
|
-
background-color: #c2e9e4 !important;
|
|
2153
|
-
}
|
|
2154
|
-
.give-kudos .vs__clear svg {
|
|
2155
|
-
display: none;
|
|
2156
|
-
}
|