@appscode/design-system 0.0.21-alpha.2 → 0.4.27

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 (165) hide show
  1. package/base/utilities/_all.scss +7 -0
  2. package/base/utilities/_customize-bulma.scss +191 -0
  3. package/base/utilities/_default.scss +319 -110
  4. package/base/utilities/_derived-variables.scss +8 -15
  5. package/base/utilities/_grid.scss +29 -0
  6. package/base/utilities/_initial-variables.scss +111 -72
  7. package/base/utilities/_mixin.scss +90 -10
  8. package/base/utilities/_typography.scss +29 -19
  9. package/base/utilities/dark-theme.scss +26 -0
  10. package/components/_ac-accordion.scss +15 -5
  11. package/components/_ac-alert-box.scss +109 -26
  12. package/components/_ac-card.scss +71 -24
  13. package/components/_ac-code-highlight.scss +7 -1
  14. package/components/_ac-content-layout.scss +5 -5
  15. package/components/_ac-drag.scss +8 -6
  16. package/components/_ac-input.scss +196 -38
  17. package/components/_ac-modal.scss +6 -5
  18. package/components/_ac-multi-select.scss +281 -23
  19. package/components/_ac-options.scss +31 -16
  20. package/components/_ac-report.scss +53 -0
  21. package/components/_ac-select-box.scss +15 -5
  22. package/components/_ac-table.scss +160 -39
  23. package/components/_ac-tabs.scss +86 -23
  24. package/components/_ac-tags.scss +87 -2
  25. package/components/_ac-terminal.scss +270 -0
  26. package/components/_all.scss +28 -0
  27. package/components/_app-drawer.scss +134 -0
  28. package/components/_breadcumb.scss +8 -3
  29. package/components/_buttons.scss +96 -62
  30. package/components/_card-body-wrapper.scss +3 -3
  31. package/components/_dashboard-header.scss +33 -1
  32. package/components/_direct-deploy.scss +69 -0
  33. package/components/_go-to-top.scss +1 -1
  34. package/components/_graph.scss +45 -0
  35. package/components/_image-upload.scss +6 -4
  36. package/components/_left-sidebar-menu.scss +212 -52
  37. package/components/_monaco-editor.scss +1 -1
  38. package/components/_navbar.scss +193 -31
  39. package/components/_overview-info.scss +4 -4
  40. package/components/_overview-page.scss +1 -2
  41. package/components/_pagination.scss +45 -7
  42. package/components/_payment-card.scss +28 -12
  43. package/components/_preloader.scss +1 -1
  44. package/components/_preview-modal.scss +22 -9
  45. package/components/_pricing-table.scss +1 -1
  46. package/components/_progress-bar.scss +5 -5
  47. package/components/_subscription-card.scss +15 -8
  48. package/components/_table-of-content.scss +1 -1
  49. package/components/_tfa.scss +69 -0
  50. package/components/_transitions.scss +261 -0
  51. package/components/_widget-menu.scss +9 -9
  52. package/components/_wizard.scss +33 -20
  53. package/components/ac-toaster/_ac-toasted.scss +40 -8
  54. package/components/bbum/_all.scss +9 -0
  55. package/components/bbum/_card-team.scss +18 -10
  56. package/components/bbum/_information-center.scss +19 -5
  57. package/components/bbum/_mobile-desktop.scss +6 -6
  58. package/components/bbum/_post.scss +5 -4
  59. package/components/bbum/_sign-up-notification.scss +6 -6
  60. package/components/bbum/_single-post-preview.scss +10 -10
  61. package/components/bbum/_user-profile.scss +97 -90
  62. package/components/ui-builder/_ui-builder.scss +98 -21
  63. package/components/ui-builder/_vue-open-api.scss +104 -0
  64. package/layouts/_404.scss +159 -0
  65. package/layouts/_all.scss +2 -0
  66. package/layouts/_code-preview.scss +19 -8
  67. package/main.scss +6 -53
  68. package/package.json +4 -7
  69. package/plugins/caching.ts +243 -0
  70. package/plugins/theme.js +142 -0
  71. package/plugins/time-convert.js +49 -0
  72. package/plugins/vue-toaster.js +10 -6
  73. package/vue-components/v2/banner/Banner.vue +2 -2
  74. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  75. package/vue-components/v2/button/Button.vue +10 -1
  76. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  77. package/vue-components/v2/card/Card.vue +1 -0
  78. package/vue-components/v2/card/CardContent.vue +5 -0
  79. package/vue-components/v2/card/CardHeader.vue +12 -0
  80. package/vue-components/v2/card/OverviewCard.vue +10 -0
  81. package/vue-components/v2/card/OverviewCards.vue +5 -0
  82. package/vue-components/v2/card/PaymentCard.vue +69 -0
  83. package/vue-components/v2/card/PaymentCardOptionButtons.vue +35 -0
  84. package/vue-components/v2/card/PaymentCards.vue +44 -0
  85. package/vue-components/v2/content/ContentHeader.vue +9 -5
  86. package/vue-components/v2/content/ContentTable.vue +12 -7
  87. package/vue-components/v2/editor/Editor.vue +38 -5
  88. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  89. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  90. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  91. package/vue-components/v2/form/Form.vue +12 -7
  92. package/vue-components/v2/form-fields/Input.vue +1 -1
  93. package/vue-components/v2/header/Header.vue +0 -1
  94. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  95. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  96. package/vue-components/v2/modal/Modal.vue +40 -7
  97. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  98. package/vue-components/v2/modals/JsonShowModal.vue +12 -3
  99. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  100. package/vue-components/v2/navbar/ThemeMode.vue +120 -0
  101. package/vue-components/v2/navbar/User.vue +229 -17
  102. package/vue-components/v2/notification/Notification.vue +101 -0
  103. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  104. package/vue-components/v2/pagination/Pagination.vue +24 -4
  105. package/vue-components/v2/preloader/Preloader.vue +5 -5
  106. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  107. package/vue-components/v2/sidebar/SidebarItem.vue +24 -2
  108. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  109. package/vue-components/v2/tab/TabItem.vue +1 -1
  110. package/vue-components/v2/table/FakeTableCell.vue +36 -0
  111. package/vue-components/v2/table/InfoTable.vue +13 -3
  112. package/vue-components/v2/table/NarrowTable.vue +0 -2
  113. package/vue-components/v2/table/Table.vue +170 -10
  114. package/vue-components/v2/table/TableRow.vue +29 -2
  115. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  116. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  117. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  118. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  119. package/vue-components/v3/button/Button.vue +78 -0
  120. package/vue-components/v3/content/ContentHeader.vue +55 -0
  121. package/vue-components/v3/content/ContentTable.vue +83 -0
  122. package/vue-components/v3/dropdown/DropdownDivider.vue +3 -0
  123. package/vue-components/v3/dropdown/DropdownItem.vue +5 -0
  124. package/vue-components/v3/dropdown/DropdownMenu.vue +111 -0
  125. package/vue-components/v3/editor/Editor.vue +160 -0
  126. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  127. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  128. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  129. package/vue-components/v3/form/Form.vue +63 -0
  130. package/vue-components/v3/form-fields/Input.vue +22 -0
  131. package/vue-components/v3/header/Header.vue +45 -0
  132. package/vue-components/v3/header/HeaderItem.vue +5 -0
  133. package/vue-components/v3/header/HeaderItems.vue +5 -0
  134. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  135. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  136. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  137. package/vue-components/v3/modal/Modal.vue +158 -0
  138. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  139. package/vue-components/v3/modals/JsonShowModal.vue +96 -0
  140. package/vue-components/v3/modals/LongRunningTasksModal.vue +373 -0
  141. package/vue-components/v3/navbar/Appdrawer.vue +63 -0
  142. package/vue-components/v3/navbar/ThemeMode.vue +120 -0
  143. package/vue-components/v3/navbar/User.vue +288 -0
  144. package/vue-components/v3/notification/Notification.vue +98 -0
  145. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  146. package/vue-components/v3/pagination/Pagination.vue +172 -0
  147. package/vue-components/v3/searchbars/SearchBar.vue +47 -0
  148. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  149. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  150. package/vue-components/v3/tab/TabItem.vue +17 -0
  151. package/vue-components/v3/table/FakeTableCell.vue +39 -0
  152. package/vue-components/v3/table/InfoTable.vue +105 -0
  153. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  154. package/vue-components/v3/table/Table.vue +272 -0
  155. package/vue-components/v3/table/TableCell.vue +28 -0
  156. package/vue-components/v3/table/TableContainer.vue +34 -0
  157. package/vue-components/v3/table/TableRow.vue +147 -0
  158. package/vue-components/v3/table/table-cell/ArrayCell.vue +111 -0
  159. package/vue-components/v3/table/table-cell/CellValue.vue +133 -0
  160. package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
  161. package/vue-components/v3/table/table-cell/ObjectCell.vue +110 -0
  162. package/vue-components/v3/table/table-cell/ValueWithModal.vue +43 -0
  163. package/vue-components/v3/tabs/EditorTabs.vue +36 -0
  164. package/vue-components/v3/tag/Tag.vue +17 -0
  165. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -12,20 +12,21 @@
12
12
 
13
13
  /* Handle */
14
14
  &::-webkit-scrollbar-thumb {
15
- background: #8392a5;
15
+ background-color: $ac-white-light;
16
16
  border-radius: 10px;
17
17
  }
18
18
 
19
19
  /* Handle on hover */
20
20
  &::-webkit-scrollbar-thumb:hover {
21
- background: #8392a5;
21
+ background-color: $ac-white-light;
22
22
  }
23
23
  }
24
24
  }
25
25
 
26
26
  // INFO TABLE START
27
27
  .table.ac-info-table {
28
- // background: $ac-bg-light-gray;
28
+ background-color: transparent;
29
+
29
30
  &.is-fullwidth {
30
31
  tbody {
31
32
  tr {
@@ -49,13 +50,12 @@
49
50
  td {
50
51
  border: none;
51
52
  font-size: $font-size-small;
52
- color: $ac-gray-dark;
53
+ color: $ac-color-value;
53
54
  font-weight: 400;
54
55
  padding: 3px 0px;
55
56
  min-width: 230px;
56
57
 
57
58
  &:first-child {
58
- color: $ac-black;
59
59
  font-weight: 400;
60
60
  padding-right: 10px;
61
61
  color: $ac-color-heading;
@@ -86,6 +86,43 @@
86
86
  color: $ac-color-heading;
87
87
  border: none;
88
88
  font-weight: 500;
89
+
90
+ &.sorting {
91
+ cursor: pointer;
92
+ position: relative;
93
+
94
+ &.sorting-asc {
95
+ &::before {
96
+ color: $ac-color-heading;
97
+ }
98
+ }
99
+
100
+ &.sorting-desc {
101
+ &::after {
102
+ color: $ac-color-heading;
103
+ }
104
+ }
105
+
106
+ &:after,
107
+ &::before {
108
+ position: absolute;
109
+ color: #808998;
110
+ top: 0.4em;
111
+ font-size: 13px;
112
+ font-weight: 1000;
113
+ display: block;
114
+ }
115
+
116
+ &:before {
117
+ right: 1em;
118
+ content: "\2191";
119
+ }
120
+
121
+ &:after {
122
+ right: 0.5em;
123
+ content: "\2193";
124
+ }
125
+ }
89
126
  }
90
127
  }
91
128
  }
@@ -96,12 +133,15 @@
96
133
  box-shadow: inset 0 0 0 1px $ac-primary;
97
134
  border-radius: 4px;
98
135
  border-bottom: none;
99
- color: #000;
136
+ color: $ac-black;
100
137
  }
101
138
 
102
139
  tr {
103
- cursor: pointer;
104
- border-bottom: 1px solid #e7e7e7;
140
+ &.is-link {
141
+ cursor: pointer;
142
+ }
143
+ border-bottom: 1px solid var(--ac-white-light);
144
+
105
145
  td {
106
146
  font-size: $font-size-small;
107
147
  padding: 5px 20px;
@@ -120,12 +160,14 @@
120
160
  color: $ac-primary;
121
161
  font-weight: 500;
122
162
  transition: 0.3s ease-in-out;
163
+
123
164
  &:hover {
124
165
  color: $ac-color-heading;
125
166
  }
126
167
  }
127
168
  }
128
169
  }
170
+
129
171
  &.is-error {
130
172
  color: $ac-danger;
131
173
  }
@@ -137,12 +179,12 @@
137
179
  display: inline-flex;
138
180
 
139
181
  &.is-danger {
140
- background: $ac-danger;
182
+ background-color: $ac-danger;
141
183
  }
142
184
 
143
185
  i.fa {
144
186
  position: absolute;
145
- background: $ac-primary;
187
+ background-color: $ac-primary;
146
188
  color: $ac-white;
147
189
  font-size: $font-size-tiny;
148
190
  width: 15px;
@@ -166,14 +208,24 @@
166
208
  }
167
209
  }
168
210
 
169
- // &:first-child {
170
- // border-radius: 4px 0 0 4px;
171
- // }
211
+ .collapsible-row {
212
+ max-height: 0;
213
+ overflow-y: hidden;
214
+
215
+ &.is-active {
216
+ max-height: 60vh;
217
+ overflow-y: overlay;
218
+ animation: expand 0.5s ease-in-out;
219
+ }
172
220
 
173
- // &:last-child {
174
- // border-radius: 0 4px 4px 0;
175
- // }
221
+ &.is-closed {
222
+ max-height: 0;
223
+ overflow-y: hidden;
224
+ animation: collapse 0.5s ease-in-out;
225
+ }
226
+ }
176
227
  }
228
+
177
229
  .options-items {
178
230
  a:hover {
179
231
  color: $ac-white;
@@ -187,7 +239,7 @@
187
239
  box-shadow: inset 0 0 0 1px $ac-primary;
188
240
  border-radius: 4px;
189
241
  border-bottom: none;
190
- color: #000;
242
+ color: $ac-black;
191
243
  }
192
244
 
193
245
  &.is-hoverless {
@@ -200,36 +252,63 @@
200
252
  }
201
253
  }
202
254
 
203
- &.ac-bordered {
204
- thead {
205
- td {
206
- border-top: 1px solid $ac-white-light;
207
- border-bottom: 1px solid $ac-white-light;
255
+ .increase-width {
256
+ position: relative;
257
+ visibility: hidden;
258
+ width: 36px;
259
+
260
+ .increase-innner {
261
+ border-bottom: 1px solid var(--ac-white-light);
262
+ border-top: 1px solid var(--ac-white-light);
263
+ bottom: -1px;
264
+ left: 0;
265
+ position: absolute;
266
+ right: -451px;
267
+ top: -1px;
268
+ visibility: visible;
269
+ background-color: $ac-white-lighter;
270
+ }
271
+ }
272
+
273
+ td {
274
+ &.increase-width {
275
+ .increase-innner {
276
+ background-color: transparent;
208
277
  }
209
278
  }
279
+ }
210
280
 
211
- tbody {
281
+ &.ac-label-texted {
282
+ thead {
212
283
  tr {
213
- border-bottom: 1px solid $ac-white-light;
214
-
215
284
  th {
216
- &:first-child {
217
- border-radius: 0;
218
- }
285
+ border-top: 1px solid $ac-white-light;
286
+ border-bottom: 1px solid $ac-white-light;
287
+ border-right: 1px solid $ac-white-light;
219
288
 
220
- &:last-child {
221
- border-radius: 0;
289
+ &:first-child {
290
+ border-left: 1px solid $ac-white-light;
222
291
  }
223
292
  }
293
+ }
294
+ }
224
295
 
296
+ tbody {
297
+ tr {
225
298
  &:hover {
226
299
  box-shadow: none;
227
300
  }
228
301
 
229
302
  td {
230
303
  font-size: $font-size-small;
231
- color: $ac-gray-dark;
232
- background-color: $ac-white;
304
+ color: $ac-color-value;
305
+ background-color: transparent;
306
+ border-bottom: 1px solid $ac-white-light;
307
+ border-right: 1px solid $ac-white-light;
308
+
309
+ &:first-child {
310
+ border-left: 1px solid $ac-white-light;
311
+ }
233
312
 
234
313
  &:first-child {
235
314
  color: $ac-color-heading;
@@ -254,7 +333,7 @@
254
333
  &::after {
255
334
  top: 6px;
256
335
  left: 6px;
257
- border-color: #54657e;
336
+ border-color: $ac-gray-lightest;
258
337
  width: 0.3rem;
259
338
  height: 0.5rem;
260
339
  }
@@ -266,7 +345,7 @@
266
345
  }
267
346
 
268
347
  &:checked + label::after {
269
- border-color: #fafafa;
348
+ border-color: $ac-white-lighter;
270
349
  }
271
350
  }
272
351
  }
@@ -291,8 +370,7 @@
291
370
 
292
371
  tbody {
293
372
  tr {
294
- background-color: $ac-white;
295
- transition: 0.3s ease-in-out;
373
+ background-color: transparent;
296
374
  }
297
375
  }
298
376
  }
@@ -317,7 +395,7 @@
317
395
 
318
396
  &.is-dark {
319
397
  thead {
320
- background-color: $ac-bg-dark;
398
+ background-color: $ac-color-heading;
321
399
 
322
400
  tr {
323
401
  th {
@@ -333,11 +411,11 @@
333
411
  }
334
412
 
335
413
  &:nth-child(odd) {
336
- background-color: #303246;
414
+ background-color: $ac-color-value;
337
415
  }
338
416
 
339
417
  &:nth-child(even) {
340
- background-color: $ac-bg-dark;
418
+ background-color: $ac-color-heading;
341
419
  }
342
420
 
343
421
  &:hover {
@@ -351,10 +429,53 @@
351
429
  }
352
430
  }
353
431
  }
432
+
354
433
  .table.ac-table tbody tr:hover td a:not(.tag a) {
355
434
  text-decoration: underline;
356
435
  color: $ac-primary;
357
436
  }
437
+
438
+ // table inner shadow
439
+ .table-inner-shadow {
440
+ border-radius: 0px;
441
+ background: $ac-white-lighter;
442
+ box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px #ffffff;
443
+ }
444
+
445
+ @keyframes expand {
446
+ from {
447
+ max-height: 0;
448
+ overflow-y: hidden;
449
+ }
450
+ 1% {
451
+ overflow-y: hidden;
452
+ }
453
+ 99% {
454
+ overflow-y: hidden;
455
+ }
456
+ to {
457
+ max-height: 60vh;
458
+ overflow-y: overlay;
459
+ }
460
+ }
461
+
462
+ @keyframes collapse {
463
+ from {
464
+ max-height: 60vh;
465
+ overflow-y: overlay;
466
+ }
467
+ 1% {
468
+ overflow-y: hidden;
469
+ }
470
+ 99% {
471
+ overflow-y: hidden;
472
+ }
473
+ to {
474
+ max-height: 0;
475
+ overflow-y: hidden;
476
+ }
477
+ }
478
+
358
479
  // GENERAL TABLE END
359
480
 
360
481
  /****************************************
@@ -1,35 +1,45 @@
1
1
  .tabs {
2
2
  &.ac-tabs {
3
- &.is-line{
4
- ul {
3
+ ul {
5
4
  border-bottom-color: $ac-white-light;
6
- li {
7
- &.is-active {
8
- a {
9
- font-weight: 500;
10
- border-bottom-color: $ac-primary;
11
- border-color: $ac-primary !important;
12
- border-width: 2px;
5
+ }
6
+
7
+ &.is-line {
8
+ ul {
9
+ // border-bottom-color: $ac-white-light;
10
+
11
+ li {
12
+ &.is-active {
13
+ a {
14
+ font-weight: 500;
15
+ border-bottom-color: $ac-primary;
16
+ border-bottom: 2px solid $ac-primary !important;
17
+ border-width: 2px;
18
+ }
13
19
  }
14
- }
15
- a {
16
- text-transform: uppercase;
17
- font-weight: 400;
18
- color: $ac-color-heading;
19
- font-size: $font-size-small;
20
- padding: 6px 20px;
21
- &:hover {
22
- border-bottom-color: $ac-primary;
20
+
21
+ a {
22
+ text-transform: uppercase;
23
+ font-weight: 400;
24
+ color: $ac-color-heading;
25
+ font-size: $font-size-small;
26
+ border-bottom: none;
27
+ padding: 6px 20px;
28
+
29
+ &:hover {
30
+ border-bottom-color: $ac-primary;
31
+ }
23
32
  }
24
33
  }
25
34
  }
26
35
  }
27
- }
36
+
28
37
  &.is-boxed {
29
38
  font-size: 14px;
30
39
 
31
40
  a {
32
41
  padding: 8px 20px;
42
+ color: $ac-color-value;
33
43
 
34
44
  &:hover {
35
45
  border-bottom-color: transparent;
@@ -84,6 +94,7 @@
84
94
  border-bottom: none;
85
95
  margin-bottom: -2px;
86
96
  font-size: $font-size-small;
97
+ color: $ac-color-value;
87
98
  }
88
99
  }
89
100
  }
@@ -95,7 +106,7 @@
95
106
  li {
96
107
  &.is-active {
97
108
  a {
98
- background-color: #f5f7f9;
109
+ background-color: $ac-white-light;
99
110
  }
100
111
  }
101
112
 
@@ -110,7 +121,7 @@
110
121
 
111
122
  &.is-toggle {
112
123
  ul {
113
- border: 1px solid $ac-border;
124
+ border: 1px solid $ac-label-text;
114
125
  border-radius: 4px;
115
126
  padding: 4px;
116
127
  flex-grow: inherit;
@@ -134,6 +145,7 @@
134
145
  padding: 8px 25px;
135
146
  line-height: 1;
136
147
  border-radius: 4px;
148
+
137
149
  &:hover {
138
150
  background-color: inherit;
139
151
  }
@@ -141,6 +153,19 @@
141
153
  }
142
154
  }
143
155
  }
156
+
157
+ &.kubedb-ui-tabs {
158
+ ul {
159
+ border-bottom: none;
160
+ li {
161
+ &.is-active {
162
+ a {
163
+ border-bottom: 3px solid $ac-primary !important;
164
+ }
165
+ }
166
+ }
167
+ }
168
+ }
144
169
  }
145
170
  }
146
171
 
@@ -170,7 +195,7 @@
170
195
 
171
196
  &.is-borderless {
172
197
  border: 1px solid transparent;
173
- background-color: #f5f7f9;
198
+ background-color: $ac-white-light;
174
199
  border-radius: 4px 4px 4px 4px;
175
200
  }
176
201
  }
@@ -187,7 +212,7 @@
187
212
  li {
188
213
  &.is-active {
189
214
  a {
190
- background-color: #f1f1f1;
215
+ background-color: $ac-white-lighter;
191
216
  color: $ac-primary;
192
217
  }
193
218
  }
@@ -197,15 +222,53 @@
197
222
  }
198
223
  }
199
224
  }
225
+
200
226
  .tabs li.is-active a {
201
227
  color: $ac-primary;
202
228
  }
229
+
203
230
  .no-data-available {
204
231
  img {
205
232
  width: 250px;
206
233
  }
207
234
  }
208
235
 
236
+ .ac-system-body.bb-user-management {
237
+ .tabs.ac-tabs.is-line {
238
+ margin-left: -20px;
239
+ position: sticky;
240
+ top: 50px;
241
+ z-index: 99;
242
+ background: $ac-white;
243
+ }
244
+ }
245
+
246
+ // dark theme
247
+ .is-dark-theme {
248
+ .tabs {
249
+ &.is-toggle {
250
+ a {
251
+ &:hover {
252
+ background-color: $dark-bg;
253
+ }
254
+ }
255
+ }
256
+ a {
257
+ border-bottom: 1px solid $ac-white-lighter;
258
+ color: $ac-full-white;
259
+ }
260
+ &.ac-tabs.is-line {
261
+ ul {
262
+ li.is-active {
263
+ a {
264
+ color: $ac-color-text;
265
+ }
266
+ }
267
+ }
268
+ }
269
+ }
270
+ }
271
+
209
272
  /****************************************
210
273
  Responsive Classes
211
274
  *****************************************/
@@ -1,15 +1,97 @@
1
+ .tag:not(body) {
2
+ background-color: $ac-white-light;
3
+ font-size: 10px;
4
+ height: 18px;
5
+ font-weight: 500;
6
+ line-height: 1;
7
+ letter-spacing: 0px;
8
+ color: $ac-color-heading;
9
+ &.is-outlined {
10
+ border: 1px solid;
11
+ background-color: transparent;
12
+ }
13
+
14
+ a {
15
+ &:hover {
16
+ color: $ac-color-text;
17
+ }
18
+ }
19
+
20
+ &.is-available {
21
+ background-color: #27b064;
22
+ color: $ac-white;
23
+ }
24
+
25
+ &.is-success {
26
+ background-color: $ac-green;
27
+ color: $ac-white;
28
+
29
+ &.is-light {
30
+ background-color: rgba(39, 176, 100, 0.2);
31
+ color: $ac-green;
32
+ }
33
+ }
34
+
35
+ &.is-primary {
36
+ background-color: $ac-primary;
37
+ color: $ac-white;
38
+
39
+ &.is-light {
40
+ background-color: rgba(25, 113, 189, 0.2);
41
+ color: $ac-primary;
42
+ }
43
+ }
44
+
45
+ &.is-gray {
46
+ background-color: #e5e9f2;
47
+ color: $ac-gray-darker;
48
+ }
49
+
50
+ &.is-warning {
51
+ background-color: $ac-warning;
52
+ color: $ac-white;
53
+
54
+ &.is-light {
55
+ background-color: #ffd58b42;
56
+ color: #c88b21;
57
+ }
58
+ }
59
+
60
+ &.is-danger {
61
+ background-color: $ac-red;
62
+ color: $ac-white !important;
63
+
64
+ &.is-light {
65
+ background-color: rgba(234, 61, 47, 0.2);
66
+ color: $ac-red !important;
67
+ }
68
+ }
69
+ }
70
+
71
+ .tags {
72
+ .icon {
73
+ margin-bottom: 0.5rem;
74
+ }
75
+
76
+ .tag {
77
+ a {
78
+ font-weight: 500;
79
+ }
80
+ }
81
+ }
82
+
1
83
  .has-tags {
2
84
  display: flex;
3
85
  align-items: center;
4
86
 
5
87
  li {
6
- background: $ac-grey-lightest;
88
+ background-color: $ac-gray-lightest;
7
89
  list-style: none;
8
90
  padding: 2px 10px;
9
91
  border-radius: 4px;
10
92
  font-size: 12px;
11
93
  line-height: 1;
12
- border: 1px solid #333;
94
+ border: 1px solid $ac-color-value;
13
95
  margin-right: 5px;
14
96
 
15
97
  &:last-child {
@@ -27,5 +109,8 @@
27
109
  &.is-danger {
28
110
  @include ac-tags($ac-danger);
29
111
  }
112
+ &.is-dark {
113
+ @include ac-tags($ac-gray-dark);
114
+ }
30
115
  }
31
116
  }