@appscode/design-system 2.0.18 → 2.0.19-alpha.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (160) hide show
  1. package/main.scss +4 -18
  2. package/package.json +1 -1
  3. package/{base → vue-components/styles/base}/utilities/_grid.scss +1 -1
  4. package/vue-components/styles/components/_accordion.scss +117 -0
  5. package/vue-components/styles/components/_add-card.scss +70 -0
  6. package/vue-components/styles/components/_all.scss +38 -0
  7. package/vue-components/styles/components/_breadcrumb.scss +32 -0
  8. package/vue-components/styles/components/_button.scss +110 -0
  9. package/vue-components/styles/components/_card-body-wrapper.scss +54 -0
  10. package/vue-components/styles/components/_direct-deploy.scss +69 -0
  11. package/vue-components/styles/components/_dropdown.scss +32 -0
  12. package/vue-components/styles/components/_modal.scss +216 -0
  13. package/vue-components/styles/components/_options.scss +134 -0
  14. package/vue-components/styles/components/_table.scss +430 -0
  15. package/vue-components/styles/components/_tabs.scss +338 -0
  16. package/vue-components/styles/components/alert/_alert-message.scss +16 -0
  17. package/vue-components/styles/components/alert/_alert.scss +123 -0
  18. package/vue-components/styles/components/alert/_all.scss +3 -0
  19. package/vue-components/styles/components/alert/_toast.scss +50 -0
  20. package/vue-components/styles/components/cards/_all.scss +8 -0
  21. package/vue-components/styles/components/cards/_cluster.scss +97 -0
  22. package/vue-components/styles/components/cards/_features.scss +26 -0
  23. package/vue-components/styles/components/cards/_info.scss +83 -0
  24. package/vue-components/styles/components/cards/_monitoring.scss +24 -0
  25. package/vue-components/styles/components/cards/_org.scss +59 -0
  26. package/vue-components/styles/components/cards/_vendor.scss +58 -0
  27. package/vue-components/styles/components/content/_all.scss +2 -0
  28. package/vue-components/styles/components/content/_content-header.scss +14 -0
  29. package/vue-components/styles/components/content/_content-layout.scss +4 -0
  30. package/vue-components/styles/components/editor/_all.scss +2 -0
  31. package/vue-components/styles/components/editor/_filtered-file-editor.scss +195 -0
  32. package/vue-components/styles/components/footer/_all.scss +3 -0
  33. package/vue-components/styles/components/footer/_footer-area.scss +26 -0
  34. package/vue-components/styles/components/footer/_footer-item.scss +14 -0
  35. package/vue-components/styles/components/footer/_footer-items.scss +5 -0
  36. package/vue-components/styles/components/form-fields/_all.scss +4 -0
  37. package/vue-components/styles/components/form-fields/_file-upload.scss +42 -0
  38. package/vue-components/styles/components/form-fields/_form-footer.scss +9 -0
  39. package/{components → vue-components/styles/components/form-fields}/_input.scss +47 -32
  40. package/vue-components/styles/components/header/_header-item.scss +13 -0
  41. package/vue-components/styles/components/header/_header.scss +7 -0
  42. package/vue-components/styles/components/navbar/_all.scss +2 -0
  43. package/vue-components/styles/components/navbar/_menu-content.scss +527 -0
  44. package/vue-components/styles/components/navbar/_navbar.scss +73 -0
  45. package/vue-components/styles/components/navbar/_notification.scss +103 -0
  46. package/vue-components/styles/components/select-box/_ac-select-box.scss +49 -0
  47. package/vue-components/styles/components/select-box/_all.scss +2 -0
  48. package/vue-components/styles/components/sidebar/_all.scss +1 -0
  49. package/vue-components/styles/components/sidebar/_left-sidebar.scss +222 -0
  50. package/{components → vue-components/styles/components}/ui-builder/_ui-builder.scss +6 -39
  51. package/vue-components/v3/accordion/Accordion.vue +1 -117
  52. package/vue-components/v3/alert/Alert.vue +1 -218
  53. package/vue-components/v3/alert/AlertMessage.vue +46 -0
  54. package/vue-components/v3/alert/Toast.vue +1 -50
  55. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +1 -33
  56. package/vue-components/v3/button/Button.vue +2 -63
  57. package/vue-components/v3/button/Buttons.vue +0 -8
  58. package/vue-components/v3/cards/Cluster.vue +2 -93
  59. package/vue-components/v3/cards/FeatureCard.vue +1 -25
  60. package/vue-components/v3/cards/FeatureCards.vue +5 -1
  61. package/vue-components/v3/cards/InfoCard.vue +1 -80
  62. package/vue-components/v3/cards/Monitoring.vue +1 -24
  63. package/vue-components/v3/cards/OrgCard.vue +1 -59
  64. package/vue-components/v3/cards/Payment.vue +3 -0
  65. package/vue-components/v3/cards/Vendor.vue +2 -58
  66. package/vue-components/v3/content/ContentHeader.vue +1 -14
  67. package/vue-components/v3/content/ContentLayout.vue +1 -7
  68. package/vue-components/v3/dropdown/DropdownAction.vue +1 -32
  69. package/vue-components/v3/editor/FilteredFileEditor.vue +2 -196
  70. package/vue-components/v3/footer/FooterArea.vue +2 -27
  71. package/vue-components/v3/footer/FooterItem.vue +1 -15
  72. package/vue-components/v3/footer/FooterItems.vue +2 -7
  73. package/vue-components/v3/form/FormFooter.vue +1 -9
  74. package/vue-components/v3/form-fields/AcSingleInput.vue +3 -1
  75. package/vue-components/v3/form-fields/FileUpload.vue +1 -42
  76. package/vue-components/v3/header/Header.vue +1 -7
  77. package/vue-components/v3/header/HeaderItem.vue +1 -13
  78. package/vue-components/v3/modal/Modal.vue +1 -216
  79. package/vue-components/v3/navbar/Appdrawer.vue +1 -121
  80. package/vue-components/v3/navbar/Navbar.vue +2 -92
  81. package/vue-components/v3/navbar/NavbarItem.vue +0 -65
  82. package/vue-components/v3/navbar/NavbarItemContent.vue +0 -275
  83. package/vue-components/v3/navbar/Notification.vue +1 -103
  84. package/vue-components/v3/navbar/User.vue +6 -175
  85. package/vue-components/v3/option-dots/Options.vue +1 -144
  86. package/vue-components/v3/sidebar/ClusterSwitcher.vue +3 -1
  87. package/vue-components/v3/sidebar/Sidebar.vue +1 -201
  88. package/vue-components/v3/tab/Tabs.vue +1 -24
  89. package/vue-components/v3/table/Table.vue +1 -453
  90. package/components/_ac-alert-box.scss +0 -205
  91. package/components/_ac-content-layout.scss +0 -165
  92. package/components/_ac-modal.scss +0 -212
  93. package/components/_ac-options.scss +0 -122
  94. package/components/_ac-select-box.scss +0 -49
  95. package/components/_ac-table.scss +0 -503
  96. package/components/_ac-tabs.scss +0 -313
  97. package/components/_accordion.scss +0 -117
  98. package/components/_add-card.scss +0 -70
  99. package/components/_all.scss +0 -35
  100. package/components/_buttons.scss +0 -779
  101. package/components/_card-body-wrapper.scss +0 -54
  102. package/components/_direct-deploy.scss +0 -69
  103. package/components/_left-sidebar-menu.scss +0 -482
  104. package/components/_navbar.scss +0 -786
  105. /package/{base → vue-components/styles/base}/_video-player.scss +0 -0
  106. /package/{base → vue-components/styles/base}/utilities/_all.scss +0 -0
  107. /package/{base → vue-components/styles/base}/utilities/_colors.scss +0 -0
  108. /package/{base → vue-components/styles/base}/utilities/_customize-bulma.scss +0 -0
  109. /package/{base → vue-components/styles/base}/utilities/_extended.scss +0 -0
  110. /package/{base → vue-components/styles/base}/utilities/_global.scss +0 -0
  111. /package/{base → vue-components/styles/base}/utilities/_layouts.scss +0 -0
  112. /package/{base → vue-components/styles/base}/utilities/_mixin.scss +0 -0
  113. /package/{base → vue-components/styles/base}/utilities/_spacing.scss +0 -0
  114. /package/{base → vue-components/styles/base}/utilities/_typography.scss +0 -0
  115. /package/{components → vue-components/styles/components}/_ac-calendar.scss +0 -0
  116. /package/{components → vue-components/styles/components}/_ac-code-highlight.scss +0 -0
  117. /package/{components → vue-components/styles/components}/_ac-drag.scss +0 -0
  118. /package/{components → vue-components/styles/components}/_ac-tags.scss +0 -0
  119. /package/{components → vue-components/styles/components}/_breadcumb.scss +0 -0
  120. /package/{components → vue-components/styles/components}/_dashboard-header.scss +0 -0
  121. /package/{components → vue-components/styles/components}/_getkeeper.scss +0 -0
  122. /package/{components → vue-components/styles/components}/_go-to-top.scss +0 -0
  123. /package/{components → vue-components/styles/components}/_graph.scss +0 -0
  124. /package/{components → vue-components/styles/components}/_nested-list.scss +0 -0
  125. /package/{components → vue-components/styles/components}/_overview-info.scss +0 -0
  126. /package/{components → vue-components/styles/components}/_overview-page.scss +0 -0
  127. /package/{components → vue-components/styles/components}/_pagination.scss +0 -0
  128. /package/{components → vue-components/styles/components}/_preloader.scss +0 -0
  129. /package/{components → vue-components/styles/components}/_preview-modal.scss +0 -0
  130. /package/{components → vue-components/styles/components}/_pricing-table.scss +0 -0
  131. /package/{components → vue-components/styles/components}/_progress-bar.scss +0 -0
  132. /package/{components → vue-components/styles/components}/_report.scss +0 -0
  133. /package/{components → vue-components/styles/components}/_table-of-content.scss +0 -0
  134. /package/{components → vue-components/styles/components}/_terminal.scss +0 -0
  135. /package/{components → vue-components/styles/components}/_tfa.scss +0 -0
  136. /package/{components → vue-components/styles/components}/_transitions.scss +0 -0
  137. /package/{components → vue-components/styles/components}/_widget-menu.scss +0 -0
  138. /package/{components → vue-components/styles/components}/_wizard.scss +0 -0
  139. /package/{components → vue-components/styles/components}/ac-toaster/_ac-toasted.scss +0 -0
  140. /package/{components → vue-components/styles/components}/bbum/_activities-header.scss +0 -0
  141. /package/{components → vue-components/styles/components}/bbum/_all.scss +0 -0
  142. /package/{components → vue-components/styles/components}/bbum/_card-team.scss +0 -0
  143. /package/{components → vue-components/styles/components}/bbum/_information-center.scss +0 -0
  144. /package/{components → vue-components/styles/components}/bbum/_left-sidebar.scss +0 -0
  145. /package/{components → vue-components/styles/components}/bbum/_mobile-desktop.scss +0 -0
  146. /package/{components → vue-components/styles/components}/bbum/_post.scss +0 -0
  147. /package/{components → vue-components/styles/components}/bbum/_sign-up-notification.scss +0 -0
  148. /package/{components → vue-components/styles/components}/bbum/_single-post-preview.scss +0 -0
  149. /package/{components → vue-components/styles/components}/bbum/_user-profile.scss +0 -0
  150. /package/{components → vue-components/styles/components/cards}/_payment-card.scss +0 -0
  151. /package/{components → vue-components/styles/components/cards}/_subscription-card.scss +0 -0
  152. /package/{components → vue-components/styles/components/editor}/_monaco-editor.scss +0 -0
  153. /package/{components → vue-components/styles/components/form-fields}/_image-upload.scss +0 -0
  154. /package/{components → vue-components/styles/components/form-fields}/_input-card.scss +0 -0
  155. /package/{components/_app-drawer.scss → vue-components/styles/components/header/_all.scss} +0 -0
  156. /package/{components → vue-components/styles/components/select-box}/_multi-select.scss +0 -0
  157. /package/{components → vue-components/styles/components}/ui-builder/_vue-open-api.scss +0 -0
  158. /package/{layouts → vue-components/styles/layouts}/_404.scss +0 -0
  159. /package/{layouts → vue-components/styles/layouts}/_all.scss +0 -0
  160. /package/{layouts → vue-components/styles/layouts}/_code-preview.scss +0 -0
@@ -0,0 +1,527 @@
1
+ // menu content
2
+
3
+
4
+
5
+ .ac-menu-item {
6
+ .ac-nav-button {
7
+ width: 32px;
8
+ height: 32px;
9
+ border-radius: 50%;
10
+ padding: 5px;
11
+ transition: all 0.3s ease-in-out;
12
+ position: relative;
13
+ z-index: 99;
14
+ user-select: none;
15
+ border: 1px solid $primary-80;
16
+ cursor: pointer;
17
+
18
+ &:after {
19
+ position: absolute;
20
+ content: "";
21
+ left: 0;
22
+ top: 0;
23
+ opacity: 1;
24
+ z-index: -1;
25
+ width: 100%;
26
+ height: 100%;
27
+ border-radius: 50%;
28
+ transition: 0.3s ease-in-out;
29
+ }
30
+
31
+ &:focus {
32
+ box-shadow: none;
33
+ }
34
+
35
+ &:hover {
36
+ &:after {
37
+ background-color: $primary-90;
38
+ }
39
+ }
40
+ }
41
+ &.ac-profile-button {
42
+ margin-right: 15px;
43
+ button.button.ac-nav-button {
44
+ width: 100%;
45
+ background-color: transparent;
46
+ border-radius: 0;
47
+ font-weight: 500;
48
+ border: none;
49
+
50
+ &::after {
51
+ border-radius: 0;
52
+ border: none;
53
+ background-color: transparent;
54
+ }
55
+ .ac-user-profile {
56
+ width: 32px;
57
+ height: 32px;
58
+ border-radius: 50%;
59
+ overflow: hidden;
60
+ border: 2px solid $primary-90;
61
+
62
+
63
+ }
64
+ i.fa {
65
+ padding-left: 8px;
66
+ }
67
+ }
68
+ }
69
+ .ac-menu-content {
70
+ position: absolute;
71
+ right: 0;
72
+ top: 80px;
73
+ min-width: 180px;
74
+ opacity: 0;
75
+ visibility: hidden;
76
+ transition: 0.3s ease-in;
77
+ width: 260px;
78
+ box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1),
79
+ 0 0px 0 1px rgba(10, 10, 10, 0.02);
80
+
81
+ &.quick-access {
82
+ background-color: $white-100;
83
+ padding: 20px;
84
+ min-width: 260px !important;
85
+ max-height: 250px;
86
+ overflow-y: auto;
87
+ border-radius: 4px;
88
+
89
+ .header {
90
+ display: flex;
91
+ justify-content: space-between;
92
+ align-items: center;
93
+ border-bottom: 1px solid $primary-90;
94
+ padding-bottom: 20px;
95
+
96
+ p {
97
+ font-size: 13px;
98
+ color: $primary-10;
99
+ }
100
+
101
+ button {
102
+ background-color: transparent;
103
+ border: none;
104
+ cursor: pointer;
105
+ color: $primary-20;
106
+ }
107
+ }
108
+
109
+ .body-content {
110
+ margin-top: 20px;
111
+
112
+ p {
113
+ font-size: 13px;
114
+ color: $primary-10;
115
+ }
116
+
117
+ .organizations {
118
+ .organization {
119
+ display: flex;
120
+ align-items: center;
121
+ justify-content: space-between;
122
+ padding: 5px 0;
123
+
124
+ .org-info {
125
+ display: flex;
126
+ align-items: center;
127
+
128
+ img {
129
+ max-width: 30px;
130
+ margin-right: 10px;
131
+ object-fit: cover;
132
+ }
133
+ }
134
+
135
+ .remove {
136
+ border: none;
137
+ padding: 0;
138
+ font-size: 11px;
139
+ color: $danger;
140
+ background-color: transparent;
141
+ }
142
+ }
143
+ }
144
+ }
145
+ }
146
+
147
+ &.is-notification {
148
+ right: 0;
149
+ background-color: $white-100;
150
+ box-shadow: 0px 4px 8px rgba(84, 101, 126, 0.2);
151
+ border-radius: 4px;
152
+ min-width: 330px;
153
+ max-height: 400px;
154
+ overflow-y: auto;
155
+
156
+ .notification-header {
157
+ padding: 20px 20px 6px 20px;
158
+ display: flex;
159
+ justify-content: space-between;
160
+ align-items: baseline;
161
+
162
+ .left-content {
163
+ p {
164
+ font-weight: 500;
165
+ font-size: 13px;
166
+ line-height: 19px;
167
+ margin-bottom: 15px;
168
+
169
+ span {
170
+ font-weight: normal;
171
+ }
172
+
173
+ &.date {
174
+ font-size: 11px;
175
+ line-height: 14px;
176
+ font-weight: normal;
177
+ margin-bottom: 0;
178
+ }
179
+ }
180
+ }
181
+
182
+ .right-content {
183
+ .button {
184
+ border: none;
185
+ margin: 0;
186
+ padding: 10px;
187
+ font-size: 13px;
188
+
189
+ &.is-active {
190
+ background-color: $primary;
191
+ color: $white-100;
192
+
193
+ img {
194
+ filter: brightness(100);
195
+ }
196
+ }
197
+
198
+ &:hover {
199
+ background-color: $primary;
200
+ color: $white-100;
201
+
202
+ img {
203
+ filter: brightness(100);
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
+
210
+ .notification-body {
211
+ .single-notification-item {
212
+ display: block;
213
+ border-top: 1px solid $primary-90;
214
+ padding: 15px 20px;
215
+ font-weight: 500;
216
+
217
+ &.is-complete {
218
+ font-weight: 400;
219
+ }
220
+
221
+ &:hover {
222
+ background-color: #d1e3f2;
223
+ }
224
+
225
+ p {
226
+ color: $primary-10;
227
+ font-size: 11px;
228
+ }
229
+
230
+ .notification-status {
231
+ margin-top: 10px;
232
+ display: flex;
233
+ align-items: center;
234
+ justify-content: space-between;
235
+
236
+ p {
237
+ font-size: 11px;
238
+ color: $primary-20;
239
+
240
+ &.is-success {
241
+ color: $success;
242
+ }
243
+
244
+ &.is-danger {
245
+ color: $danger;
246
+ }
247
+
248
+ &.is-warning {
249
+ color: $warning;
250
+ }
251
+ }
252
+ }
253
+ }
254
+ }
255
+
256
+ .see-all-message {
257
+ border-top: 1px solid $primary-90;
258
+ text-align: center;
259
+ font-weight: 500;
260
+ font-size: 13px;
261
+ color: $primary-10;
262
+ display: block;
263
+ padding: 10px 20px;
264
+ }
265
+ }
266
+
267
+ ul {
268
+ background-color: $white-100;
269
+ padding: 0;
270
+ // border-radius: 4px;
271
+ overflow: hidden;
272
+
273
+ li {
274
+ a {
275
+ display: block;
276
+ padding: 8px 15px;
277
+ color: $primary-10;
278
+ transition: 0.3s ease-in-out;
279
+ font-size: 13px;
280
+
281
+ &:hover {
282
+ background-color: $primary-95;
283
+
284
+ p {
285
+ color: $primary !important;
286
+ }
287
+ }
288
+ }
289
+ }
290
+ }
291
+
292
+ .user-profile-wrapper {
293
+ background-color: $white-100;
294
+ border-radius: 4px;
295
+ border: 1px solid $primary-90;
296
+
297
+ .profile-area {
298
+ display: flex;
299
+ align-items: center;
300
+ border-bottom: 1px solid $primary-90;
301
+ padding: 16px 16px;
302
+
303
+ .profile-photo {
304
+ // width: 50px;
305
+ // height: 50px;
306
+ border-radius: 50%;
307
+ position: relative;
308
+ z-index: 1;
309
+ margin-right: 10px;
310
+
311
+ img {
312
+ border-radius: 50%;
313
+ width: 100%;
314
+ border: 2px solid #d2e7f9;
315
+ }
316
+
317
+ .camera-icon {
318
+ position: absolute;
319
+ right: -10px;
320
+ top: 0;
321
+ background-color: transparent;
322
+ border: none;
323
+ cursor: pointer;
324
+ }
325
+ }
326
+
327
+ .profile-info {
328
+ p {
329
+ color: $primary-10;
330
+ font-size: 13px;
331
+ font-weight: 500;
332
+ line-height: 1.3;
333
+ }
334
+
335
+ a {
336
+ font-size: 1rem;
337
+ color: $primary-20;
338
+ line-height: 1.3;
339
+ }
340
+ }
341
+ }
342
+
343
+ .list-items {
344
+ max-height: calc(100vh - 100px);
345
+ overflow-y: auto;
346
+ li {
347
+ &.is-close {
348
+ ul {
349
+ max-height: 0;
350
+ visibility: hidden;
351
+ transition: max-height 0.25s ease-out;
352
+ &.ac-vscrollbar {
353
+ padding: 0;
354
+ }
355
+ }
356
+ }
357
+
358
+ &.is-open {
359
+ ul {
360
+ padding: 8px;
361
+ max-height: 200px;
362
+ visibility: visible;
363
+ transition: max-height 0.25s ease-out;
364
+ li {
365
+ padding: 0;
366
+ border: 1px solid $primary-95;
367
+ }
368
+ }
369
+ }
370
+ a {
371
+ padding: 8px 16px;
372
+ font-weight: 500;
373
+ display: block;
374
+ color: $primary-10;
375
+ transition: 0.3s;
376
+ display: flex;
377
+ align-items: center;
378
+ gap: 8px;
379
+
380
+ &:hover {
381
+ background-color: $primary-97;
382
+ color: $primary;
383
+ }
384
+ }
385
+ }
386
+ }
387
+ }
388
+ }
389
+
390
+ &.is-active {
391
+ .ac-nav-button {
392
+ &::after {
393
+ background-color: $primary-90;
394
+ }
395
+ }
396
+ .ac-menu-content {
397
+ opacity: 1;
398
+ visibility: visible;
399
+ top: 35px;
400
+ z-index: 99;
401
+
402
+ &::after {
403
+ position: absolute;
404
+ content: "";
405
+ right: 38px;
406
+ top: -6px;
407
+ background-color: $white-100;
408
+ width: 15px;
409
+ height: 15px;
410
+ transform: rotate(45deg);
411
+ box-shadow: 0px -1px 4px rgba(0, 0, 0, 0.16);
412
+ z-index: -1;
413
+
414
+ }
415
+ }
416
+ }
417
+
418
+ .ac-menu-content {
419
+ &.navbar-dropdown-wrapper {
420
+ position: absolute;
421
+ border-radius: 4px;
422
+ z-index: 99;
423
+ right: 0px;
424
+ top: 40px;
425
+ display: block;
426
+ transition: all 0.3s ease-in-out;
427
+ ul.app-drawer {
428
+ border-radius: 4px;
429
+ overflow: hidden;
430
+ background-color: $white-100;
431
+ border: 1px solid $primary-90;
432
+ // box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.16);
433
+ max-height: calc(100vh - 100px);
434
+ overflow-y: auto;
435
+
436
+ li {
437
+ display: block;
438
+ font-size: 13px;
439
+ a {
440
+ display: block;
441
+ color: $primary-10 !important;
442
+ padding: 10px 20px !important;
443
+ font-size: 13px !important;
444
+ transition: 0.2s;
445
+ border-bottom: 1px solid $primary-90;
446
+
447
+ &:hover {
448
+ background-color: $primary-97 !important;
449
+ }
450
+
451
+ span {
452
+ margin-top: -3px;
453
+ }
454
+
455
+ &:hover {
456
+ .media-content {
457
+ .content {
458
+ p {
459
+ color: $primary-20;
460
+ }
461
+ }
462
+ }
463
+ }
464
+
465
+ .media {
466
+ .media-left {
467
+ .image {
468
+ img {
469
+ height: 24px;
470
+ width: auto;
471
+ }
472
+ }
473
+ }
474
+
475
+ .media-content {
476
+ overflow: hidden;
477
+
478
+ .content {
479
+ p {
480
+ vertical-align: middle;
481
+ line-height: 1;
482
+ transition: 0.3s;
483
+
484
+ strong {
485
+ font-weight: 600;
486
+ font-size: 14px;
487
+ // font-family: $font-heading;
488
+ }
489
+
490
+ span {
491
+ display: block;
492
+ font-size: 13px;
493
+ margin-top: 4px;
494
+ line-height: 150%;
495
+ }
496
+ }
497
+ }
498
+ }
499
+ }
500
+ }
501
+
502
+ &:hover {
503
+ > a {
504
+ background-color: $white-100;
505
+ }
506
+ }
507
+
508
+ &:first-child {
509
+ &:hover {
510
+ > a {
511
+ border-radius: 4px 4px 0 0;
512
+ }
513
+ }
514
+ }
515
+
516
+ &:last-child {
517
+ &:hover {
518
+ > a {
519
+ border-radius: 0 0 4px 4px;
520
+ }
521
+ }
522
+ }
523
+ }
524
+ }
525
+ }
526
+ }
527
+ }
@@ -0,0 +1,73 @@
1
+ @import "./menu-content";
2
+ .ac-navbar-area {
3
+ position: fixed;
4
+ margin-left: 250px;
5
+ width: 100%;
6
+ top: 0;
7
+ z-index: 999;
8
+ background-color: $primary-97;
9
+ border-bottom: 1px solid $primary-90;
10
+
11
+ &.is-full {
12
+ margin-left: 0;
13
+
14
+ .ac-navbar {
15
+ grid-template-columns: 250px auto auto;
16
+ width: 100%;
17
+ gap: 20px;
18
+ .ac-navbar-brand {
19
+ padding-left: 15px;
20
+ }
21
+ }
22
+ }
23
+
24
+ .ac-navbar {
25
+ display: inline-grid;
26
+ grid-template-columns: auto auto;
27
+ // margin-left: 255px;
28
+ grid-gap: 0px;
29
+ align-items: center;
30
+ width: calc(100% - 255px);
31
+ height: 50px;
32
+ // padding: 0 15px;
33
+
34
+ .ac-navbar-brand {
35
+ display: flex;
36
+ align-items: center;
37
+ .logo {
38
+ font-size: 20px;
39
+ font-weight: 600;
40
+ color: $white-100;
41
+ }
42
+
43
+ img {
44
+ height: 30px;
45
+ }
46
+ }
47
+ .ac-navbar-cluster-switcher {
48
+ max-width: 350px;
49
+ }
50
+ .ac-navbar-menu {
51
+ display: flex;
52
+ align-items: center;
53
+ justify-content: flex-end;
54
+
55
+ .ac-menu-item {
56
+ position: relative;
57
+ z-index: 1;
58
+ margin-left: 8px;
59
+ &:first-child {
60
+ margin-left: 0;
61
+ }
62
+ }
63
+ }
64
+ }
65
+ }
66
+ // for sidebar-collapsed
67
+ .sidebar-collapsed {
68
+ .ac-navbar {
69
+ .ac-navbar-brand {
70
+ padding-left: 70px !important;
71
+ }
72
+ }
73
+ }
@@ -0,0 +1,103 @@
1
+ .notification-count {
2
+ position: absolute;
3
+ background-color: $primary;
4
+ color: $white-100;
5
+ padding: 4px;
6
+ font-size: 11px;
7
+ line-height: 1;
8
+ border-radius: 50px;
9
+ min-width: 20px;
10
+ height: 20px;
11
+ right: -10px;
12
+ top: -8px;
13
+ border: 1px solid $primary-97;
14
+ opacity: 1;
15
+ z-index: 9;
16
+ }
17
+ .dropdown-inner {
18
+ border-radius: 4px;
19
+ overflow: hidden;
20
+ background-color: $white-100;
21
+ border: 1px solid $primary-90;
22
+ }
23
+ .notification-header {
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: space-between;
27
+ border-bottom: 1px solid $primary-90;
28
+ padding: 8px 16px;
29
+ h5 {
30
+ color: $primary-5;
31
+ }
32
+ span {
33
+ display: flex;
34
+ color: $primary-30;
35
+ padding: 2px 8px;
36
+ border-radius: 4px;
37
+ background-color: $primary-95;
38
+ }
39
+ }
40
+ .notification-body {
41
+ max-height: calc(100vh - 100px);
42
+ overflow-y: auto;
43
+ a {
44
+ display: flex;
45
+ color: $primary-20;
46
+ padding: 16px;
47
+ border-bottom: 1px solid $primary-95;
48
+ transition: 0.3s ease-in-out;
49
+ justify-content: space-between;
50
+
51
+ &:hover {
52
+ background-color: $primary-97;
53
+ }
54
+ .round-icon {
55
+ width: 36px;
56
+ height: 36px;
57
+ background-color: $primary-95;
58
+ color: $primary;
59
+ font-size: 14px;
60
+ display: flex;
61
+ align-items: center;
62
+ justify-content: center;
63
+ border-radius: 50%;
64
+ margin-right: 8px;
65
+ line-height: 1;
66
+ font-weight: 500;
67
+ }
68
+
69
+ .notification-content {
70
+ width: calc(100% - 60px);
71
+ h6 {
72
+ font-size: 14px;
73
+ font-weight: 500;
74
+ }
75
+
76
+ p {
77
+ font-size: 12px;
78
+ }
79
+ }
80
+
81
+ span {
82
+ font-size: 11px;
83
+ color: $primary-30;
84
+ }
85
+ }
86
+ }
87
+ .notification-footer {
88
+ button {
89
+ background-color: transparent;
90
+ border: none;
91
+ display: flex;
92
+ align-items: center;
93
+ justify-content: center;
94
+ width: 100%;
95
+ padding: 8px;
96
+ color: $primary;
97
+ cursor: pointer;
98
+ transition: 0.3s ease-in-out;
99
+ &:hover {
100
+ text-decoration: underline;
101
+ }
102
+ }
103
+ }