@intellias/menu 2.1.5 → 2.1.7

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/dist/css/main.css CHANGED
@@ -1,50 +1,6 @@
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
- .modal-wrapper[data-v-47941d80] {
5
- padding-bottom: 1rem;
6
- border-radius: 6px !important;
7
- background-color: #ffffff;
8
- box-shadow: 0 15px 30px rgba(37, 55, 70, 0.202715);
9
- }
10
- .modal-header[data-v-47941d80] {
11
- display: flex;
12
- justify-content: space-between;
13
- padding: 2rem 2rem 1rem 2rem;
14
- font-size: 1.25rem;
15
- font-weight: bold;
16
- color: #1a2732 !important;
17
- }
18
- .modal-header.dark[data-v-47941d80] {
19
- color: #ffffff !important;
20
- }
21
- .modal-header.dark i.icon[data-v-47941d80]:before {
22
- background-color: #ffffff !important;
23
- }
24
- .modal-header i.icon[data-v-47941d80]:before {
25
- background-color: #1a2732 !important;
26
- }
27
- .modal-content[data-v-47941d80] {
28
- padding: 1rem 2rem;
29
- }
30
- .modal-close[data-v-47941d80] {
31
- width: 15px !important;
32
- min-width: 15px;
33
- height: 15px !important;
34
- cursor: pointer;
35
- }
36
- .modal-footer[data-v-47941d80] {
37
- display: flex;
38
- justify-content: flex-end;
39
- padding: 1rem 2rem;
40
- }
41
- .modal-footer .btn[data-v-47941d80]:not(:first-child) {
42
- margin-left: 1rem;
43
- }
44
- .vm--overlay[data-v-47941d80] {
45
- background-color: rgba(37, 55, 70, 0.55) !important;
46
- transition: 0.3s !important;
47
- }
48
4
  .action-button.is-btn-link[data-v-4bad7ad2] {
49
5
  padding: 0;
50
6
  border: 0;
@@ -158,211 +114,208 @@
158
114
  transform: rotate(360deg);
159
115
  }
160
116
  }
161
- .secondary-button[data-v-ab516b6a] {
162
- position: relative;
163
- text-overflow: ellipsis;
164
- overflow: hidden;
165
- white-space: nowrap;
166
- color: #1a2732;
167
- text-transform: initial;
168
- border-radius: 4px;
169
- font-weight: 600;
170
- line-height: 38px;
171
- display: flex;
172
- align-items: center;
117
+ .progress[data-v-92cd54c2] {
118
+ margin: 0;
119
+ position: absolute;
120
+ visibility: hidden;
121
+ opacity: 0;
122
+ transition: opacity 1.5s, visibility 1.5s;
173
123
  }
174
- .secondary-button.dark[data-v-ab516b6a] {
175
- height: 40px;
176
- padding: 0 var(--spacing-16);
177
- background: var(--surface-primary);
178
- color: var(--text-primary);
179
- text-decoration: none;
180
- border-radius: var(--border-radius-6);
181
- border: solid var(--border) 1px;
182
- font-size: var(--font-size-14);
183
- line-height: var(--line-height-24);
184
- transition: 0.3s;
124
+ .progress .determinate[data-v-92cd54c2] {
125
+ background-color: #00a58e;
185
126
  }
186
- .secondary-button.dark[data-v-ab516b6a]:hover {
187
- background: var(--surface-tertiary);
188
- border-color: var(--border);
127
+ .progress.show[data-v-92cd54c2] {
128
+ visibility: visible;
129
+ opacity: 1;
130
+ transition: visibility 0s;
189
131
  }
190
- .secondary-button i.icon[data-v-ab516b6a] {
191
- vertical-align: middle;
132
+ .preloader {
133
+ display: flex;
134
+ align-items: center;
135
+ justify-content: center;
192
136
  }
193
- .secondary-button .spinner-solid[data-v-ab516b6a] {
137
+ .notifications-sidebar {
138
+ position: relative;
194
139
  color: #1a2732;
195
- animation: spin-ab516b6a 2s linear infinite;
196
- vertical-align: middle;
197
- transition: width 300ms, height 300ms;
198
- margin-left: 8px;
199
- }
200
- .secondary-button .left-icon[data-v-ab516b6a] {
201
- margin-right: 4px;
202
140
  }
203
- .secondary-button.disabled[data-v-ab516b6a], .secondary-button.btn-secondary[data-v-ab516b6a]:disabled, .secondary-button.btn[disabled][data-v-ab516b6a] {
204
- background-color: #f1f5f9 !important;
141
+ .notifications-sidebar.dark .v-dropdown-menu__container {
142
+ background-color: #253746;
205
143
  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);
206
146
  }
207
- .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] {
208
- color: #94a3b8 !important;
209
- }
210
- @keyframes spin-ab516b6a {
211
- 100% {
212
- transform: rotate(360deg);
213
- }
147
+ .notifications-sidebar.dark .v-dropdown-menu__container .primary-text {
148
+ color: #f8fafc;
214
149
  }
215
- .play-pause {
216
- margin-left: 20px;
150
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header {
151
+ position: relative;
152
+ z-index: 1001;
153
+ background-color: #253746;
217
154
  }
218
- @media only screen and (max-width : 600px) {
219
- .play-pause {
220
- margin-left: 8px;
155
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row {
156
+ border-bottom: 1px #475569 solid;
221
157
  }
158
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu {
159
+ background-color: #253746;
160
+ border: 1px #475569 solid;
161
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
222
162
  }
223
- .play-pause-btn {
224
- display: flex;
225
- justify-content: center;
226
- align-items: center;
227
- width: 40px;
228
- height: 40px;
229
- border-radius: 100%;
230
- cursor: pointer;
163
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li:hover:not(.is-disabled) {
164
+ background-color: #275b57;
231
165
  }
232
- .play-pause-btn .icon {
233
- width: 40px;
234
- height: 40px;
166
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a {
167
+ color: #f8fafc;
235
168
  }
236
- .play-pause-btn .icon.spinner-solid {
237
- width: 24px;
238
- height: 24px;
239
- animation: spin 1s linear infinite;
169
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a:hover:not(.is-disabled) {
170
+ background-color: #275b57;
240
171
  }
241
- #modalTracked {
242
- color: #253746;
172
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body {
173
+ background-color: #253746;
243
174
  }
244
- #modalTracked.dark {
245
- color: #ffffff !important;
175
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs {
176
+ background-color: #253746;
177
+ border-bottom: 1px #475569 solid;
178
+ box-shadow: 0 12px 8px -8px rgba(15, 19, 23, 0.55) !important;
179
+ z-index: 1000;
246
180
  }
247
- #modalTracked.dark i.icon:before {
248
- background-color: #ffffff !important;
181
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs .indicator {
182
+ background-color: #45d6ad;
249
183
  }
250
- #modalTracked .modal-content #tracked-content {
251
- display: flex;
252
- align-items: center;
184
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs button.tab {
185
+ color: #94a3b8;
253
186
  }
254
- #modalTracked .modal-content #tracked-content p {
255
- margin: 0;
256
- line-height: initial;
187
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs button.tab .counter {
188
+ color: #253746;
257
189
  }
258
- #modalTracked .modal-content #span-clock {
259
- margin-right: 10px;
190
+ .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 {
191
+ color: #f8fafc;
260
192
  }
261
- #modalTracked .modal-content #span-clock i {
262
- font-size: 54px;
193
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list {
194
+ border-top: 1px #475569 solid;
263
195
  }
264
- #modalTracked .modal-footer .action-button {
265
- margin-left: 15px;
196
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note {
197
+ background-color: #253746;
198
+ border-bottom: 1px #475569 solid;
266
199
  }
267
- @keyframes spin {
268
- 100% {
269
- transform: rotate(360deg);
200
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i.icon:not(.original):before {
201
+ background-image: none;
202
+ -webkit-mask-size: cover;
203
+ mask-size: cover;
204
+ -webkit-mask-repeat: no-repeat;
205
+ mask-repeat: no-repeat;
206
+ background-color: #94a3b8;
270
207
  }
208
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note a {
209
+ color: #45d6ad;
271
210
  }
272
- .progress[data-v-92cd54c2] {
273
- margin: 0;
274
- position: absolute;
275
- visibility: hidden;
276
- opacity: 0;
277
- transition: opacity 1.5s, visibility 1.5s;
211
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .time-ago {
212
+ color: #94a3b8;
278
213
  }
279
- .progress .determinate[data-v-92cd54c2] {
280
- background-color: #00a58e;
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;
281
216
  }
282
- .progress.show[data-v-92cd54c2] {
283
- visibility: visible;
284
- opacity: 1;
285
- transition: visibility 0s;
217
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note.read {
218
+ background-color: #1a2732;
286
219
  }
287
- .preloader {
288
- display: flex;
289
- align-items: center;
290
- justify-content: center;
220
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note.read .row {
221
+ background-color: #1a2732;
291
222
  }
292
- .notifications-sidebar {
293
- position: relative;
294
- display: flex;
295
- align-items: center;
223
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .span-text {
224
+ color: #45d6ad;
296
225
  }
297
- .notifications-sidebar .notifications-trigger {
298
- display: flex;
299
- transition: 0.3s;
226
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown > row {
227
+ background-color: #253746;
300
228
  }
301
- .notifications-sidebar .notifications-trigger .icon.bell {
302
- width: 18px;
303
- height: 20px;
229
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .view-all-row {
230
+ border-top: 1px #475569 solid;
304
231
  }
305
- .notifications-sidebar .notifications-trigger:hover {
306
- color: #00a58e;
232
+ .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .view-all-row .action-button.is-link {
233
+ color: #45d6ad;
307
234
  }
308
- .notifications-sidebar .notifications-trigger:hover .icon {
309
- color: #00a58e;
235
+ .notifications-sidebar .row {
236
+ margin-bottom: 0;
237
+ box-sizing: inherit;
310
238
  }
311
239
  .notifications-sidebar .row .col {
312
240
  padding: 0 0.75rem;
313
241
  }
314
- .notifications-sidebar .row .col > .icon:before {
315
- background-color: #45d6ad;
316
- }
317
242
  .notifications-sidebar .col .row {
318
243
  margin-left: -0.75rem;
319
244
  margin-right: -0.75rem;
320
245
  }
321
246
  .notifications-sidebar .v-dropdown-menu__container {
322
- top: calc(100% + 23px);
323
- left: -12px;
247
+ width: -moz-fit-content;
248
+ width: fit-content;
324
249
  max-width: none;
250
+ min-width: none;
325
251
  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);
326
252
  }
327
- @media only screen and (max-width : 600px) {
328
- .notifications-sidebar .v-dropdown-menu__container {
329
- left: -24px;
330
- }
331
- }
332
253
  .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;
333
257
  display: flex;
258
+ align-items: center;
334
259
  justify-content: space-between;
335
- padding: 0 3px 0 13px;
336
- margin-bottom: 0;
337
- border-bottom: 1px #cbd5e1 solid;
260
+ }
261
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s10 {
262
+ height: 50px;
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;
338
279
  }
339
280
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s2 .notifications-state-marker .v-dropdown-menu__container {
340
- top: 45px;
281
+ top: 43px;
282
+ height: 75px;
341
283
  }
342
284
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s2 .notifications-state-marker .notification-manage-toggler {
285
+ position: relative;
343
286
  display: flex;
287
+ flex-wrap: wrap;
344
288
  flex-direction: column;
345
289
  justify-content: center;
346
290
  width: 20px;
347
291
  height: 64px;
292
+ line-height: 64px;
293
+ cursor: pointer;
348
294
  }
349
295
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s2 .notifications-state-marker .notification-manage-toggler span {
350
- display: inline-block;
296
+ background-color: #94a3b8;
351
297
  width: 4px;
352
298
  height: 4px;
299
+ display: inline-block;
353
300
  border-radius: 50%;
354
301
  margin: 1px auto;
355
- background-color: #94a3b8;
356
302
  }
357
303
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu {
358
- margin: 0;
304
+ border: 1px #cbd5e1 solid;
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;
359
314
  }
360
315
  .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) {
361
316
  background-color: #c2e9e4;
362
317
  }
363
318
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a {
364
- display: inline-block;
365
- width: 100%;
366
319
  color: #1a2732;
367
320
  font-size: 14px;
368
321
  font-weight: 400;
@@ -382,35 +335,52 @@
382
335
  }
383
336
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown {
384
337
  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;
385
345
  }
386
- .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .row {
387
- margin-bottom: 0;
388
346
  }
389
347
  .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;
390
352
  position: relative;
391
- height: 48px;
392
- border-bottom: 1px #cbd5e1 solid;
353
+ overflow-x: hidden;
354
+ overflow-y: hidden;
355
+ width: 100%;
393
356
  background-color: #ffffff;
394
- box-shadow: none;
395
- line-height: normal;
357
+ margin: 0 auto;
358
+ white-space: nowrap;
359
+ border-bottom: 1px #cbd5e1 solid;
396
360
  }
397
361
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button {
362
+ clear: inherit;
363
+ min-height: auto;
398
364
  width: 50%;
365
+ line-height: 28px;
366
+ background-color: #ffffff;
399
367
  border: none;
400
- background: none;
401
368
  cursor: pointer;
402
369
  }
403
370
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab {
404
- height: auto;
405
- padding: 0 10px;
406
- margin-top: 18px;
371
+ height: 100%;
372
+ display: inline-block;
373
+ text-align: center;
374
+ padding: 0;
375
+ margin: 0;
407
376
  font-size: 0.8rem;
408
377
  text-transform: initial;
378
+ padding: 0px 10px;
409
379
  color: #64748b;
410
- line-height: normal;
411
380
  background-color: inherit;
412
381
  }
413
382
  .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;
414
384
  color: #1a2732;
415
385
  }
416
386
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab.active {
@@ -418,6 +388,7 @@
418
388
  }
419
389
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab .counter {
420
390
  font-weight: bold;
391
+ text-align: center;
421
392
  font-size: 0.67rem;
422
393
  border-radius: 10px;
423
394
  padding: 2px 6px;
@@ -425,23 +396,39 @@
425
396
  background-color: #ff8041;
426
397
  margin-left: 4px;
427
398
  }
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
+ }
428
402
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs .indicator {
429
403
  background-color: #00a58e;
430
404
  margin: 0 25px;
405
+ width: initial;
406
+ height: 3px;
431
407
  width: 140px !important;
432
408
  position: absolute;
433
409
  bottom: 0;
434
410
  height: 2px;
411
+ will-change: left, right;
412
+ transition: background-color 0.3s;
435
413
  transition: transform 0.4s ease, width 0.4s ease;
436
414
  }
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
+ }
437
422
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list {
438
- margin-bottom: 0;
423
+ overflow-y: hidden;
424
+ box-shadow: inset 0 12px 8px -8px rgba(0, 0, 0, 0.12);
425
+ border-top: 1px #cbd5e1 solid;
439
426
  line-height: 18px;
440
427
  }
441
428
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content {
442
- width: 100%;
443
429
  min-height: 120px;
444
- max-height: calc(100vh - 275px);
430
+ max-height: 70vh;
431
+ width: 100%;
445
432
  }
446
433
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .preloader {
447
434
  display: flex;
@@ -452,11 +439,25 @@
452
439
  height: 80px;
453
440
  }
454
441
  .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;
455
443
  padding: 20px 25px;
456
444
  margin: 0 -0.75rem;
457
445
  }
458
446
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:hover .manage-notification {
459
- opacity: 1;
447
+ display: inline-block;
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;
460
461
  }
461
462
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .semi-primary-text b a {
462
463
  font-weight: 700;
@@ -470,13 +471,30 @@
470
471
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:not(.read) {
471
472
  border-left: 3px solid #ff8041;
472
473
  }
473
- .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:not(:first-child) {
474
- border-top: 1px #cbd5e1 solid;
474
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .row {
475
+ position: relative;
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;
475
493
  }
476
494
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification {
477
495
  position: absolute;
478
- right: 16px;
479
- opacity: 0;
496
+ right: 0px;
497
+ display: none;
480
498
  }
481
499
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i {
482
500
  height: 16px;
@@ -494,16 +512,27 @@
494
512
  .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 {
495
513
  background-color: #da1e28 !important;
496
514
  }
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
+ }
497
521
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .note-title-col {
498
522
  max-width: 70%;
499
523
  padding-left: 4px;
500
524
  }
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
+ }
501
529
  .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .action-buttons {
502
- width: 100%;
530
+ height: 21px;
503
531
  }
504
- .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .action-buttons button {
505
- height: auto;
506
- line-height: initial;
532
+ .notifications-sidebar .notifications-trigger {
533
+ display: inline-block;
534
+ height: 58px;
535
+ font-size: 1.2rem;
507
536
  }
508
537
  .notifications-sidebar a {
509
538
  color: #00a58e;
@@ -511,22 +540,35 @@
511
540
  padding: 0;
512
541
  font-size: inherit;
513
542
  }
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
+ }
514
551
  .notifications-sidebar .view-all-row {
515
552
  border-top: 1px #cbd5e1 solid;
516
- line-height: 50px;
553
+ line-height: 49px;
517
554
  }
518
555
  .notifications-sidebar .ps__rail-x {
519
556
  display: none !important;
520
557
  }
521
558
  .notifications-sidebar .has-unread {
559
+ display: inline-block;
522
560
  position: absolute;
523
- top: -6px;
524
- right: -8px;
561
+ top: 12px;
525
562
  height: 9px;
526
563
  width: 9px;
527
564
  border-radius: 50%;
528
565
  background-color: #ff8041;
529
566
  }
567
+ @media only screen and (max-width : 430px) {
568
+ .notifications-sidebar .has-unread {
569
+ right: -10px;
570
+ }
571
+ }
530
572
  .notifications-sidebar .fade-enter-active,
531
573
  .notifications-sidebar .fade-leave-active {
532
574
  transition: opacity 0.5s;
@@ -535,142 +577,344 @@
535
577
  .notifications-sidebar .fade-leave-to {
536
578
  opacity: 0;
537
579
  }
538
- .notifications-sidebar.dark .v-dropdown-menu__container {
539
- background-color: #253746;
540
- color: #94a3b8;
541
- border: 1px #475569 solid;
580
+ .bell-animation {
581
+ -webkit-animation: ring 5.6s 0.5s ease-in-out infinite;
582
+ -webkit-transform-origin: 50% 4px;
583
+ -moz-animation: ring 5.6s 0.5s ease-in-out infinite;
584
+ -moz-transform-origin: 50% 4px;
585
+ animation: ring 5.6s 0.5s ease-in-out infinite;
586
+ transform-origin: 50% 4px;
542
587
  }
543
- .notifications-sidebar.dark .v-dropdown-menu__container .primary-text {
544
- color: #f8fafc;
588
+ @keyframes ring {
589
+ 0% {
590
+ transform: rotate(0);
545
591
  }
546
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header {
547
- position: relative;
548
- z-index: 1001;
592
+ 1% {
593
+ transform: rotate(32deg);
549
594
  }
550
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row {
551
- border-bottom: 1px #475569 solid;
595
+ 3% {
596
+ transform: rotate(-30deg);
552
597
  }
553
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu {
554
- background-color: #253746;
555
- border: 1px #475569 solid;
598
+ 5% {
599
+ transform: rotate(42deg);
556
600
  }
557
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li:hover:not(.is-disabled) {
558
- background-color: #275b57;
601
+ 7% {
602
+ transform: rotate(-40deg);
559
603
  }
560
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a {
561
- color: #f8fafc;
604
+ 9% {
605
+ transform: rotate(36deg);
562
606
  }
563
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a:hover:not(.is-disabled) {
564
- background-color: #275b57;
607
+ 11% {
608
+ transform: rotate(-34deg);
565
609
  }
566
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs {
567
- background-color: #253746;
568
- border-bottom: 1px #475569 solid;
569
- z-index: 1000;
610
+ 13% {
611
+ transform: rotate(32deg);
570
612
  }
571
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs .indicator {
572
- background-color: #45d6ad;
613
+ 15% {
614
+ transform: rotate(-30deg);
573
615
  }
574
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs button.tab {
575
- color: #94a3b8;
616
+ 17% {
617
+ transform: rotate(30deg);
576
618
  }
577
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .tabs.default-tabs button.tab .counter {
578
- color: #253746;
619
+ 19% {
620
+ transform: rotate(-28deg);
579
621
  }
580
- .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 {
581
- color: #f8fafc;
622
+ 21% {
623
+ transform: rotate(28deg);
582
624
  }
583
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note {
584
- background-color: #253746;
585
- border-bottom: 1px #475569 solid;
625
+ 23% {
626
+ transform: rotate(-26deg);
586
627
  }
587
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note a {
588
- color: #45d6ad;
628
+ 25% {
629
+ transform: rotate(26deg);
589
630
  }
590
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .time-ago {
591
- color: #94a3b8;
631
+ 27% {
632
+ transform: rotate(-24deg);
592
633
  }
593
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note.read {
594
- background-color: #1a2732;
634
+ 29% {
635
+ transform: rotate(24deg);
595
636
  }
596
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note.read .row {
597
- background-color: #1a2732;
637
+ 31% {
638
+ transform: rotate(-22deg);
598
639
  }
599
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .span-text {
600
- color: #45d6ad;
640
+ 33% {
641
+ transform: rotate(23deg);
601
642
  }
602
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .view-all-row {
603
- border-top: 1px #475569 solid;
643
+ 35% {
644
+ transform: rotate(-21deg);
604
645
  }
605
- .notifications-sidebar.dark .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .view-all-row .action-button.is-link {
606
- color: #45d6ad;
646
+ 37% {
647
+ transform: rotate(22deg);
607
648
  }
608
- .bell-animation {
609
- -webkit-animation: ring 5.6s 0.5s ease-in-out infinite;
610
- -webkit-transform-origin: 50% 4px;
611
- -moz-animation: ring 5.6s 0.5s ease-in-out infinite;
612
- -moz-transform-origin: 50% 4px;
613
- animation: ring 5.6s 0.5s ease-in-out infinite;
614
- transform-origin: 50% 4px;
649
+ 39% {
650
+ transform: rotate(-20deg);
615
651
  }
616
- .image-wrapper.sm[data-v-7393283b] {
617
- width: 35px;
618
- height: 35px;
652
+ 41% {
653
+ transform: rotate(21deg);
619
654
  }
620
- .image-wrapper.sm .user-image[data-v-7393283b] {
621
- border: 1px solid #cbd5e1;
655
+ 43% {
656
+ transform: rotate(-19deg);
622
657
  }
623
- .image-wrapper.sm .user-image.anonymous[data-v-7393283b] {
624
- font-size: 12px;
658
+ 45% {
659
+ transform: rotate(18deg);
625
660
  }
626
- .image-wrapper.sm .user-image.anonymous.dark[data-v-7393283b] {
627
- background-color: var(--bg-primary);
628
- color: var(--text-disable);
629
- border: 1px solid var(--border);
661
+ 47% {
662
+ transform: rotate(-16deg);
630
663
  }
631
- .image-wrapper.md[data-v-7393283b] {
632
- height: 44px;
633
- width: 44px;
664
+ 50% {
665
+ transform: rotate(14deg);
634
666
  }
635
- .image-wrapper.md .user-image[data-v-7393283b] {
636
- border: 1px solid #cbd5e1;
667
+ 52% {
668
+ transform: rotate(-12deg);
637
669
  }
638
- .image-wrapper.md .user-image.anonymous[data-v-7393283b] {
639
- font-size: 16px;
640
- color: #94a3b8;
670
+ 54% {
671
+ transform: rotate(10deg);
641
672
  }
642
- .image-wrapper.md .user-image.anonymous.dark[data-v-7393283b] {
643
- background-color: var(--bg-primary);
644
- color: var(--text-disable);
645
- border: 1px solid var(--border);
673
+ 56% {
674
+ transform: rotate(-8deg);
646
675
  }
647
- .image-wrapper.lg[data-v-7393283b] {
648
- height: 96px;
649
- width: 96px;
676
+ 58% {
677
+ transform: rotate(6deg);
650
678
  }
651
- .image-wrapper.xl[data-v-7393283b] {
652
- height: 128px;
653
- width: 128px;
679
+ 60% {
680
+ transform: rotate(-4deg);
654
681
  }
655
- .image-wrapper.xl .user-image.anonymous[data-v-7393283b] {
656
- font-size: 50px;
657
- color: #94a3b8;
682
+ 62% {
683
+ transform: rotate(2deg);
658
684
  }
659
- .image-wrapper.xl .user-image.anonymous.dark[data-v-7393283b] {
660
- background-color: var(--bg-primary);
661
- color: var(--text-disable);
662
- border: 1px solid var(--border);
685
+ 64% {
686
+ transform: rotate(-1deg);
663
687
  }
664
- .image-wrapper .user-image[data-v-7393283b] {
665
- border: 2px solid #cbd5e1;
666
- border-radius: 50%;
667
- overflow: hidden;
668
- width: inherit;
669
- height: inherit;
688
+ 66% {
689
+ transform: rotate(1deg);
670
690
  }
671
- .image-wrapper .user-imageimg[data-v-7393283b] {
672
- -o-object-fit: cover;
673
- object-fit: cover;
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;
902
+ }
903
+ .image-wrapper.xl .user-image.anonymous.dark[data-v-7393283b] {
904
+ background-color: var(--bg-primary);
905
+ color: var(--text-disable);
906
+ border: 1px solid var(--border);
907
+ }
908
+ .image-wrapper .user-image[data-v-7393283b] {
909
+ border: 2px solid #cbd5e1;
910
+ border-radius: 50%;
911
+ overflow: hidden;
912
+ width: inherit;
913
+ height: inherit;
914
+ }
915
+ .image-wrapper .user-imageimg[data-v-7393283b] {
916
+ -o-object-fit: cover;
917
+ object-fit: cover;
674
918
  }
675
919
  .image-wrapper .user-image.anonymous[data-v-7393283b] {
676
920
  background-color: #f8fafc;
@@ -693,7 +937,7 @@
693
937
  .on-boarding-sign[data-v-0d7f0ada] {
694
938
  position: absolute;
695
939
  top: 97px;
696
- right: 30px;
940
+ right: 60px;
697
941
  width: 485px;
698
942
  padding: 1.5rem;
699
943
  border-radius: 16px;
@@ -746,221 +990,913 @@
746
990
  margin-left: 2rem;
747
991
  color: #f8fafc;
748
992
  }
749
- .intems-menu {
750
- border-bottom: solid #e2e8f0 1px;
751
- }
752
- .intems-menu-container {
993
+ .welcome-program-counter {
994
+ margin-left: 6px;
753
995
  position: relative;
754
- display: grid;
755
- grid-template-columns: 250px auto;
756
- gap: 16px;
757
- justify-content: space-between;
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;
1004
+ }
1005
+ .menu-new {
1006
+ display: flex;
1007
+ position: absolute;
1008
+ justify-content: center;
758
1009
  align-items: center;
759
- height: 64px;
760
- padding: 0 20px;
761
- background-color: #ffffff;
762
- z-index: 997;
1010
+ width: 31px;
1011
+ height: 16px;
1012
+ background: #ff8041;
1013
+ line-height: 12px;
1014
+ font-size: 10px;
1015
+ border-radius: 2px;
763
1016
  }
764
- @media only screen and (max-width : 600px) {
765
- .intems-menu-container {
766
- display: flex;
767
- gap: 0;
768
- padding: 0 16px;
1017
+ .menu-new.horizontal, .menu-new.overflowed {
1018
+ right: 0;
1019
+ top: -16px;
1020
+ color: #ffffff;
769
1021
  }
1022
+ .vm--container {
1023
+ cursor: auto;
770
1024
  }
771
- .intems-menu-container a, .intems-menu-container a:hover {
772
- text-decoration: none;
1025
+ .vm--container i.icon.huge {
1026
+ width: 64px;
1027
+ height: 64px !important;
773
1028
  }
774
- .intems-menu-left {
1029
+ .vm--container i.icon.huge.dark:before {
1030
+ background-color: currentcolor !important;
1031
+ }
1032
+ .managers-portal-item {
775
1033
  display: flex;
776
1034
  align-items: center;
1035
+ gap: 10px;
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;
777
1049
  }
778
- .intems-menu-toggler {
1050
+ .overflowed-menu-toggler {
779
1051
  position: relative;
780
1052
  display: flex;
781
1053
  flex-wrap: wrap;
782
1054
  flex-direction: column;
783
- justify-content: space-between;
784
- width: 15px;
785
- height: 10px;
786
- margin-right: 20px;
1055
+ justify-content: center;
1056
+ width: 20px;
1057
+ height: 64px;
1058
+ line-height: 64px;
787
1059
  cursor: pointer;
788
1060
  }
789
- @media only screen and (max-width : 600px) {
790
- .intems-menu-toggler {
791
- margin-right: 0;
1061
+ .overflowed-menu-toggler.notification-manage-toggler span {
1062
+ background-color: #94a3b8;
1063
+ width: 4px;
1064
+ height: 4px;
792
1065
  }
1066
+ .overflowed-menu-toggler + ul .managers-portal-item {
1067
+ display: flex;
1068
+ align-items: center;
1069
+ justify-content: space-between;
793
1070
  }
794
- .intems-menu-toggler span {
1071
+ .overflowed-menu-toggler span {
795
1072
  display: inline-block;
796
- width: 100%;
797
- height: 2px;
798
- border-radius: 2px;
1073
+ width: 5px;
1074
+ height: 5px;
1075
+ border-radius: 50%;
1076
+ margin: 1px auto;
1077
+ background-color: #ffffff;
1078
+ }
1079
+ @media only screen and (max-width: 992px) {
1080
+ .hide-on-med-and-down {
1081
+ display: none !important;
1082
+ }
1083
+ }
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;
799
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
+ }
1251
+ .navbar-fixed nav .notifications-bell {
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;
800
1383
  transition: width 0.3s 0.2s;
801
1384
  }
802
- .intems-menu-toggler .icon {
1385
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler .icon {
803
1386
  position: absolute;
804
1387
  top: 50%;
805
- right: -9px;
1388
+ right: -7px;
806
1389
  transform: translateY(-50%);
807
- width: 16px;
808
- height: 16px;
1390
+ width: 14px;
1391
+ height: 14px;
1392
+ color: #ffffff;
809
1393
  opacity: 0;
810
1394
  transition: 0.3s;
811
1395
  }
812
- @media only screen and (min-width : 993px) {
813
- .intems-menu-toggler.lite {
814
- display: none;
815
- }
816
- }
817
- .intems-menu-toggler.collapsed span:nth-child(2) {
1396
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.collapsed span:nth-child(2) {
818
1397
  width: 75%;
819
1398
  transition: width 0.3s;
820
1399
  }
821
- .intems-menu-toggler.collapsed .icon {
1400
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.collapsed .icon {
822
1401
  opacity: 1;
823
1402
  transition: 0.2s 0.3s;
824
1403
  }
825
- .intems-menu-toggler.open span {
1404
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span {
826
1405
  position: absolute;
827
1406
  transition: 0.5s;
828
1407
  }
829
- .intems-menu-toggler.open span:first-child, .intems-menu-toggler.open span:nth-child(3) {
1408
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:first-child, .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:nth-child(3) {
830
1409
  top: 6px;
831
1410
  left: -1px;
832
1411
  }
833
- .intems-menu-toggler.open span:first-child {
1412
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:first-child {
834
1413
  transform: rotate(45deg);
835
1414
  }
836
- .intems-menu-toggler.open span:nth-child(2) {
1415
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:nth-child(2) {
837
1416
  width: 0;
838
1417
  opacity: 0;
839
1418
  }
840
- .intems-menu-toggler.open span:nth-child(3) {
1419
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:nth-child(3) {
841
1420
  transform: rotate(-45deg);
842
1421
  }
843
- .intems-menu-logo {
844
- display: inline-flex;
845
- width: 90px;
846
- height: 30px;
1422
+ @media only screen and (max-width : 992px) {
1423
+ .navbar-fixed nav .nav-wrapper .mobile-menu-toggler {
1424
+ display: flex;
1425
+ flex-wrap: wrap;
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;
847
1508
  }
848
1509
  @media only screen and (max-width : 600px) {
849
- .intems-menu-logo {
850
- order: 1;
851
- margin-left: 16px;
1510
+ .navbar-fixed nav .nav-wrapper .right-side .user-wrapper {
1511
+ margin-left: 0;
1512
+ padding: 0;
852
1513
  }
853
1514
  }
854
- .intems-menu-logo img {
855
- width: 100%;
856
- height: 100%;
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;
857
1519
  }
858
- .intems-menu-links {
859
- margin-left: 12px;
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;
1541
+ }
1542
+ }
1543
+ .navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user .image-wrapper .user-image {
1544
+ display: flex;
1545
+ justify-content: center;
1546
+ align-items: center;
1547
+ }
1548
+ .navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user .logout {
1549
+ display: flex;
1550
+ align-items: center;
1551
+ color: #f8fafc;
1552
+ margin-left: 16px;
1553
+ font-size: 0.875rem;
1554
+ cursor: pointer;
860
1555
  }
861
1556
  @media only screen and (max-width : 600px) {
862
- .intems-menu-links {
1557
+ .navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user .logout {
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 {
863
1563
  display: none;
864
1564
  }
865
1565
  }
866
- .intems-menu-links a {
867
- color: #253746;
868
- font-weight: 600;
869
- transition: 0.3s;
1566
+ .navbar-fixed nav .nav-wrapper .right-side .user-wrapper .user .logout .icon {
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;
1744
+ color: #253746;
1745
+ transform: translateX(-105%);
1746
+ transition: transform 0.6s ease;
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;
1797
+ }
1798
+ #mobile-menu .admin > li > ul.opened {
1799
+ max-height: 100vh;
1800
+ }
1801
+ #mobile-menu .admin > li > a {
1802
+ padding-left: 48px;
870
1803
  }
871
- .intems-menu-links a:hover {
872
- color: #00a58e;
1804
+ #mobile-menu .admin > li > ul > li > a {
1805
+ padding-left: 64px;
1806
+ background-color: #253746;
873
1807
  }
874
- .intems-menu-right {
875
- position: relative;
876
- display: flex;
877
- align-items: center;
1808
+ #mobile-menu #mobile-menu-head {
1809
+ line-height: 64px;
878
1810
  }
879
- .intems-menu-right .icon {
880
- color: #253746;
1811
+ #mobile-menu #mobile-menu-head > div {
1812
+ text-align: center;
1813
+ width: 100%;
881
1814
  }
882
- .intems-menu-additional, .intems-menu-notifications-bell {
883
- display: flex;
884
- height: 44px;
885
- padding: 6px 22px !important;
886
- border-right: solid #cbd5e1 1px;
1815
+ #mobile-menu #mobile-menu-head > div > a {
1816
+ font-size: 24px;
1817
+ color: #ffffff;
887
1818
  }
888
- @media only screen and (max-width : 600px) {
889
- .intems-menu-additional, .intems-menu-notifications-bell {
890
- padding: 6px 16px !important;
1819
+ #mobile-menu #mobile-menu-head > div > a:hover {
1820
+ cursor: pointer;
891
1821
  }
1822
+ #mobile-menu #mobile-menu-head > div > a.brand-logo {
1823
+ font-family: play, sans-serif;
1824
+ font-weight: bold;
892
1825
  }
893
- .intems-menu-additional {
894
- align-items: center;
895
- gap: 24px;
896
- margin: 0;
897
- border-left: solid #cbd5e1 1px;
1826
+ #mobile-menu #mobile-menu-head > div > a#menu_close_mark {
1827
+ float: right;
1828
+ margin: 0 18px;
898
1829
  }
899
- @media only screen and (max-width : 992px) {
900
- .intems-menu-additional {
901
- display: none;
1830
+ #mobile-menu .collapsible-mobile {
1831
+ border-color: #64748b;
1832
+ border-width: 1px;
1833
+ border-style: solid;
1834
+ border-bottom: none;
1835
+ margin: 0.5rem 0 1rem 0;
902
1836
  }
1837
+ #mobile-menu .collapsible-mobile li i {
1838
+ float: right;
903
1839
  }
904
- .intems-menu-additional li a {
905
- display: flex;
906
- align-items: center;
907
- gap: 8px;
908
- color: #253746;
909
- font-weight: 600;
910
- cursor: pointer;
911
- transition: 0.3s;
1840
+ #mobile-menu .collapsible-mobile li.active i {
1841
+ /* IE 9 */
1842
+ /* Chrome, Safari, Opera */
1843
+ transform: rotate(180deg);
912
1844
  }
913
- .intems-menu-additional li a:hover {
914
- color: #00a58e;
1845
+ #mobile-menu #mobile-menu-head_avatar {
1846
+ color: #ffffff;
1847
+ padding: 5px 32px;
915
1848
  }
916
- .intems-menu-additional li a:hover .icon {
917
- color: #00a58e;
1849
+ #mobile-menu #mobile-menu-head_avatar:hover {
1850
+ cursor: pointer;
918
1851
  }
919
- .intems-menu-additional li a.no-kudos {
920
- cursor: default;
1852
+ #mobile-menu #mobile-menu-head_avatar > ul {
1853
+ margin: 15px 0;
921
1854
  }
922
- .intems-menu-additional li a.no-kudos:hover {
923
- color: #253746;
1855
+ #mobile-menu #mobile-menu-head_avatar .fade-enter-active,
1856
+ #mobile-menu #mobile-menu-head_avatar .fade-leave-active {
1857
+ transition: opacity 0.5s;
924
1858
  }
925
- .intems-menu-additional li a.no-kudos:hover .icon {
926
- color: #253746;
1859
+ #mobile-menu #mobile-menu-head_avatar .fade-enter, #mobile-menu #mobile-menu-head_avatar .fade-leave-to {
1860
+ opacity: 0;
927
1861
  }
928
- .intems-menu-additional li a .icon {
929
- transition: 0.3s;
1862
+ #mobile-menu #mobile-menu-head_avatar > div {
1863
+ display: table;
1864
+ padding: 0;
930
1865
  }
931
- .intems-menu-user {
932
- display: flex;
933
- align-items: center;
934
- padding: 6px 0 6px 16px;
1866
+ #mobile-menu #mobile-menu-head_avatar > div > div {
1867
+ display: table-cell;
1868
+ vertical-align: middle;
935
1869
  }
936
- @media only screen and (max-width : 600px) {
937
- .intems-menu-user {
938
- padding: 6px 0 6px 8px;
1870
+ #mobile-menu #mobile-menu-head_avatar p {
1871
+ margin: 0;
1872
+ line-height: normal;
939
1873
  }
1874
+ #mobile-menu #mobile-menu-head_avatar p#mobile-menu-empl_name {
1875
+ font-weight: bold;
940
1876
  }
941
- .intems-menu-user .intellihub-logo {
942
- margin-left: 20px;
943
- color: #45d6ad;
944
- font-size: 0.94rem;
945
- font-weight: 700;
1877
+ #mobile-menu #mobile-menu-head_avatar p#mobile-menu-empl_position {
1878
+ font-size: 12px;
1879
+ font-weight: normal;
946
1880
  }
947
- @media only screen and (max-width : 600px) {
948
- .intems-menu-user .intellihub-logo {
949
- margin-left: 4px;
1881
+ #mobile-menu #mobile-menu-head_avatar #mobile-menu-avatar_div {
1882
+ padding-right: 20px;
950
1883
  }
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;
951
1890
  }
952
- .intems-menu-logout {
953
- display: flex;
954
- align-items: center;
955
- color: #253746;
956
- margin-left: 16px;
957
- cursor: pointer;
958
- font-size: 0.94rem;
959
- font-weight: 600;
1891
+ #mobile-menu #mobile-menu-head_avatar a {
1892
+ padding: 0;
1893
+ line-height: 2;
1894
+ font-size: 14px;
1895
+ height: unset;
1896
+ color: #008c79;
960
1897
  }
961
- .intems-menu-logout .icon {
962
- margin-left: 8px;
963
- color: #253746;
1898
+ .cursor-default {
1899
+ cursor: default;
964
1900
  }
965
1901
  .tooltip {
966
1902
  display: block !important;
@@ -997,116 +1933,6 @@
997
1933
  opacity: 1;
998
1934
  transition: opacity 0.15s;
999
1935
  }
1000
- @keyframes ring {
1001
- 0% {
1002
- transform: rotate(0);
1003
- }
1004
- 1% {
1005
- transform: rotate(32deg);
1006
- }
1007
- 3% {
1008
- transform: rotate(-30deg);
1009
- }
1010
- 5% {
1011
- transform: rotate(42deg);
1012
- }
1013
- 7% {
1014
- transform: rotate(-40deg);
1015
- }
1016
- 9% {
1017
- transform: rotate(36deg);
1018
- }
1019
- 11% {
1020
- transform: rotate(-34deg);
1021
- }
1022
- 13% {
1023
- transform: rotate(32deg);
1024
- }
1025
- 15% {
1026
- transform: rotate(-30deg);
1027
- }
1028
- 17% {
1029
- transform: rotate(30deg);
1030
- }
1031
- 19% {
1032
- transform: rotate(-28deg);
1033
- }
1034
- 21% {
1035
- transform: rotate(28deg);
1036
- }
1037
- 23% {
1038
- transform: rotate(-26deg);
1039
- }
1040
- 25% {
1041
- transform: rotate(26deg);
1042
- }
1043
- 27% {
1044
- transform: rotate(-24deg);
1045
- }
1046
- 29% {
1047
- transform: rotate(24deg);
1048
- }
1049
- 31% {
1050
- transform: rotate(-22deg);
1051
- }
1052
- 33% {
1053
- transform: rotate(23deg);
1054
- }
1055
- 35% {
1056
- transform: rotate(-21deg);
1057
- }
1058
- 37% {
1059
- transform: rotate(22deg);
1060
- }
1061
- 39% {
1062
- transform: rotate(-20deg);
1063
- }
1064
- 41% {
1065
- transform: rotate(21deg);
1066
- }
1067
- 43% {
1068
- transform: rotate(-19deg);
1069
- }
1070
- 45% {
1071
- transform: rotate(18deg);
1072
- }
1073
- 47% {
1074
- transform: rotate(-16deg);
1075
- }
1076
- 50% {
1077
- transform: rotate(14deg);
1078
- }
1079
- 52% {
1080
- transform: rotate(-12deg);
1081
- }
1082
- 54% {
1083
- transform: rotate(10deg);
1084
- }
1085
- 56% {
1086
- transform: rotate(-8deg);
1087
- }
1088
- 58% {
1089
- transform: rotate(6deg);
1090
- }
1091
- 60% {
1092
- transform: rotate(-4deg);
1093
- }
1094
- 62% {
1095
- transform: rotate(2deg);
1096
- }
1097
- 64% {
1098
- transform: rotate(-1deg);
1099
- }
1100
- 66% {
1101
- transform: rotate(1deg);
1102
- }
1103
- 70% {
1104
- transform: rotate(0);
1105
- }
1106
- 100% {
1107
- transform: rotate(0);
1108
- }
1109
- }
1110
1936
  main {
1111
1937
  overflow: auto;
1112
1938
  position: relative;
@@ -1133,15 +1959,6 @@ main {
1133
1959
  .margin-top-50 {
1134
1960
  margin-top: 50px;
1135
1961
  }
1136
- .margin-left-15 {
1137
- margin-left: 15px;
1138
- }
1139
- .margin-bottom-5 {
1140
- margin-bottom: 5px;
1141
- }
1142
- .margin-bottom-15 {
1143
- margin-bottom: 15px;
1144
- }
1145
1962
  .title-row {
1146
1963
  margin: 30px 0 40px;
1147
1964
  }
@@ -1153,12 +1970,6 @@ main {
1153
1970
  .title-row button {
1154
1971
  order: 2;
1155
1972
  }
1156
- .flex {
1157
- display: flex;
1158
- }
1159
- .flex.vertical-center {
1160
- align-items: center;
1161
- }
1162
1973
  .center {
1163
1974
  text-align: center;
1164
1975
  justify-content: center;
@@ -1169,26 +1980,6 @@ main {
1169
1980
  .pointer {
1170
1981
  cursor: pointer;
1171
1982
  }
1172
- .primary-text {
1173
- font-size: 14px !important;
1174
- line-height: 1.29;
1175
- font-weight: bold;
1176
- }
1177
- .semi-primary-text {
1178
- font-size: 14px;
1179
- line-height: 1.25;
1180
- font-weight: normal;
1181
- }
1182
- .error-text {
1183
- color: #da1e28;
1184
- }
1185
- .error-text span {
1186
- color: #da1e28 !important;
1187
- }
1188
- .text-muted {
1189
- font-size: 12px;
1190
- color: #64748b;
1191
- }
1192
1983
  .modal.confirm {
1193
1984
  box-sizing: border-box;
1194
1985
  min-width: 280px;
@@ -1223,59 +2014,92 @@ main {
1223
2014
  margin-right: 0;
1224
2015
  padding-right: 0;
1225
2016
  }
1226
- .give-kudos a,
1227
- .give-kudos a:hover {
2017
+ .give-kudos .user ul {
2018
+ max-height: 200px;
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 {
1228
2028
  text-decoration: none;
1229
2029
  color: #008c79;
1230
2030
  }
1231
- .give-kudos a.portals-link {
2031
+ .give-kudos .subtitle a.portals-link {
1232
2032
  color: var(--text-link);
1233
2033
  font-size: var(--font-size-14);
1234
2034
  font-weight: 600;
1235
2035
  text-decoration: underline;
1236
2036
  }
1237
- .give-kudos a.portals-link:hover {
2037
+ .give-kudos .subtitle a.portals-link:hover {
1238
2038
  color: var(--text-link-hover);
1239
2039
  }
1240
- .give-kudos .kudos-form {
2040
+ .give-kudos .form {
2041
+ display: grid;
2042
+ grid-template-columns: auto 207px;
2043
+ grid-gap: 15px;
2044
+ /* Chrome, Safari, Edge, Opera */
1241
2045
  /* Firefox */
1242
2046
  }
1243
- .give-kudos .kudos-form .rows-group {
1244
- display: grid;
1245
- grid-template-columns: 1fr 200px;
1246
- grid-column-gap: 32px;
2047
+ .give-kudos .form .vs__selected-options {
2048
+ flex-wrap: nowrap;
1247
2049
  }
1248
- .give-kudos .kudos-form .kudos-quantity {
1249
- width: 100%;
1250
- height: 40px;
1251
- padding: 0 15px;
2050
+ .give-kudos .form .vs__selected-options span.vs__selected {
2051
+ white-space: nowrap;
2052
+ }
2053
+ .give-kudos .form .v-select .vs__dropdown-toggle {
2054
+ border-radius: 6px;
2055
+ }
2056
+ .give-kudos .form .kudos-quantity {
2057
+ height: 38px;
1252
2058
  margin: 0;
1253
2059
  border: solid 1px #cbd5e1;
2060
+ background-color: #ffffff;
1254
2061
  border-radius: 6px;
1255
2062
  box-sizing: inherit;
1256
- font-size: 14px;
1257
- font-weight: 600;
2063
+ padding: 0 15px;
1258
2064
  }
1259
- .give-kudos .kudos-form .kudos-quantity:focus, .give-kudos .kudos-form .kudos-quantity:active, .give-kudos .kudos-form .kudos-quantity:focus-visible {
1260
- border: solid 1px #00a58e;
1261
- box-shadow: none !important;
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;
2072
+ }
2073
+ .give-kudos .form .kudos-quantity:focus,
2074
+ .give-kudos .form .kudos-quantity:active,
2075
+ .give-kudos .form .kudos-quantity:focus-visible {
2076
+ border: solid 1px #00a58e !important;
2077
+ box-shadow: none;
1262
2078
  outline: none !important;
1263
2079
  }
1264
- .give-kudos .kudos-form .kudos-quantity:disabled {
1265
- color: #94a3b8;
1266
- font-weight: 400;
1267
- background-color: #f1f5f9;
2080
+ .give-kudos .form input::-webkit-outer-spin-button,
2081
+ .give-kudos .form input::-webkit-inner-spin-button {
2082
+ -webkit-appearance: none;
2083
+ margin: 0;
1268
2084
  }
1269
- .give-kudos .kudos-form input[type=number] {
2085
+ .give-kudos .form input[type=number] {
1270
2086
  -moz-appearance: textfield;
1271
2087
  }
1272
- .give-kudos .kudos-form .v-select .vs__dropdown-toggle {
1273
- border-radius: 6px;
2088
+ .give-kudos .form .user {
2089
+ grid-column: span 2;
2090
+ margin-right: 1px;
1274
2091
  }
1275
- .give-kudos .kudos-form .v-select .vs__deselect {
1276
- margin-left: 15px;
2092
+ .give-kudos .form .block-kudos-quantity {
2093
+ width: 207px;
2094
+ }
2095
+ .give-kudos .form .block-kudos-category {
2096
+ margin-right: 5px;
2097
+ }
2098
+ .give-kudos .form .description {
2099
+ grid-column: span 2;
2100
+ margin-right: 1px;
1277
2101
  }
1278
- .give-kudos .kudos-form textarea {
2102
+ .give-kudos .form .description textarea {
1279
2103
  resize: none;
1280
2104
  min-height: 100px;
1281
2105
  max-height: 300px;
@@ -1286,41 +2110,47 @@ main {
1286
2110
  padding: 10px;
1287
2111
  font-size: 14px;
1288
2112
  }
1289
- .give-kudos .kudos-form textarea::-moz-placeholder {
1290
- color: #5a6c7c;
1291
- font-size: 14px;
1292
- }
1293
- .give-kudos .kudos-form textarea::placeholder {
1294
- color: #5a6c7c;
1295
- font-size: 14px;
1296
- }
1297
- .give-kudos .kudos-form .portals-input {
2113
+ .give-kudos .form .description textarea.theme-reactive {
1298
2114
  border: solid 1px var(--border);
1299
2115
  background-color: var(--surface-primary);
1300
2116
  color: var(--text-primary);
1301
2117
  }
1302
- .give-kudos .kudos-form .portals-input:focus {
2118
+ .give-kudos .form .description textarea.theme-reactive:focus {
1303
2119
  border: solid 1px var(--accent-primary);
1304
2120
  }
1305
- .give-kudos .kudos-form .textarea-info {
2121
+ .give-kudos .form .description textarea::-moz-placeholder {
2122
+ color: #5a6c7c;
2123
+ font-size: 14px;
2124
+ }
2125
+ .give-kudos .form .description textarea::placeholder {
2126
+ color: #5a6c7c;
2127
+ font-size: 14px;
2128
+ }
2129
+ .give-kudos .form .description .textarea-info {
1306
2130
  display: flex;
1307
2131
  flex-direction: column;
1308
2132
  align-items: end;
1309
2133
  font-size: var(--font-size-10);
1310
2134
  }
1311
- .give-kudos .kudos-form .textarea-info.lite-info {
1312
- font-size: 0.67rem;
1313
- }
1314
- .give-kudos .kudos-form label {
2135
+ .give-kudos .form label {
1315
2136
  display: flex;
1316
2137
  font-size: 0.94rem;
1317
2138
  margin-bottom: 10px;
1318
2139
  color: var(--text-primary);
1319
2140
  }
1320
- .give-kudos .kudos-form .error {
2141
+ .give-kudos .form .error {
1321
2142
  font-size: 0.8rem;
1322
2143
  color: #da1e28;
1323
2144
  }
1324
- .give-kudos .kudos-form .error-field {
2145
+ .give-kudos .form .error-field {
1325
2146
  border: solid 1px #da1e28 !important;
1326
2147
  }
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
+ }