@intellias/menu 1.0.0

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.
Files changed (174) hide show
  1. package/Menu.ts +625 -0
  2. package/README.md +121 -0
  3. package/assets/icons/arrow-down.svg +13 -0
  4. package/assets/icons/arrow-left.svg +3 -0
  5. package/assets/icons/arrow-submenu.svg +8 -0
  6. package/assets/icons/close.svg +3 -0
  7. package/assets/icons/delete.svg +13 -0
  8. package/assets/icons/faq-new.svg +4 -0
  9. package/assets/icons/kudos.svg +14 -0
  10. package/assets/icons/loading-spinner.svg +40 -0
  11. package/assets/icons/notification.svg +11 -0
  12. package/assets/icons/notifications/assessment.svg +10 -0
  13. package/assets/icons/notifications/buddy_program.svg +8 -0
  14. package/assets/icons/notifications/compensation_packages.svg +10 -0
  15. package/assets/icons/notifications/dsat.svg +8 -0
  16. package/assets/icons/notifications/feedback.svg +7 -0
  17. package/assets/icons/notifications/kudos.svg +4 -0
  18. package/assets/icons/notifications/overtime_requests.svg +15 -0
  19. package/assets/icons/notifications/pdu_program.svg +4 -0
  20. package/assets/icons/notifications/profile_update.svg +6 -0
  21. package/assets/icons/notifications/recommendation_program.svg +7 -0
  22. package/assets/icons/notifications/reminders.svg +4 -0
  23. package/assets/icons/notifications/sick_leaves.svg +5 -0
  24. package/assets/icons/notifications/smarts.svg +4 -0
  25. package/assets/icons/notifications/survey.svg +8 -0
  26. package/assets/icons/notifications/unpaid_leave.svg +4 -0
  27. package/assets/icons/notifications/vacations.svg +4 -0
  28. package/assets/icons/pause.svg +13 -0
  29. package/assets/icons/play.svg +13 -0
  30. package/assets/icons/smart.svg +14 -0
  31. package/assets/icons/smarts-kudos.svg +11 -0
  32. package/assets/icons/spinner-solid.svg +1 -0
  33. package/assets/icons/vacation.svg +14 -0
  34. package/assets/icons/visibility.svg +1 -0
  35. package/assets/intems-logo.svg +3 -0
  36. package/babel.config.js +6 -0
  37. package/buses/eventBus.ts +19 -0
  38. package/buses/events/GiveKudosEvent.ts +7 -0
  39. package/components/buttons/action-button/ActionButton.scss +133 -0
  40. package/components/buttons/action-button/ActionButton.ts +57 -0
  41. package/components/buttons/action-button/ActionButton.vue +50 -0
  42. package/components/buttons/secondary-button/SecondaryButton.scss +48 -0
  43. package/components/buttons/secondary-button/SecondaryButton.ts +28 -0
  44. package/components/buttons/secondary-button/SecondaryButton.vue +27 -0
  45. package/components/confirm/Confirm.scss +44 -0
  46. package/components/confirm/Confirm.ts +82 -0
  47. package/components/confirm/Confirm.vue +64 -0
  48. package/components/give-kudos-form/GiveKudosForm.scss +114 -0
  49. package/components/give-kudos-form/GiveKudosForm.ts +159 -0
  50. package/components/give-kudos-form/GiveKudosForm.vue +131 -0
  51. package/components/give-kudos-form/mixins/UserSelectMixin.ts +57 -0
  52. package/components/give-kudos-form/models/KudosShareModel.ts +6 -0
  53. package/components/give-kudos-form/models/UserListModel.ts +5 -0
  54. package/components/give-kudos-form/validators/InEnglishValidatorRegex.ts +17 -0
  55. package/components/give-kudos-form/validators/KudosBalance.ts +10 -0
  56. package/components/modal/Modal.scss +53 -0
  57. package/components/modal/Modal.ts +70 -0
  58. package/components/modal/Modal.vue +28 -0
  59. package/components/notifications-sidebar/NotificationsSidebar.scss +665 -0
  60. package/components/notifications-sidebar/NotificationsSidebar.ts +203 -0
  61. package/components/notifications-sidebar/NotificationsSidebar.vue +171 -0
  62. package/components/notifications-sidebar/models/BroadcastNotificationPayload.ts +8 -0
  63. package/components/notifications-sidebar/models/TotalCounter.ts +50 -0
  64. package/components/notifications-sidebar/notification/Notification.ts +17 -0
  65. package/components/notifications-sidebar/notification/Notification.vue +87 -0
  66. package/components/play-pause/PlayPause.scss +33 -0
  67. package/components/play-pause/PlayPause.ts +156 -0
  68. package/components/play-pause/PlayPause.vue +36 -0
  69. package/components/play-pause/PlayPauseStatus.ts +4 -0
  70. package/components/play-pause/helpers/LatestTrackedTimeDurationHelper.ts +55 -0
  71. package/components/play-pause/helpers/PauseHelper.ts +55 -0
  72. package/components/play-pause/helpers/TrackedTimeHelper.ts +80 -0
  73. package/components/preloader/Preloader.vue +34 -0
  74. package/components/request-loader/RequestLoader.scss +20 -0
  75. package/components/request-loader/RequestLoader.ts +80 -0
  76. package/components/request-loader/RequestLoader.vue +15 -0
  77. package/components/sub-menu/SubMenu.scss +33 -0
  78. package/components/sub-menu/SubMenu.ts +38 -0
  79. package/components/sub-menu/SubMenu.vue +21 -0
  80. package/components/time-ago/TimeAgo.ts +34 -0
  81. package/components/time-ago/TimeAgo.vue +9 -0
  82. package/components/user-picture/UserPicture.scss +62 -0
  83. package/components/user-picture/UserPicture.ts +105 -0
  84. package/components/user-picture/UserPicture.vue +23 -0
  85. package/components/v-select-intems/VSelectIntems.ts +112 -0
  86. package/components/v-select-intems/VSelectIntems.vue +68 -0
  87. package/components/v-select-intems/open-indicator/OpenIndicator.vue +3 -0
  88. package/dist/css/1.css +85 -0
  89. package/dist/css/2.css +34 -0
  90. package/dist/css/3.css +34 -0
  91. package/dist/css/4.css +34 -0
  92. package/dist/css/5.css +34 -0
  93. package/dist/css/main.css +1564 -0
  94. package/dist/html/app.html +19 -0
  95. package/dist/html/styles.html +1 -0
  96. package/dist/images/intems-logo.svg +3 -0
  97. package/dist/js/0.js +315 -0
  98. package/dist/js/1.js +313 -0
  99. package/dist/js/2.js +217 -0
  100. package/dist/js/3.js +181 -0
  101. package/dist/js/4.js +181 -0
  102. package/dist/js/5.js +181 -0
  103. package/dist/js/6.js +47 -0
  104. package/dist/js/main.js +7465 -0
  105. package/dist/js/vue.js +15 -0
  106. package/helpers/GeneralHelper.ts +61 -0
  107. package/helpers/PublisherSubscriber.ts +34 -0
  108. package/helpers/QueryFilter.ts +204 -0
  109. package/helpers/TimeHelper.ts +54 -0
  110. package/helpers/Validations.ts +7 -0
  111. package/helpers/model/ModelHelper.ts +155 -0
  112. package/helpers/model/decorators/AsCollection.ts +26 -0
  113. package/helpers/model/decorators/AsModel.ts +25 -0
  114. package/helpers/model/decorators/DateTime.ts +26 -0
  115. package/helpers/model/decorators/TimeDuration.ts +33 -0
  116. package/helpers/moment/Duration.ts +64 -0
  117. package/helpers/moment/Moment.ts +17 -0
  118. package/helpers/moment/index.d.ts +20 -0
  119. package/helpers/response/AxiosProxy.ts +72 -0
  120. package/helpers/response/ErrorsToToastHelper.ts +42 -0
  121. package/helpers/response/ResponseCode.ts +16 -0
  122. package/helpers/response/ResponseHelper.ts +42 -0
  123. package/helpers/response/ResponseInterface.ts +34 -0
  124. package/helpers/response/ResponseState.ts +6 -0
  125. package/jsconfig.json +19 -0
  126. package/mixins/IntemsMath.ts +29 -0
  127. package/mixins/notifications/ActionProcessing.ts +134 -0
  128. package/mixins/notifications/confirms/AssetRejectionConfirm.vue +59 -0
  129. package/mixins/notifications/confirms/SickLeaveRejectionConfirm.vue +31 -0
  130. package/mixins/notifications/confirms/UnpaidLeaveRejectionConfirm.vue +31 -0
  131. package/mixins/notifications/confirms/VacationRejectionConfirm.vue +31 -0
  132. package/models/AssetModel.ts +80 -0
  133. package/models/AssetRequestModel.ts +25 -0
  134. package/models/ConfigModel.ts +20 -0
  135. package/models/EmployeeStartEndDateModel.ts +16 -0
  136. package/models/EmploymentTypeModel.ts +95 -0
  137. package/models/LogoutModel.ts +3 -0
  138. package/models/Model.ts +12 -0
  139. package/models/ModuleOptions.ts +24 -0
  140. package/models/PublicInfoModel.ts +38 -0
  141. package/models/PublicLocationModel.ts +36 -0
  142. package/models/StatusModel.ts +8 -0
  143. package/models/TrackedTimeModel.ts +32 -0
  144. package/models/location/PublicLocationModel.ts +36 -0
  145. package/models/timezones/LocalTimezoneHistoryModel.ts +8 -0
  146. package/models/timezones/TimezoneModel.ts +9 -0
  147. package/models/user/ExtendedInfoModel.ts +37 -0
  148. package/models/user/NotificationActionModel.ts +53 -0
  149. package/models/user/NotificationModel.ts +84 -0
  150. package/models/user/PublicInfoModel.ts +38 -0
  151. package/models/user/WelcomeProgram.ts +4 -0
  152. package/package.json +117 -0
  153. package/repositories/BaseRepository.ts +42 -0
  154. package/repositories/BaseUrl.ts +107 -0
  155. package/repositories/Repository.ts +291 -0
  156. package/repositories/ResourceRepository.ts +99 -0
  157. package/repositories/TrackedTimeRepository.ts +43 -0
  158. package/repositories/UserRepository.ts +75 -0
  159. package/repositories/subscribers/CreateSubscribers.ts +28 -0
  160. package/repositories/subscribers/DefaultSubscribers.ts +82 -0
  161. package/repositories/subscribers/DeleteSubscribers.ts +28 -0
  162. package/repositories/subscribers/DownloadSubscribers.ts +28 -0
  163. package/repositories/subscribers/Subscribers.ts +13 -0
  164. package/repositories/subscribers/UpdateSubscribers.ts +32 -0
  165. package/scss/components/_global.scss +66 -0
  166. package/scss/components/_mixins.scss +31 -0
  167. package/scss/components/_tooltip.scss +45 -0
  168. package/scss/components/_utils.scss +26 -0
  169. package/scss/components/_variables.scss +103 -0
  170. package/scss/main.scss +7 -0
  171. package/shims-vue.d.ts +9 -0
  172. package/tsconfig.json +31 -0
  173. package/webpack.config.js +126 -0
  174. package/wrapper.ts +51 -0
@@ -0,0 +1,1564 @@
1
+ @import url(https://fonts.googleapis.com/css?family=Play:400,700&display=swap);
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
+ @import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap);
4
+ .action-button.is-btn-link {
5
+ padding: 0;
6
+ border: 0;
7
+ background: transparent;
8
+ cursor: pointer;
9
+ }
10
+ .action-button {
11
+ position: relative;
12
+ text-overflow: ellipsis;
13
+ overflow: hidden;
14
+ white-space: nowrap;
15
+ min-width: -moz-fit-content;
16
+ min-width: fit-content;
17
+ color: #ffffff;
18
+ background: #00a58e;
19
+ text-transform: initial;
20
+ border-radius: 4px;
21
+ font-weight: 600;
22
+ }
23
+ .action-button:hover {
24
+ background: #008c79;
25
+ }
26
+ @media only screen and (max-width : 600px) {
27
+ .action-button.btn-full {
28
+ width: 100%;
29
+ }
30
+ }
31
+ .action-button.is-btn-link {
32
+ color: #008c79;
33
+ background: transparent !important;
34
+ }
35
+ .action-button.is-btn-link:hover .span-text, .action-button.is-btn-link:active .span-text {
36
+ text-decoration: underline;
37
+ }
38
+ .action-button.is-btn-link:disabled, .action-button.is-btn-link.disabled {
39
+ pointer-events: none;
40
+ color: #94a3b8 !important;
41
+ }
42
+ .action-button.is-link {
43
+ color: #008c79;
44
+ background: transparent !important;
45
+ }
46
+ .action-button.is-link:hover, .action-button.is-link:active {
47
+ text-decoration: underline;
48
+ }
49
+ .action-button.is-link:disabled, .action-button.is-link.disabled {
50
+ pointer-events: none;
51
+ color: #94a3b8 !important;
52
+ }
53
+ .action-button.btn-transparent {
54
+ background: transparent;
55
+ color: #008c79;
56
+ }
57
+ .action-button.btn-transparent:hover, .action-button.btn-transparent:focus {
58
+ background: #e2e8f0;
59
+ }
60
+ .action-button.btn-transparent:disabled {
61
+ color: #94a3b8;
62
+ background: transparent !important;
63
+ }
64
+ .action-button .left-icon {
65
+ margin-right: 4px;
66
+ }
67
+ .action-button .spinner-solid {
68
+ color: #ffffff;
69
+ animation: spin 2s linear infinite;
70
+ vertical-align: middle;
71
+ transition: width 300ms, height 300ms;
72
+ margin-left: 8px;
73
+ }
74
+ .action-button .span-text {
75
+ vertical-align: middle;
76
+ }
77
+ .action-button span.tooltipped {
78
+ width: 100%;
79
+ height: 100%;
80
+ display: inline-block;
81
+ position: absolute;
82
+ cursor: pointer;
83
+ pointer-events: all;
84
+ }
85
+ .action-buttonbutton span.tooltipped {
86
+ margin-left: -16px;
87
+ }
88
+ .action-button.btn-secondary {
89
+ border: 1px solid #cbd5e1;
90
+ background-color: #ffffff;
91
+ }
92
+ .action-button.disabled:not(a), .action-button:not(a, .is-btn-link):disabled, .action-button[disabled]:not(a, .is-btn-link) {
93
+ background-color: #f1f5f9 !important;
94
+ color: #94a3b8 !important;
95
+ }
96
+ .action-button.disabled:not(a) .spinner-solid, .action-button:not(a, .is-btn-link):disabled .spinner-solid, .action-button[disabled]:not(a, .is-btn-link) .spinner-solid {
97
+ color: #64748b !important;
98
+ }
99
+ .action-button i.icon {
100
+ vertical-align: middle;
101
+ }
102
+ @keyframes spin {
103
+ 100% {
104
+ transform: rotate(360deg);
105
+ }
106
+ }
107
+ .progress[data-v-92cd54c2] {
108
+ margin: 0;
109
+ position: absolute;
110
+ visibility: hidden;
111
+ opacity: 0;
112
+ transition: opacity 1.5s, visibility 1.5s;
113
+ }
114
+ .progress .determinate[data-v-92cd54c2] {
115
+ background-color: #00a58e;
116
+ }
117
+ .progress.show[data-v-92cd54c2] {
118
+ visibility: visible;
119
+ opacity: 1;
120
+ transition: visibility 0s;
121
+ }
122
+ .preloader {
123
+ display: flex;
124
+ align-items: center;
125
+ justify-content: center;
126
+ }
127
+ .notifications-sidebar {
128
+ position: relative;
129
+ color: #1a2732;
130
+ }
131
+ .notifications-sidebar .row {
132
+ margin-bottom: 0;
133
+ box-sizing: inherit;
134
+ }
135
+ .notifications-sidebar .row .col {
136
+ padding: 0 0.75rem;
137
+ }
138
+ .notifications-sidebar .col .row {
139
+ margin-left: -0.75rem;
140
+ margin-right: -0.75rem;
141
+ }
142
+ .notifications-sidebar .v-dropdown-menu__container {
143
+ width: -moz-fit-content;
144
+ width: fit-content;
145
+ max-width: none;
146
+ min-width: none;
147
+ }
148
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row {
149
+ border-bottom: 1px #cbd5e1 solid;
150
+ padding: 0 3px 0 13px;
151
+ margin-bottom: 10px;
152
+ display: flex;
153
+ align-items: center;
154
+ justify-content: space-between;
155
+ }
156
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s10 {
157
+ height: 50px;
158
+ line-height: 50px;
159
+ font-weight: bold;
160
+ }
161
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s8 {
162
+ height: 50px;
163
+ line-height: 50px;
164
+ margin-left: 0;
165
+ font-weight: bold;
166
+ }
167
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .col.s2 {
168
+ height: 50px;
169
+ line-height: 50px;
170
+ margin-left: 5px;
171
+ display: flex;
172
+ align-items: center;
173
+ padding: 0 30px 0 0;
174
+ }
175
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu {
176
+ border: 1px #cbd5e1 solid;
177
+ border-radius: 2px;
178
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
179
+ padding-left: 0px;
180
+ }
181
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li {
182
+ min-height: 30px;
183
+ line-height: 30px;
184
+ width: 100%;
185
+ display: block;
186
+ }
187
+ .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) {
188
+ background-color: #c2e9e4;
189
+ }
190
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a {
191
+ color: #1a2732;
192
+ font-size: 16px;
193
+ line-height: 17px;
194
+ padding: 10px 16px;
195
+ cursor: pointer;
196
+ }
197
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__header .note-title-row .sub-menu li a.is-disabled {
198
+ color: rgba(0, 0, 0, 0.42);
199
+ cursor: not-allowed;
200
+ opacity: 0.5;
201
+ text-decoration: none;
202
+ pointer-events: none;
203
+ }
204
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown {
205
+ width: 370px;
206
+ height: auto !important;
207
+ transform: none !important;
208
+ }
209
+ @media only screen and (max-width : 600px) {
210
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown {
211
+ position: fixed;
212
+ width: 100% !important;
213
+ }
214
+ }
215
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs {
216
+ height: 38px;
217
+ line-height: 24px;
218
+ padding-left: 0;
219
+ list-style-type: none;
220
+ position: relative;
221
+ overflow-x: hidden;
222
+ overflow-y: hidden;
223
+ width: 100%;
224
+ background-color: #ffffff;
225
+ margin: 0 auto;
226
+ white-space: nowrap;
227
+ border-bottom: 1px #cbd5e1 solid;
228
+ }
229
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button {
230
+ clear: inherit;
231
+ min-height: auto;
232
+ width: 50%;
233
+ line-height: 28px;
234
+ background-color: #ffffff;
235
+ border: none;
236
+ cursor: pointer;
237
+ }
238
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab {
239
+ height: 20px;
240
+ display: inline-block;
241
+ text-align: center;
242
+ padding: 0;
243
+ margin: 0;
244
+ font-size: 0.8rem;
245
+ text-transform: initial;
246
+ padding: 0px 10px;
247
+ color: #64748b;
248
+ background-color: inherit;
249
+ }
250
+ .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 {
251
+ background-color: inherit;
252
+ color: #1a2732;
253
+ }
254
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs button.tab .counter {
255
+ font-weight: bold;
256
+ text-align: center;
257
+ font-size: 0.67rem;
258
+ border-radius: 10px;
259
+ padding: 2px 6px;
260
+ color: #ffffff;
261
+ background-color: #ff8041;
262
+ margin-left: 4px;
263
+ }
264
+ .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 {
265
+ background-color: inherit;
266
+ }
267
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .default-tabs .indicator {
268
+ background-color: #00a58e;
269
+ margin: 0 25px;
270
+ width: initial;
271
+ height: 3px;
272
+ width: 140px !important;
273
+ position: absolute;
274
+ bottom: 0;
275
+ height: 2px;
276
+ will-change: left, right;
277
+ transition: background-color 0.3s;
278
+ transition: transform 0.4s ease, width 0.4s ease;
279
+ }
280
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content {
281
+ padding: 0;
282
+ margin-left: 0;
283
+ width: 100%;
284
+ height: -moz-fit-content;
285
+ height: fit-content;
286
+ }
287
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list {
288
+ overflow-y: hidden;
289
+ box-shadow: inset 0 12px 8px -8px rgba(0, 0, 0, 0.12);
290
+ border-top: 1px #cbd5e1 solid;
291
+ line-height: 18px;
292
+ }
293
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content {
294
+ min-height: 120px;
295
+ max-height: 70vh;
296
+ }
297
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .preloader {
298
+ display: flex;
299
+ align-items: center;
300
+ justify-content: center;
301
+ margin: 20px auto;
302
+ left: 38%;
303
+ display: inline-block;
304
+ position: relative;
305
+ width: 80px;
306
+ height: 80px;
307
+ }
308
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note {
309
+ border-bottom: 1px #cbd5e1 solid;
310
+ padding: 20px 25px;
311
+ margin: 0 -0.75rem;
312
+ }
313
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:hover .manage-notification {
314
+ display: inline-block;
315
+ }
316
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note.read {
317
+ background-color: #f1f5f9;
318
+ }
319
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:not(.read) {
320
+ border-left: 3px solid #ff8041;
321
+ }
322
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .row {
323
+ position: relative;
324
+ display: flex;
325
+ }
326
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note:last-child {
327
+ border-bottom: none;
328
+ }
329
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note i.category-icon {
330
+ width: 28px;
331
+ height: 28px !important;
332
+ }
333
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .new-notification {
334
+ position: absolute;
335
+ width: 9px;
336
+ height: 9px;
337
+ border-radius: 5px;
338
+ background-color: #ff8041;
339
+ top: 0;
340
+ right: 10px;
341
+ }
342
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification {
343
+ position: absolute;
344
+ right: 10px;
345
+ display: none;
346
+ }
347
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i {
348
+ height: 16px;
349
+ }
350
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i:before {
351
+ background-color: #94a3b8;
352
+ }
353
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i.visibility {
354
+ height: 18px;
355
+ width: 18px;
356
+ }
357
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .manage-notification i.visibility:hover:before {
358
+ background-color: #186ade;
359
+ }
360
+ .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 {
361
+ background-color: #da1e28;
362
+ }
363
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .reject-color {
364
+ color: #da1e28;
365
+ }
366
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .note-title-col {
367
+ padding-left: 4px;
368
+ }
369
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .note-title-col .text-muted {
370
+ font-size: 0.8rem;
371
+ color: #64748b;
372
+ }
373
+ .notifications-sidebar .v-dropdown-menu__container .v-dropdown-menu__body .main-dropdown .notification-content .notifications-list .tab-content .note .action-buttons {
374
+ height: 21px;
375
+ }
376
+ .notifications-sidebar .notification-href {
377
+ padding: 0 15px 21px;
378
+ font-size: 1.2rem;
379
+ }
380
+ .notifications-sidebar a {
381
+ color: #00a58e;
382
+ display: inline;
383
+ padding: 0;
384
+ font-size: inherit;
385
+ }
386
+ .notifications-sidebar a:hover {
387
+ background-color: initial;
388
+ }
389
+ .notifications-sidebar .primary-text {
390
+ font-size: 0.94rem !important;
391
+ line-height: 1.29;
392
+ font-weight: bold;
393
+ }
394
+ .notifications-sidebar .view-all-row {
395
+ border-top: 1px #cbd5e1 solid;
396
+ line-height: 49px;
397
+ }
398
+ .notifications-sidebar .ps__rail-x {
399
+ display: none !important;
400
+ }
401
+ .notifications-sidebar .has-unread {
402
+ display: inline-block;
403
+ position: absolute;
404
+ top: 12px;
405
+ right: 7px;
406
+ height: 9px;
407
+ width: 9px;
408
+ border-radius: 50%;
409
+ background-color: #ff8041;
410
+ }
411
+ .notifications-sidebar .fade-enter-active,
412
+ .notifications-sidebar .fade-leave-active {
413
+ transition: opacity 0.5s;
414
+ }
415
+ .notifications-sidebar .fade-enter,
416
+ .notifications-sidebar .fade-leave-to {
417
+ opacity: 0;
418
+ }
419
+ .bell-animation {
420
+ -webkit-animation: ring 5.6s 0.5s ease-in-out infinite;
421
+ -webkit-transform-origin: 50% 4px;
422
+ -moz-animation: ring 5.6s 0.5s ease-in-out infinite;
423
+ -moz-transform-origin: 50% 4px;
424
+ animation: ring 5.6s 0.5s ease-in-out infinite;
425
+ transform-origin: 50% 4px;
426
+ }
427
+ @keyframes ring {
428
+ 0% {
429
+ transform: rotate(0);
430
+ }
431
+ 1% {
432
+ transform: rotate(32deg);
433
+ }
434
+ 3% {
435
+ transform: rotate(-30deg);
436
+ }
437
+ 5% {
438
+ transform: rotate(42deg);
439
+ }
440
+ 7% {
441
+ transform: rotate(-40deg);
442
+ }
443
+ 9% {
444
+ transform: rotate(36deg);
445
+ }
446
+ 11% {
447
+ transform: rotate(-34deg);
448
+ }
449
+ 13% {
450
+ transform: rotate(32deg);
451
+ }
452
+ 15% {
453
+ transform: rotate(-30deg);
454
+ }
455
+ 17% {
456
+ transform: rotate(30deg);
457
+ }
458
+ 19% {
459
+ transform: rotate(-28deg);
460
+ }
461
+ 21% {
462
+ transform: rotate(28deg);
463
+ }
464
+ 23% {
465
+ transform: rotate(-26deg);
466
+ }
467
+ 25% {
468
+ transform: rotate(26deg);
469
+ }
470
+ 27% {
471
+ transform: rotate(-24deg);
472
+ }
473
+ 29% {
474
+ transform: rotate(24deg);
475
+ }
476
+ 31% {
477
+ transform: rotate(-22deg);
478
+ }
479
+ 33% {
480
+ transform: rotate(23deg);
481
+ }
482
+ 35% {
483
+ transform: rotate(-21deg);
484
+ }
485
+ 37% {
486
+ transform: rotate(22deg);
487
+ }
488
+ 39% {
489
+ transform: rotate(-20deg);
490
+ }
491
+ 41% {
492
+ transform: rotate(21deg);
493
+ }
494
+ 43% {
495
+ transform: rotate(-19deg);
496
+ }
497
+ 45% {
498
+ transform: rotate(18deg);
499
+ }
500
+ 47% {
501
+ transform: rotate(-16deg);
502
+ }
503
+ 50% {
504
+ transform: rotate(14deg);
505
+ }
506
+ 52% {
507
+ transform: rotate(-12deg);
508
+ }
509
+ 54% {
510
+ transform: rotate(10deg);
511
+ }
512
+ 56% {
513
+ transform: rotate(-8deg);
514
+ }
515
+ 58% {
516
+ transform: rotate(6deg);
517
+ }
518
+ 60% {
519
+ transform: rotate(-4deg);
520
+ }
521
+ 62% {
522
+ transform: rotate(2deg);
523
+ }
524
+ 64% {
525
+ transform: rotate(-1deg);
526
+ }
527
+ 66% {
528
+ transform: rotate(1deg);
529
+ }
530
+ 70% {
531
+ transform: rotate(0);
532
+ }
533
+ 100% {
534
+ transform: rotate(0);
535
+ }
536
+ }
537
+ .modal-wrapper {
538
+ padding-bottom: 1rem;
539
+ border-radius: 6px !important;
540
+ background-color: #ffffff !important;
541
+ box-shadow: 0 15px 30px rgba(37, 55, 70, 0.202715);
542
+ color: #1a2732;
543
+ }
544
+ .modal-header {
545
+ display: flex;
546
+ justify-content: space-between;
547
+ padding: 2rem 2rem 1rem 2rem;
548
+ font-size: 1.25rem;
549
+ font-weight: bold;
550
+ }
551
+ .modal-header i.icon:before {
552
+ background-color: #1a2732 !important;
553
+ }
554
+ .modal-content {
555
+ padding: 1rem 2rem;
556
+ }
557
+ .modal-close {
558
+ width: 15px !important;
559
+ min-width: 15px;
560
+ height: 15px !important;
561
+ cursor: pointer;
562
+ }
563
+ .modal-footer {
564
+ display: flex;
565
+ justify-content: flex-end;
566
+ padding: 1rem 2rem;
567
+ }
568
+ .modal-footer .btn:not(:first-child) {
569
+ margin-left: 1rem;
570
+ }
571
+ .vm--overlay {
572
+ background-color: rgba(37, 55, 70, 0.55) !important;
573
+ transition: 0.3s !important;
574
+ }
575
+ .secondary-button {
576
+ position: relative;
577
+ text-overflow: ellipsis;
578
+ overflow: hidden;
579
+ white-space: nowrap;
580
+ color: #1a2732;
581
+ text-transform: initial;
582
+ border-radius: 4px;
583
+ font-weight: 600;
584
+ line-height: 38px;
585
+ }
586
+ .secondary-button i.icon {
587
+ vertical-align: middle;
588
+ }
589
+ .secondary-button .spinner-solid {
590
+ color: #1a2732;
591
+ animation: spin 2s linear infinite;
592
+ vertical-align: middle;
593
+ transition: width 300ms, height 300ms;
594
+ margin-left: 8px;
595
+ }
596
+ .secondary-button .left-icon {
597
+ margin-right: 4px;
598
+ }
599
+ .secondary-button.disabled, .secondary-button.btn-secondary:disabled, .secondary-button.btn[disabled] {
600
+ background-color: #f1f5f9 !important;
601
+ color: #94a3b8;
602
+ }
603
+ .secondary-button.disabled .spinner-solid, .secondary-button.btn-secondary:disabled .spinner-solid, .secondary-button.btn[disabled] .spinner-solid {
604
+ color: #94a3b8 !important;
605
+ }
606
+ @keyframes spin {
607
+ 100% {
608
+ transform: rotate(360deg);
609
+ }
610
+ }
611
+ #modalTracked {
612
+ color: #253746;
613
+ }
614
+ #modalTracked .modal-content #tracked-content {
615
+ display: flex;
616
+ align-items: center;
617
+ }
618
+ #modalTracked .modal-content #tracked-content p {
619
+ margin: 0;
620
+ line-height: initial;
621
+ }
622
+ #modalTracked .modal-content #span-clock {
623
+ margin-right: 10px;
624
+ }
625
+ #modalTracked .modal-content #span-clock i {
626
+ font-size: 54px;
627
+ }
628
+ .play-pause {
629
+ display: flex;
630
+ }
631
+ .play-pause i.spinner-solid {
632
+ animation: spin 1s linear infinite;
633
+ }
634
+ @keyframes spin {
635
+ 100% {
636
+ transform: rotate(360deg);
637
+ }
638
+ }
639
+ .sub-menu {
640
+ overflow: hidden;
641
+ background-color: #ffffff;
642
+ box-shadow: 0 2px 6px 0 rgba(37, 55, 70, 0.1);
643
+ padding-left: 32px;
644
+ }
645
+ .sub-menu .items {
646
+ width: 100%;
647
+ font-size: 0.94rem;
648
+ font-family: "open sans", sans-serif;
649
+ white-space: nowrap;
650
+ }
651
+ .sub-menu .items a {
652
+ color: #253746;
653
+ padding: 0 5px 5px;
654
+ margin-right: 15px;
655
+ float: left;
656
+ line-height: 29px;
657
+ height: 29px;
658
+ border-bottom: 3px solid white;
659
+ text-decoration: none;
660
+ box-sizing: content-box;
661
+ }
662
+ .sub-menu .items a:hover, .sub-menu .items a.router-link-exact-active {
663
+ -webkit-text-stroke: 0.7px #253746;
664
+ border-bottom: 3px solid #00a58e;
665
+ }
666
+ .image-wrapper.sm {
667
+ width: 35px;
668
+ height: 35px;
669
+ }
670
+ .image-wrapper.sm .user-image {
671
+ border: 1px solid #cbd5e1;
672
+ }
673
+ .image-wrapper.sm .user-image.anonymous {
674
+ font-size: 0.8rem;
675
+ }
676
+ .image-wrapper.md {
677
+ height: 44px;
678
+ width: 44px;
679
+ }
680
+ .image-wrapper.md .user-image {
681
+ border: 1px solid #cbd5e1;
682
+ }
683
+ .image-wrapper.md .user-image.anonymous {
684
+ font-size: 1.07rem;
685
+ color: #94a3b8;
686
+ }
687
+ .image-wrapper.lg {
688
+ height: 96px;
689
+ width: 96px;
690
+ }
691
+ .image-wrapper.xl {
692
+ height: 128px;
693
+ width: 128px;
694
+ }
695
+ .image-wrapper.xl .user-image.anonymous {
696
+ font-size: 3.34rem;
697
+ color: #94a3b8;
698
+ }
699
+ .image-wrapper .user-image {
700
+ border: 2px solid #cbd5e1;
701
+ border-radius: 50%;
702
+ overflow: hidden;
703
+ width: inherit;
704
+ height: inherit;
705
+ }
706
+ .image-wrapper .user-imageimg {
707
+ -o-object-fit: cover;
708
+ object-fit: cover;
709
+ }
710
+ .image-wrapper .user-image.anonymous {
711
+ background-color: #f8fafc;
712
+ font-size: 2.5rem;
713
+ color: #94a3b8;
714
+ font-weight: 600;
715
+ text-transform: uppercase;
716
+ display: inline-flex;
717
+ justify-content: center;
718
+ align-items: center;
719
+ }
720
+ .image-wrapper.no-border .user-image {
721
+ border: none;
722
+ }
723
+ .welcome-program-counter {
724
+ margin-left: 6px;
725
+ position: relative;
726
+ border-radius: 2px;
727
+ background-color: #ff8036;
728
+ font-family: play, sans-serif;
729
+ font-size: 0.67rem;
730
+ font-weight: bold;
731
+ color: #ffffff;
732
+ padding: 2px;
733
+ bottom: 1px;
734
+ }
735
+ .menu-new {
736
+ display: flex;
737
+ position: absolute;
738
+ justify-content: center;
739
+ align-items: center;
740
+ width: 31px;
741
+ height: 16px;
742
+ background: #ff8041;
743
+ line-height: 12px;
744
+ font-size: 10px;
745
+ border-radius: 2px;
746
+ }
747
+ .menu-new.horizontal, .menu-new.overflowed {
748
+ right: 0;
749
+ top: -16px;
750
+ color: #ffffff;
751
+ }
752
+ .vm--container {
753
+ cursor: auto;
754
+ }
755
+ .vm--container i.icon.huge {
756
+ width: 64px;
757
+ height: 64px !important;
758
+ }
759
+ .vm--container i.icon.huge:before {
760
+ background-color: #000000 !important;
761
+ }
762
+ .overflowed-menu-toggler {
763
+ position: relative;
764
+ display: flex;
765
+ flex-wrap: wrap;
766
+ flex-direction: column;
767
+ justify-content: center;
768
+ width: 20px;
769
+ height: 64px;
770
+ line-height: 64px;
771
+ cursor: pointer;
772
+ }
773
+ .overflowed-menu-toggler.notification-manage-toggler span {
774
+ background-color: #94a3b8;
775
+ width: 4px;
776
+ height: 4px;
777
+ }
778
+ .overflowed-menu-toggler span {
779
+ display: inline-block;
780
+ width: 5px;
781
+ height: 5px;
782
+ border-radius: 50%;
783
+ margin: 1px auto;
784
+ background-color: #ffffff;
785
+ }
786
+ .navbar-fixed {
787
+ position: relative;
788
+ display: flex;
789
+ align-items: center;
790
+ height: 64px;
791
+ max-height: 64px;
792
+ z-index: 997;
793
+ }
794
+ .navbar-fixed nav {
795
+ position: fixed;
796
+ box-shadow: none !important;
797
+ min-width: 250px;
798
+ width: 100vw;
799
+ background-color: #253746;
800
+ }
801
+ .navbar-fixed nav ul .href-wrap {
802
+ position: relative;
803
+ }
804
+ .navbar-fixed nav ul a {
805
+ position: relative;
806
+ white-space: nowrap;
807
+ color: #f8fafc;
808
+ transition: background-color 0.3s;
809
+ font-size: 1.2rem;
810
+ display: block;
811
+ padding: 0 15px;
812
+ cursor: pointer;
813
+ }
814
+ .navbar-fixed nav ul a:hover {
815
+ background-color: rgba(0, 0, 0, 0.1);
816
+ }
817
+ .navbar-fixed nav ul a.notification-href {
818
+ display: inline;
819
+ }
820
+ .navbar-fixed nav .brand-logo {
821
+ position: relative;
822
+ font-weight: bold;
823
+ margin-left: 20px;
824
+ text-transform: uppercase;
825
+ vertical-align: middle;
826
+ font-family: play, sans-serif;
827
+ height: inherit;
828
+ }
829
+ .navbar-fixed nav .brand-logo img {
830
+ width: 150px;
831
+ height: 64px;
832
+ }
833
+ @media only screen and (max-width : 992px) {
834
+ .navbar-fixed nav .brand-logo {
835
+ order: 1;
836
+ left: 0;
837
+ transform: translateX(0);
838
+ margin: 0 auto;
839
+ }
840
+ }
841
+ .navbar-fixed nav .btn.play-pause {
842
+ height: 42px;
843
+ line-height: 42px;
844
+ padding: 7px 8px;
845
+ margin-left: 20px;
846
+ border-radius: 5px;
847
+ }
848
+ @media only screen and (max-width : 992px) {
849
+ .navbar-fixed nav .btn.play-pause {
850
+ order: 0;
851
+ margin-left: 12px;
852
+ }
853
+ }
854
+ @media only screen and (max-width : 600px) {
855
+ .navbar-fixed nav .btn.play-pause {
856
+ height: 36px;
857
+ line-height: 36px;
858
+ padding: 6px 6px;
859
+ }
860
+ }
861
+ .navbar-fixed nav .btn.play-pause > i.icon {
862
+ vertical-align: baseline;
863
+ }
864
+ .navbar-fixed nav .btn.play-pause > i.icon:before {
865
+ transition: background-color 0.2s ease-out;
866
+ }
867
+ .navbar-fixed nav .btn.play-pause > i.icon.pause:before {
868
+ background-color: #00a58e;
869
+ }
870
+ .navbar-fixed nav .btn.play-pause > i.icon.play {
871
+ color: #ffffff;
872
+ }
873
+ .navbar-fixed nav .btn.play-pause:hover > i.icon.play:before {
874
+ background-color: #00a58e;
875
+ }
876
+ .navbar-fixed nav .btn.play-pause:hover > i.icon.pause:before {
877
+ background-color: #ffffff;
878
+ }
879
+ .navbar-fixed nav .menu-items {
880
+ flex: 1;
881
+ white-space: nowrap;
882
+ overflow: initial;
883
+ font-weight: bold;
884
+ height: 64px;
885
+ font-family: play, sans-serif;
886
+ }
887
+ .navbar-fixed nav .menu-items.hasOverflow {
888
+ overflow: hidden;
889
+ }
890
+ .navbar-fixed nav .menu-items li {
891
+ height: 64px;
892
+ list-style-type: none;
893
+ float: left;
894
+ }
895
+ .navbar-fixed nav .menu-items li a.router-link-active,
896
+ .navbar-fixed nav .menu-items li a.router-link-exact-active {
897
+ color: #45d6ad;
898
+ border-bottom: 3px solid #45d6ad;
899
+ }
900
+ .navbar-fixed nav .menu-items li a {
901
+ transition: background-color 0.3s;
902
+ font-size: 1.2rem;
903
+ display: flex;
904
+ align-items: center;
905
+ padding: 0 15px;
906
+ height: 64px;
907
+ cursor: pointer;
908
+ }
909
+ .navbar-fixed nav .menu-items li a:hover {
910
+ background-color: rgba(0, 0, 0, 0.1);
911
+ }
912
+ .navbar-fixed nav .menu-items li ul {
913
+ background-color: #253746;
914
+ position: absolute;
915
+ display: none;
916
+ margin: 0;
917
+ padding: 0;
918
+ }
919
+ .navbar-fixed nav .menu-items li ul.admin li {
920
+ width: 100%;
921
+ }
922
+ .navbar-fixed nav .menu-items li ul.admin li.subItems ul {
923
+ right: 100%;
924
+ top: 0;
925
+ }
926
+ .navbar-fixed nav .menu-items li ul.admin li:hover > a {
927
+ background-color: rgba(65, 84, 100, 0.35);
928
+ }
929
+ .navbar-fixed nav .menu-items li.subItems {
930
+ position: relative;
931
+ }
932
+ .navbar-fixed nav .menu-items li:hover > ul {
933
+ display: block;
934
+ }
935
+ .navbar-fixed nav .notifications-bell {
936
+ max-height: 64px;
937
+ }
938
+ @media only screen and (max-width : 992px) {
939
+ .navbar-fixed nav .notifications-bell {
940
+ order: 2;
941
+ margin-right: 5px;
942
+ }
943
+ }
944
+ @media only screen and (min-width : 601px) {
945
+ .navbar-fixed nav .notifications-bell {
946
+ line-height: 64px;
947
+ }
948
+ }
949
+ @media only screen and (max-width : 600px) {
950
+ .navbar-fixed nav .notifications-bell .notification-href {
951
+ padding-bottom: 17px;
952
+ }
953
+ }
954
+ @media only screen and (min-width : 993px) {
955
+ .navbar-fixed nav .notifications-bell {
956
+ position: absolute;
957
+ right: 175px;
958
+ }
959
+ .navbar-fixed nav .notifications-bell.fixed-padding {
960
+ right: 175px;
961
+ }
962
+ }
963
+ .navbar-fixed nav .menu-items-overflowed {
964
+ font-weight: bold;
965
+ font-family: play, sans-serif;
966
+ position: relative;
967
+ cursor: pointer;
968
+ margin-right: 30px;
969
+ padding: 0 5px;
970
+ }
971
+ .navbar-fixed nav .menu-items-overflowed:hover > ul {
972
+ display: flex;
973
+ visibility: visible;
974
+ }
975
+ .navbar-fixed nav .menu-items-overflowed ul {
976
+ position: absolute;
977
+ min-width: 230px;
978
+ flex-direction: column;
979
+ background: #253746;
980
+ visibility: hidden;
981
+ transition: transform 0.3s, visibility 0.3s;
982
+ right: 0;
983
+ bottom: 0;
984
+ transform: translateY(100%) translateX(0);
985
+ }
986
+ .navbar-fixed nav .menu-items-overflowed ul.moved {
987
+ transform: translateY(100%) translateX(-10%);
988
+ }
989
+ .navbar-fixed nav .menu-items-overflowed ul a.router-link-exact-active {
990
+ background-color: rgba(0, 0, 0, 0.05);
991
+ }
992
+ .navbar-fixed nav .menu-items-overflowed ul > li {
993
+ width: 100%;
994
+ background-color: #253746;
995
+ }
996
+ .navbar-fixed nav .menu-items-overflowed ul > li.subItems ul {
997
+ top: 0;
998
+ right: initial;
999
+ left: 100%;
1000
+ transform: none;
1001
+ }
1002
+ .navbar-fixed nav .menu-items-overflowed ul li a {
1003
+ line-height: 56px;
1004
+ }
1005
+ .navbar-fixed nav .menu-items-overflowed ul li.subItems:hover > ul {
1006
+ display: flex;
1007
+ visibility: visible;
1008
+ }
1009
+ .navbar-fixed nav .menu-items-overflowed ul li.subItems a {
1010
+ display: flex;
1011
+ justify-content: space-between;
1012
+ align-items: center;
1013
+ }
1014
+ .navbar-fixed nav .menu-items-overflowed ul > li:hover > a {
1015
+ background-color: rgba(65, 84, 100, 0.35);
1016
+ }
1017
+ .navbar-fixed nav .menu-items-overflowed ul > li:hover > ul > li {
1018
+ background-color: #253746;
1019
+ }
1020
+ .navbar-fixed nav .nav-wrapper {
1021
+ display: flex;
1022
+ align-items: center;
1023
+ margin: 0px 20px;
1024
+ position: relative;
1025
+ height: 100%;
1026
+ }
1027
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler {
1028
+ position: relative;
1029
+ display: flex;
1030
+ flex-wrap: wrap;
1031
+ flex-direction: column;
1032
+ justify-content: space-between;
1033
+ width: 20px;
1034
+ height: 14px;
1035
+ cursor: pointer;
1036
+ }
1037
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler span {
1038
+ display: inline-block;
1039
+ width: 100%;
1040
+ height: 2px;
1041
+ border-radius: 2px;
1042
+ background-color: #ffffff;
1043
+ transition: width 0.3s 0.2s;
1044
+ }
1045
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler .icon {
1046
+ position: absolute;
1047
+ top: 50%;
1048
+ right: -7px;
1049
+ transform: translateY(-50%);
1050
+ width: 14px;
1051
+ height: 14px;
1052
+ color: #ffffff;
1053
+ opacity: 0;
1054
+ transition: 0.3s;
1055
+ }
1056
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.collapsed span:nth-child(2) {
1057
+ width: 75%;
1058
+ transition: width 0.3s;
1059
+ }
1060
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.collapsed .icon {
1061
+ opacity: 1;
1062
+ transition: 0.2s 0.3s;
1063
+ }
1064
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span {
1065
+ position: absolute;
1066
+ transition: 0.5s;
1067
+ }
1068
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:first-child, .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:nth-child(3) {
1069
+ top: 6px;
1070
+ left: -1px;
1071
+ }
1072
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:first-child {
1073
+ transform: rotate(45deg);
1074
+ }
1075
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:nth-child(2) {
1076
+ width: 0;
1077
+ opacity: 0;
1078
+ }
1079
+ .navbar-fixed nav .nav-wrapper .sidebar-toggler.open span:nth-child(3) {
1080
+ transform: rotate(-45deg);
1081
+ }
1082
+ @media only screen and (max-width : 992px) {
1083
+ .navbar-fixed nav .nav-wrapper .mobile-menu-toggler {
1084
+ display: flex;
1085
+ flex-wrap: wrap;
1086
+ flex-direction: column;
1087
+ justify-content: space-between;
1088
+ width: 20px;
1089
+ height: 14px;
1090
+ order: 0;
1091
+ margin: 0 5px;
1092
+ }
1093
+ .navbar-fixed nav .nav-wrapper .mobile-menu-toggler span {
1094
+ display: inline-block;
1095
+ width: 100%;
1096
+ height: 2px;
1097
+ border-radius: 2px;
1098
+ background-color: #ffffff;
1099
+ }
1100
+ }
1101
+ .navbar-fixed nav .nav-wrapper i.icon {
1102
+ height: 24px;
1103
+ vertical-align: middle;
1104
+ }
1105
+ .navbar-fixed nav .nav-wrapper i.icon.icon-medium {
1106
+ height: 16px !important;
1107
+ width: 16px !important;
1108
+ }
1109
+ .navbar-fixed nav .nav-wrapper i.icon:before {
1110
+ background-color: #45d6ad;
1111
+ }
1112
+ .navbar-fixed nav .nav-wrapper i.icon.notification {
1113
+ float: none;
1114
+ margin: 0;
1115
+ }
1116
+ .navbar-fixed nav .nav-wrapper i.icon.notification:before {
1117
+ background-color: #45d6ad;
1118
+ }
1119
+ .navbar-fixed nav .nav-wrapper i.icon.notification.has-unread {
1120
+ position: relative;
1121
+ }
1122
+ .navbar-fixed nav .nav-wrapper i.icon.notification.has-unread:after {
1123
+ content: "";
1124
+ height: 9px;
1125
+ width: 9px;
1126
+ border-radius: 50%;
1127
+ background-color: #ff8041;
1128
+ position: absolute;
1129
+ top: -8px;
1130
+ right: -8px;
1131
+ }
1132
+ .navbar-fixed nav .nav-wrapper .right-side {
1133
+ margin-right: 20px;
1134
+ position: relative;
1135
+ max-height: 64px;
1136
+ }
1137
+ @media only screen and (max-width : 992px) {
1138
+ .navbar-fixed nav .nav-wrapper .right-side {
1139
+ order: 3;
1140
+ margin-right: 2px;
1141
+ }
1142
+ }
1143
+ .navbar-fixed nav .nav-wrapper .right-side .icons {
1144
+ padding-right: 20px;
1145
+ display: inline-block;
1146
+ vertical-align: middle;
1147
+ font-size: 1.07rem;
1148
+ line-height: 64px;
1149
+ }
1150
+ .navbar-fixed nav .nav-wrapper .right-side .icons li {
1151
+ transition: background-color 0.3s;
1152
+ float: left;
1153
+ padding: 0;
1154
+ }
1155
+ .navbar-fixed nav .nav-wrapper .right-side .icons .icon + span {
1156
+ vertical-align: middle;
1157
+ margin-left: 8px;
1158
+ }
1159
+ .navbar-fixed nav .nav-wrapper .right-side .icons.fixed-padding {
1160
+ padding-right: 35px;
1161
+ }
1162
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper {
1163
+ margin-left: 30px;
1164
+ padding: 0px 15px 0px 15px;
1165
+ display: inline-block;
1166
+ vertical-align: middle;
1167
+ width: -moz-fit-content;
1168
+ width: fit-content;
1169
+ line-height: 64px;
1170
+ }
1171
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper:hover {
1172
+ background-color: #3b4d5d;
1173
+ border-radius: 2px;
1174
+ cursor: pointer;
1175
+ }
1176
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper.fixed-padding {
1177
+ margin-left: 25px;
1178
+ }
1179
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper.fixed-padding:before {
1180
+ right: 143px;
1181
+ }
1182
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper:before {
1183
+ content: "";
1184
+ position: absolute;
1185
+ right: 148px;
1186
+ bottom: 15px;
1187
+ height: 50%;
1188
+ width: 5px;
1189
+ border-right: 1px solid #3b4d5d;
1190
+ }
1191
+ @media only screen and (max-width : 992px) {
1192
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper {
1193
+ margin-left: 5px;
1194
+ padding: 0px 5px 0px 5px;
1195
+ display: flex;
1196
+ flex-direction: column;
1197
+ align-items: center;
1198
+ }
1199
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper:hover {
1200
+ background: none;
1201
+ }
1202
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper:before {
1203
+ content: "";
1204
+ position: absolute;
1205
+ right: 80px;
1206
+ bottom: 5%;
1207
+ height: 90%;
1208
+ width: 5px;
1209
+ border-right: 1px solid #3b4d5d;
1210
+ }
1211
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper.fixed-padding:before {
1212
+ right: 85px;
1213
+ }
1214
+ }
1215
+ @media only screen and (max-width : 992px) {
1216
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper a {
1217
+ float: none;
1218
+ line-height: initial;
1219
+ }
1220
+ }
1221
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-user {
1222
+ float: left;
1223
+ vertical-align: middle;
1224
+ }
1225
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-user .image-wrapper {
1226
+ vertical-align: middle;
1227
+ -o-object-fit: cover;
1228
+ object-fit: cover;
1229
+ height: 40px;
1230
+ width: 40px;
1231
+ }
1232
+ @media only screen and (max-width : 992px) {
1233
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-user .image-wrapper {
1234
+ height: 32px;
1235
+ width: 32px;
1236
+ }
1237
+ }
1238
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-logo {
1239
+ vertical-align: middle;
1240
+ margin-left: 5px;
1241
+ text-decoration: none;
1242
+ color: #45d6ad;
1243
+ font-family: play, sans-serif;
1244
+ font-weight: 700;
1245
+ }
1246
+ .navbar-fixed nav .nav-wrapper .right-side .intellihub-user-wrapper .intellihub-logo.white-font {
1247
+ color: #ffffff;
1248
+ }
1249
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown {
1250
+ min-width: -moz-fit-content;
1251
+ min-width: fit-content;
1252
+ padding: 10px;
1253
+ border-radius: 4px;
1254
+ box-shadow: 0 2px 6px 0 rgba(37, 55, 70, 0.1);
1255
+ }
1256
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown #avatar_dropdown_li {
1257
+ display: flex;
1258
+ }
1259
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown .avatar {
1260
+ width: 44px;
1261
+ height: 44px;
1262
+ -o-object-fit: cover;
1263
+ object-fit: cover;
1264
+ vertical-align: middle;
1265
+ }
1266
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div {
1267
+ display: inline-block;
1268
+ }
1269
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div p {
1270
+ margin: 0;
1271
+ white-space: nowrap;
1272
+ }
1273
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div p#empl_name {
1274
+ font-weight: bold;
1275
+ color: #1a2732;
1276
+ }
1277
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div .employee-position {
1278
+ color: #64748b;
1279
+ }
1280
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown div#avatar_div {
1281
+ float: right;
1282
+ margin-left: 26px;
1283
+ }
1284
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown li {
1285
+ min-height: 2em;
1286
+ background-color: #ffffff;
1287
+ }
1288
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown li.divider {
1289
+ background-color: #cbd5e1;
1290
+ margin: 10px 0;
1291
+ min-height: 1px;
1292
+ }
1293
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown li > a {
1294
+ background-color: #ffffff;
1295
+ padding: 0 0 0 0;
1296
+ color: #1a2732;
1297
+ border-bottom: none;
1298
+ }
1299
+ .navbar-fixed nav .nav-wrapper .right-side #avatar_dropdown li > a:hover {
1300
+ color: #008c79;
1301
+ }
1302
+ #mobile-menu {
1303
+ font-family: play, sans-serif;
1304
+ font-weight: bold;
1305
+ width: 100%;
1306
+ height: 100%;
1307
+ background-color: color("intems", "dark");
1308
+ }
1309
+ #mobile-menu.sidenav-mobile {
1310
+ position: fixed;
1311
+ left: 0;
1312
+ top: 0;
1313
+ margin: 0;
1314
+ padding-bottom: 60px;
1315
+ z-index: 999;
1316
+ overflow-y: auto;
1317
+ will-change: transform;
1318
+ backface-visibility: hidden;
1319
+ font-size: 14px;
1320
+ line-height: 1.5;
1321
+ color: #253746;
1322
+ transform: translateX(-105%);
1323
+ transition: transform 0.6s ease;
1324
+ /* Add this line for the transition effect */
1325
+ }
1326
+ #mobile-menu.sidenav-mobile li > a {
1327
+ display: flex;
1328
+ align-items: center;
1329
+ justify-content: space-between;
1330
+ font-size: 18px;
1331
+ font-weight: 500;
1332
+ height: 48px;
1333
+ line-height: 48px;
1334
+ padding: 0 32px;
1335
+ }
1336
+ #mobile-menu.sidenav-mobile li > a:hover {
1337
+ background-color: rgba(0, 0, 0, 0.05);
1338
+ }
1339
+ #mobile-menu.sidenav-mobile.opened {
1340
+ transform: translateX(0%);
1341
+ }
1342
+ #mobile-menu a {
1343
+ position: relative;
1344
+ font-size: 18px;
1345
+ color: color("intems", "white");
1346
+ }
1347
+ #mobile-menu a.router-link-exact-active {
1348
+ color: color("intems", "primary");
1349
+ }
1350
+ #mobile-menu a:hover {
1351
+ color: color("intems", "primary");
1352
+ }
1353
+ #mobile-menu a .href-wrap {
1354
+ position: relative;
1355
+ }
1356
+ #mobile-menu .divider {
1357
+ margin: 8px 0;
1358
+ background-color: color("intems", "text-tertiary");
1359
+ }
1360
+ #mobile-menu li a.router-link-exact-active {
1361
+ background-color: rgba(0, 0, 0, 0.05);
1362
+ }
1363
+ #mobile-menu .admin {
1364
+ background-color: color("intems", "dark");
1365
+ }
1366
+ #mobile-menu .admin i {
1367
+ color: color("intems", "white");
1368
+ }
1369
+ #mobile-menu .admin > li > ul {
1370
+ transition: max-height 2s;
1371
+ background: #e5feff;
1372
+ overflow: hidden;
1373
+ max-height: 0;
1374
+ }
1375
+ #mobile-menu .admin > li > ul.opened {
1376
+ max-height: 100vh;
1377
+ }
1378
+ #mobile-menu .admin > li > a {
1379
+ padding-left: 48px;
1380
+ }
1381
+ #mobile-menu .admin > li > ul > li > a {
1382
+ padding-left: 64px;
1383
+ background-color: color("intems", "dark");
1384
+ }
1385
+ #mobile-menu #mobile-menu-head {
1386
+ line-height: 64px;
1387
+ }
1388
+ #mobile-menu #mobile-menu-head > div {
1389
+ text-align: center;
1390
+ width: 100%;
1391
+ }
1392
+ #mobile-menu #mobile-menu-head > div > a {
1393
+ font-size: 24px;
1394
+ color: color("intems", "white");
1395
+ }
1396
+ #mobile-menu #mobile-menu-head > div > a:hover {
1397
+ cursor: pointer;
1398
+ }
1399
+ #mobile-menu #mobile-menu-head > div > a.brand-logo {
1400
+ font-family: play, sans-serif;
1401
+ font-weight: bold;
1402
+ }
1403
+ #mobile-menu #mobile-menu-head > div > a#menu_close_mark {
1404
+ float: right;
1405
+ margin: 0 18px;
1406
+ }
1407
+ #mobile-menu .collapsible-mobile {
1408
+ border-color: color("intems", "text-tertiary");
1409
+ border-width: 1px;
1410
+ border-style: solid;
1411
+ border-bottom: none;
1412
+ margin: 0.5rem 0 1rem 0;
1413
+ }
1414
+ #mobile-menu .collapsible-mobile li i {
1415
+ float: right;
1416
+ }
1417
+ #mobile-menu .collapsible-mobile li.active i {
1418
+ /* IE 9 */
1419
+ /* Chrome, Safari, Opera */
1420
+ transform: rotate(180deg);
1421
+ }
1422
+ #mobile-menu #mobile-menu-head_avatar {
1423
+ color: color("intems", "white");
1424
+ padding: 5px 32px;
1425
+ }
1426
+ #mobile-menu #mobile-menu-head_avatar:hover {
1427
+ cursor: pointer;
1428
+ }
1429
+ #mobile-menu #mobile-menu-head_avatar > ul {
1430
+ margin: 15px 0;
1431
+ }
1432
+ #mobile-menu #mobile-menu-head_avatar .fade-enter-active,
1433
+ #mobile-menu #mobile-menu-head_avatar .fade-leave-active {
1434
+ transition: opacity 0.5s;
1435
+ }
1436
+ #mobile-menu #mobile-menu-head_avatar .fade-enter, #mobile-menu #mobile-menu-head_avatar .fade-leave-to {
1437
+ opacity: 0;
1438
+ }
1439
+ #mobile-menu #mobile-menu-head_avatar > div {
1440
+ display: table;
1441
+ padding: 0;
1442
+ }
1443
+ #mobile-menu #mobile-menu-head_avatar > div > div {
1444
+ display: table-cell;
1445
+ vertical-align: middle;
1446
+ }
1447
+ #mobile-menu #mobile-menu-head_avatar p {
1448
+ margin: 0;
1449
+ line-height: normal;
1450
+ }
1451
+ #mobile-menu #mobile-menu-head_avatar p#mobile-menu-empl_name {
1452
+ font-weight: bold;
1453
+ }
1454
+ #mobile-menu #mobile-menu-head_avatar p#mobile-menu-empl_position {
1455
+ font-size: 12px;
1456
+ font-weight: normal;
1457
+ }
1458
+ #mobile-menu #mobile-menu-head_avatar #mobile-menu-avatar_div {
1459
+ padding-right: 20px;
1460
+ }
1461
+ #mobile-menu #mobile-menu-head_avatar #mobile-menu-avatar_div .avatar {
1462
+ width: 44px;
1463
+ height: 44px;
1464
+ -o-object-fit: cover;
1465
+ object-fit: cover;
1466
+ vertical-align: middle;
1467
+ }
1468
+ #mobile-menu #mobile-menu-head_avatar a {
1469
+ padding: 0;
1470
+ line-height: 2;
1471
+ font-size: 14px;
1472
+ height: unset;
1473
+ color: color("intems", "primary-hover");
1474
+ }
1475
+ .cursor-default {
1476
+ cursor: default;
1477
+ }
1478
+ .tooltip {
1479
+ display: block !important;
1480
+ z-index: 10000;
1481
+ }
1482
+ .tooltip .tooltip-inner {
1483
+ max-width: 300px;
1484
+ padding: 6px 8px;
1485
+ background: #253746;
1486
+ border-radius: 6px;
1487
+ box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
1488
+ color: #ffffff;
1489
+ font-size: 0.8rem;
1490
+ }
1491
+ .tooltip[x-placement^=top] {
1492
+ margin-bottom: 5px;
1493
+ }
1494
+ .tooltip[x-placement^=bottom] {
1495
+ margin-top: 5px;
1496
+ }
1497
+ .tooltip[x-placement^=right] {
1498
+ margin-left: 5px;
1499
+ }
1500
+ .tooltip[x-placement^=left] {
1501
+ margin-right: 5px;
1502
+ }
1503
+ .tooltip[aria-hidden=true] {
1504
+ visibility: hidden;
1505
+ opacity: 0;
1506
+ transition: opacity 0.15s, visibility 0.15s;
1507
+ }
1508
+ .tooltip[aria-hidden=false] {
1509
+ visibility: visible;
1510
+ opacity: 1;
1511
+ transition: opacity 0.15s;
1512
+ }
1513
+ main {
1514
+ overflow: auto;
1515
+ position: relative;
1516
+ flex: 1 1 auto;
1517
+ }
1518
+ .bold {
1519
+ font-weight: bold;
1520
+ }
1521
+ .margin-top-5 {
1522
+ margin-top: 5px;
1523
+ }
1524
+ .margin-top-10 {
1525
+ margin-top: 10px;
1526
+ }
1527
+ .padding-top-15 {
1528
+ padding-top: 15px;
1529
+ }
1530
+ .margin-top-15 {
1531
+ margin-top: 15px;
1532
+ }
1533
+ .margin-top-25 {
1534
+ margin-top: 25px;
1535
+ }
1536
+ .margin-top-50 {
1537
+ margin-top: 50px;
1538
+ }
1539
+ .title-row {
1540
+ margin: 30px 0 40px;
1541
+ }
1542
+ .title-row .page-title {
1543
+ margin: 0;
1544
+ align-self: center;
1545
+ justify-self: flex-start;
1546
+ }
1547
+ .title-row button {
1548
+ order: 2;
1549
+ }
1550
+ .center {
1551
+ text-align: center;
1552
+ justify-content: center;
1553
+ }
1554
+ .wide {
1555
+ width: 100%;
1556
+ }
1557
+ .pointer {
1558
+ cursor: pointer;
1559
+ }
1560
+ a,
1561
+ a:hover {
1562
+ text-decoration: none;
1563
+ color: #008c79;
1564
+ }