@appscode/design-system 1.1.0-alpha.8 → 1.1.0-beta.2

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 (186) hide show
  1. package/base/utilities/_all.scss +1 -1
  2. package/base/utilities/_default.scss +41 -41
  3. package/base/utilities/_derived-variables.scss +8 -9
  4. package/base/utilities/_extended.scss +9 -5
  5. package/base/utilities/_initial-variables.scss +52 -50
  6. package/base/utilities/_mixin.scss +11 -11
  7. package/base/utilities/_typography.scss +22 -22
  8. package/base/utilities/dark-theme.scss +1 -1
  9. package/components/_ac-accordion.scss +6 -6
  10. package/components/_ac-alert-box.scss +27 -28
  11. package/components/_ac-calendar.scss +4 -4
  12. package/components/_ac-card.scss +55 -55
  13. package/components/_ac-code-highlight.scss +6 -6
  14. package/components/_ac-content-layout.scss +165 -165
  15. package/components/_ac-drag.scss +11 -11
  16. package/components/_ac-input.scss +85 -85
  17. package/components/_ac-modal.scss +8 -8
  18. package/components/_ac-multi-select.scss +751 -751
  19. package/components/_ac-options.scss +12 -13
  20. package/components/_ac-select-box.scss +5 -5
  21. package/components/_ac-table.scss +55 -55
  22. package/components/_ac-tabs.scss +36 -36
  23. package/components/_ac-tags.scss +22 -22
  24. package/components/_ac-terminal.scss +253 -253
  25. package/components/_add-card.scss +3 -3
  26. package/components/_app-drawer.scss +4 -4
  27. package/components/_basic-card.scss +108 -114
  28. package/components/_breadcumb.scss +5 -5
  29. package/components/_buttons.scss +64 -64
  30. package/components/_card-body-wrapper.scss +5 -5
  31. package/components/_dashboard-header.scss +29 -29
  32. package/components/_direct-deploy.scss +8 -8
  33. package/components/_go-to-top.scss +1 -1
  34. package/components/_image-upload.scss +3 -3
  35. package/components/_left-sidebar-menu.scss +374 -376
  36. package/components/_monaco-editor.scss +1 -1
  37. package/components/_navbar.scss +65 -65
  38. package/components/_nested-list.scss +1 -1
  39. package/components/_overview-info.scss +7 -7
  40. package/components/_overview-page.scss +4 -4
  41. package/components/_pagination.scss +110 -110
  42. package/components/_payment-card.scss +20 -20
  43. package/components/_preloader.scss +1 -1
  44. package/components/_preview-modal.scss +18 -18
  45. package/components/_pricing-table.scss +10 -10
  46. package/components/_progress-bar.scss +12 -12
  47. package/components/_subscription-card.scss +14 -14
  48. package/components/_table-of-content.scss +4 -4
  49. package/components/_tfa.scss +9 -9
  50. package/components/_widget-menu.scss +17 -17
  51. package/components/_wizard.scss +82 -82
  52. package/components/ac-toaster/_ac-toasted.scss +1 -1
  53. package/components/bbum/_activities-header.scss +1 -1
  54. package/components/bbum/_card-team.scss +12 -12
  55. package/components/bbum/_information-center.scss +13 -13
  56. package/components/bbum/_left-sidebar.scss +8 -8
  57. package/components/bbum/_mobile-desktop.scss +7 -7
  58. package/components/bbum/_post.scss +5 -5
  59. package/components/bbum/_sign-up-notification.scss +10 -10
  60. package/components/bbum/_single-post-preview.scss +21 -21
  61. package/components/bbum/_user-profile.scss +10 -10
  62. package/components/ui-builder/_ui-builder.scss +15 -15
  63. package/components/ui-builder/_vue-open-api.scss +2 -2
  64. package/layouts/_code-preview.scss +11 -11
  65. package/package.json +1 -1
  66. package/vue-components/plugins/time-convert.js +49 -0
  67. package/vue-components/text.vue +1 -0
  68. package/vue-components/types/cluster.ts +6 -0
  69. package/vue-components/types/longRunningTasks.ts +20 -0
  70. package/vue-components/types/notification.ts +6 -0
  71. package/vue-components/types/previewYaml.ts +8 -0
  72. package/vue-components/types/table.ts +54 -0
  73. package/vue-components/types/theme.ts +10 -0
  74. package/vue-components/types/user.ts +22 -0
  75. package/vue-components/v2/card/OverviewCards.vue +17 -2
  76. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +21 -21
  77. package/vue-components/v2/icons/Ellipsis.vue +2 -1
  78. package/vue-components/v2/modal/Modal.vue +0 -5
  79. package/vue-components/v2/navbar/Appdrawer.vue +37 -12
  80. package/vue-components/v2/navbar/Navbar.vue +3 -3
  81. package/vue-components/v2/navbar/NavbarItem.vue +3 -1
  82. package/vue-components/v2/navbar/NavbarItemContent.vue +1 -1
  83. package/vue-components/v2/navbar/User.vue +5 -22
  84. package/vue-components/v2/pagination/Pagination.vue +65 -0
  85. package/vue-components/v2/sidebar/SidebarItem.vue +10 -7
  86. package/vue-components/v3/accordion/Accordion.vue +151 -0
  87. package/vue-components/v3/alert/Alert.vue +238 -0
  88. package/vue-components/v3/alert/Toast.vue +79 -0
  89. package/vue-components/v3/banner/Banner.vue +10 -0
  90. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +104 -0
  91. package/vue-components/v3/button/Button.vue +831 -58
  92. package/vue-components/v3/button/Buttons.vue +6 -0
  93. package/vue-components/v3/button/DownloadBtn.vue +31 -0
  94. package/vue-components/v3/cards/Card.vue +32 -0
  95. package/vue-components/v3/cards/CardContent.vue +7 -0
  96. package/vue-components/v3/cards/CardHeader.vue +14 -0
  97. package/vue-components/v3/cards/Cards.vue +7 -0
  98. package/vue-components/v3/cards/Cluster.vue +150 -0
  99. package/vue-components/v3/cards/Counter.vue +27 -0
  100. package/vue-components/v3/cards/FeatureCard.vue +40 -0
  101. package/vue-components/v3/cards/FeatureCards.vue +6 -0
  102. package/vue-components/v3/cards/InfoCard.vue +248 -0
  103. package/vue-components/v3/cards/Monitoring.vue +94 -0
  104. package/vue-components/v3/cards/OverviewCard.vue +24 -0
  105. package/vue-components/v3/cards/OverviewCards.vue +31 -0
  106. package/vue-components/v3/cards/Payment.vue +62 -0
  107. package/vue-components/v3/cards/Vendor.vue +23 -0
  108. package/vue-components/v3/content/ContentHeader.vue +39 -30
  109. package/vue-components/v3/content/ContentLayout.vue +20 -0
  110. package/vue-components/v3/content/ContentTable.vue +37 -61
  111. package/vue-components/v3/dropdown/DropdownDivider.vue +2 -0
  112. package/vue-components/v3/dropdown/DropdownItem.vue +2 -0
  113. package/vue-components/v3/dropdown/DropdownMenu.vue +85 -91
  114. package/vue-components/v3/editor/Editor.vue +100 -113
  115. package/vue-components/v3/editor/FilteredFileEditor.vue +124 -127
  116. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +70 -94
  117. package/vue-components/v3/footer/FooterArea.vue +34 -0
  118. package/vue-components/v3/footer/FooterItem.vue +29 -0
  119. package/vue-components/v3/footer/FooterItems.vue +15 -0
  120. package/vue-components/v3/footer/Info.vue +23 -0
  121. package/vue-components/v3/footer/Status.vue +42 -0
  122. package/vue-components/v3/footer/Usage.vue +44 -0
  123. package/vue-components/v3/form/Form.vue +24 -33
  124. package/vue-components/v3/form/FormFooterControl.vue +7 -0
  125. package/vue-components/v3/form/FormFooterControls.vue +7 -0
  126. package/vue-components/v3/form-fields/AcSingleInput.vue +520 -0
  127. package/vue-components/v3/form-fields/Input.vue +19 -14
  128. package/vue-components/v3/header/Header.vue +117 -24
  129. package/vue-components/v3/header/HeaderItem.vue +18 -0
  130. package/vue-components/v3/header/HeaderItems.vue +4 -0
  131. package/vue-components/v3/icons/Ellipsis.vue +2 -0
  132. package/vue-components/v3/loaders/ResourceLoader.vue +4 -12
  133. package/vue-components/v3/loaders/SidebarLoader.vue +4 -12
  134. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +17 -15
  135. package/vue-components/v3/modal/Modal.vue +292 -96
  136. package/vue-components/v3/modals/DeleteConfirmationModal.vue +37 -50
  137. package/vue-components/v3/modals/JsonShowModal.vue +62 -68
  138. package/vue-components/v3/modals/LongRunningTasksModal.vue +145 -143
  139. package/vue-components/v3/navbar/Appdrawer.vue +196 -51
  140. package/vue-components/v3/navbar/Navbar.vue +296 -0
  141. package/vue-components/v3/navbar/NavbarItem.vue +81 -0
  142. package/vue-components/v3/navbar/NavbarItemContent.vue +284 -0
  143. package/vue-components/v3/navbar/Notification.vue +179 -0
  144. package/vue-components/v3/navbar/ThemeMode.vue +128 -112
  145. package/vue-components/v3/navbar/User.vue +383 -268
  146. package/vue-components/v3/notification/AlertBox.vue +39 -42
  147. package/vue-components/v3/notification/Notification.vue +49 -43
  148. package/vue-components/v3/notification/NotificationItem.vue +51 -19
  149. package/vue-components/v3/option-dots/Options.vue +188 -0
  150. package/vue-components/v3/pagination/Pagination.vue +203 -99
  151. package/vue-components/v3/preloader/Preloader.vue +23 -0
  152. package/vue-components/v3/searchbars/SearchBar.vue +51 -34
  153. package/vue-components/v3/sidebar/AccentColorPicker.vue +97 -0
  154. package/vue-components/v3/sidebar/ClusterSwitcher.vue +834 -81
  155. package/vue-components/v3/sidebar/Sidebar.vue +271 -0
  156. package/vue-components/v3/sidebar/SidebarBody.vue +7 -0
  157. package/vue-components/v3/sidebar/SidebarFooter.vue +80 -0
  158. package/vue-components/v3/sidebar/SidebarHeader.vue +124 -0
  159. package/vue-components/v3/sidebar/SidebarItem.vue +62 -0
  160. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +101 -104
  161. package/vue-components/v3/sidebar/SidebarMenuList.vue +9 -0
  162. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabs.vue +128 -0
  163. package/vue-components/v3/sidebar/sidebar-tabs/SidebarTabsLayout.vue +29 -0
  164. package/vue-components/v3/sidebar/sidebar-tabs/TabsContent.vue +99 -0
  165. package/vue-components/v3/tab/TabItem.vue +10 -12
  166. package/vue-components/v3/tab/Tabs.vue +9 -0
  167. package/vue-components/v3/tab/TabsBody.vue +7 -0
  168. package/vue-components/v3/table/EmptyTableInfo.vue +8 -0
  169. package/vue-components/v3/table/FakeTableCell.vue +22 -31
  170. package/vue-components/v3/table/InfoTable.vue +85 -59
  171. package/vue-components/v3/table/MultiInfoTable.vue +72 -95
  172. package/vue-components/v3/table/Table.vue +582 -151
  173. package/vue-components/v3/table/TableCell.vue +20 -23
  174. package/vue-components/v3/table/TableContainer.vue +50 -28
  175. package/vue-components/v3/table/TableRow.vue +63 -85
  176. package/vue-components/v3/table/table-cell/ArrayCell.vue +67 -79
  177. package/vue-components/v3/table/table-cell/CellValue.vue +97 -103
  178. package/vue-components/v3/table/table-cell/GenericCell.vue +43 -42
  179. package/vue-components/v3/table/table-cell/ObjectCell.vue +67 -79
  180. package/vue-components/v3/table/table-cell/ValueWithModal.vue +22 -31
  181. package/vue-components/v3/tabs/EditorTabs.vue +18 -24
  182. package/vue-components/v3/tag/Tag.vue +15 -12
  183. package/vue-components/v3/tag/Tags.vue +7 -0
  184. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +26 -23
  185. package/mixins/stickyContent.js +0 -141
  186. package/plugins/caching.ts +0 -243
@@ -43,16 +43,15 @@
43
43
  border: none;
44
44
  background-color: transparent;
45
45
  transition: 0.3 ease-in-out;
46
-
47
46
 
48
47
  &:hover {
49
- color: $ac-primary;
48
+ color: $primary;
50
49
  }
51
50
 
52
51
  span {
53
52
  width: 4px;
54
53
  height: 4px;
55
- background-color: $ac-color-value;
54
+ background-color: $primary-20;
56
55
  border-radius: 50%;
57
56
  margin-bottom: 1px;
58
57
  }
@@ -62,11 +61,11 @@
62
61
  border-radius: 4px;
63
62
  position: absolute;
64
63
  z-index: 99;
65
- background-color: $ac-white;
64
+ background-color: $white-100;
66
65
  min-width: 160px;
67
66
  top: 30px;
68
67
  padding: 5px 0;
69
- border: 1px solid $ac-white-light;
68
+ border: 1px solid $primary-90;
70
69
 
71
70
  li {
72
71
  .list-button {
@@ -76,14 +75,14 @@
76
75
  cursor: pointer;
77
76
  font-weight: 400;
78
77
  text-align: left;
79
- color: $ac-color-value;
80
- font-size: $font-size-small;
78
+ color: $primary-20;
79
+ font-size: 13px;
81
80
  padding: 10px 30px;
82
81
  display: block;
83
82
 
84
83
  &:hover {
85
- background-color: $ac-bg-light-gray;
86
- color: $ac-primary;
84
+ background-color: $black-60;
85
+ color: $primary;
87
86
  }
88
87
 
89
88
  span {
@@ -96,16 +95,16 @@
96
95
  }
97
96
 
98
97
  a {
99
- font-size: $font-size-small;
98
+ font-size: 13px;
100
99
  padding: 7px 15px;
101
100
  display: block;
102
101
  text-decoration: none !important;
103
- color: $ac-color-text !important;
102
+ color: $primary-10 !important;
104
103
  border: none;
105
104
 
106
105
  &:hover {
107
- background-color: $ac-bg-light-gray;
108
- color: $ac-primary !important;
106
+ background-color: $black-60;
107
+ color: $primary !important;
109
108
  }
110
109
  }
111
110
  }
@@ -1,8 +1,8 @@
1
1
  .ac-select-box {
2
2
  select {
3
- background-color: $ac-blue-light;
3
+ background-color: $info-light;
4
4
  border: 1px solid $ac-label-text;
5
- font-size: $font-size-small;
5
+ font-size: 13px;
6
6
  height: 42px;
7
7
  padding-left: 20px;
8
8
 
@@ -11,13 +11,13 @@
11
11
  }
12
12
 
13
13
  &:hover {
14
- border: 1px solid $ac-gray-lightest;
14
+ border: 1px solid $black-80;
15
15
  }
16
16
 
17
17
  &:focus {
18
18
  outline: none;
19
19
  box-shadow: none;
20
- border: 1px solid $ac-primary;
20
+ border: 1px solid $primary;
21
21
  }
22
22
  }
23
23
 
@@ -43,7 +43,7 @@
43
43
  select {
44
44
  background-color: $dark-bg-light;
45
45
  color: $ac-full-white;
46
- border: 1px solid $ac-white-light;
46
+ border: 1px solid $primary-90;
47
47
  }
48
48
  }
49
49
  }
@@ -12,13 +12,13 @@
12
12
 
13
13
  /* Handle */
14
14
  &::-webkit-scrollbar-thumb {
15
- background-color: $ac-white-light;
15
+ background-color: $primary-90;
16
16
  border-radius: 10px;
17
17
  }
18
18
 
19
19
  /* Handle on hover */
20
20
  &::-webkit-scrollbar-thumb:hover {
21
- background-color: $ac-white-light;
21
+ background-color: $primary-90;
22
22
  }
23
23
  }
24
24
  }
@@ -49,8 +49,8 @@
49
49
  tr {
50
50
  td {
51
51
  border: none;
52
- font-size: $font-size-small;
53
- color: $ac-color-value;
52
+ font-size: 13px;
53
+ color: $primary-20;
54
54
  font-weight: 400;
55
55
  padding: 3px 0px;
56
56
  min-width: 230px;
@@ -58,7 +58,7 @@
58
58
  &:first-child {
59
59
  font-weight: 400;
60
60
  padding-right: 10px;
61
- color: $ac-color-heading;
61
+ color: $primary-5;
62
62
  }
63
63
  }
64
64
  }
@@ -73,17 +73,17 @@
73
73
  margin-bottom: 0;
74
74
 
75
75
  thead {
76
- background-color: $ac-white-lighter;
77
- font-size: $font-size-small;
78
- font-family: $ac-family-heading;
76
+ background-color: $white-100-lighter;
77
+ font-size: 13px;
78
+ font-family: $font-heading;
79
79
  line-height: initial;
80
80
 
81
81
  tr {
82
- border-bottom: 1px solid $ac-white-light;
82
+ border-bottom: 1px solid $primary-90;
83
83
 
84
84
  th {
85
85
  padding: 6px 20px;
86
- color: $ac-color-heading;
86
+ color: $primary-5;
87
87
  border: none;
88
88
  font-weight: 500;
89
89
 
@@ -93,13 +93,13 @@
93
93
 
94
94
  &.sorting-asc {
95
95
  &::before {
96
- color: $ac-color-heading;
96
+ color: $primary-5;
97
97
  }
98
98
  }
99
99
 
100
100
  &.sorting-desc {
101
101
  &::after {
102
- color: $ac-color-heading;
102
+ color: $primary-5;
103
103
  }
104
104
  }
105
105
 
@@ -130,7 +130,7 @@
130
130
  tbody {
131
131
  &.is-selected {
132
132
  transform: matrix(1, 0, 0, 1, 0, 0) !important;
133
- box-shadow: inset 0 0 0 1px $ac-primary;
133
+ box-shadow: inset 0 0 0 1px $primary;
134
134
  border-radius: 4px;
135
135
  border-bottom: none;
136
136
  color: $ac-black;
@@ -143,13 +143,13 @@
143
143
  border-bottom: 1px solid var(--ac-white-light);
144
144
 
145
145
  td {
146
- font-size: $font-size-small;
146
+ font-size: 13px;
147
147
  padding: 5px 20px;
148
- color: $ac-color-text;
148
+ color: $primary-10;
149
149
  border: none;
150
150
 
151
151
  a {
152
- color: $ac-color-heading;
152
+ color: $primary-5;
153
153
  transition: 0.3s ease-in-out;
154
154
  font-weight: 400;
155
155
  }
@@ -157,19 +157,19 @@
157
157
  .tags {
158
158
  .tag {
159
159
  a {
160
- color: $ac-primary;
160
+ color: $primary;
161
161
  font-weight: 500;
162
162
  transition: 0.3s ease-in-out;
163
163
 
164
164
  &:hover {
165
- color: $ac-color-heading;
165
+ color: $primary-5;
166
166
  }
167
167
  }
168
168
  }
169
169
  }
170
170
 
171
171
  &.is-error {
172
- color: $ac-danger;
172
+ color: $danger;
173
173
  }
174
174
 
175
175
  .image-with-status {
@@ -179,14 +179,14 @@
179
179
  display: inline-flex;
180
180
 
181
181
  &.is-danger {
182
- background-color: $ac-danger;
182
+ background-color: $danger;
183
183
  }
184
184
 
185
185
  i.fa {
186
186
  position: absolute;
187
- background-color: $ac-primary;
188
- color: $ac-white;
189
- font-size: $font-size-tiny;
187
+ background-color: $primary;
188
+ color: $white-100;
189
+ font-size: 11px;
190
190
  width: 15px;
191
191
  height: 15px;
192
192
  text-align: center;
@@ -196,7 +196,7 @@
196
196
  top: 5px;
197
197
 
198
198
  &.fa-close {
199
- background-color: $ac-danger;
199
+ background-color: $danger;
200
200
  }
201
201
  }
202
202
 
@@ -228,15 +228,15 @@
228
228
 
229
229
  .options-items {
230
230
  a:hover {
231
- color: $ac-white;
231
+ color: $white-100;
232
232
  text-decoration: none;
233
233
  }
234
234
  }
235
235
 
236
236
  &.is-selected {
237
- background-color: $ac-white !important;
237
+ background-color: $white-100 !important;
238
238
  transform: matrix(1, 0, 0, 1, 0, 0) !important;
239
- box-shadow: inset 0 0 0 1px $ac-primary;
239
+ box-shadow: inset 0 0 0 1px $primary;
240
240
  border-radius: 4px;
241
241
  border-bottom: none;
242
242
  color: $ac-black;
@@ -245,7 +245,7 @@
245
245
  &.is-hoverless {
246
246
  box-shadow: none !important;
247
247
  transform: none !important;
248
- background-color: $ac-white !important;
248
+ background-color: $white-100 !important;
249
249
  }
250
250
 
251
251
  transition: 0.3s ease-in-out;
@@ -266,7 +266,7 @@
266
266
  right: -451px;
267
267
  top: -1px;
268
268
  visibility: visible;
269
- background-color: $ac-white-lighter;
269
+ background-color: $white-100-lighter;
270
270
  }
271
271
  }
272
272
 
@@ -282,12 +282,12 @@
282
282
  thead {
283
283
  tr {
284
284
  th {
285
- border-top: 1px solid $ac-white-light;
286
- border-bottom: 1px solid $ac-white-light;
287
- border-right: 1px solid $ac-white-light;
285
+ border-top: 1px solid $primary-90;
286
+ border-bottom: 1px solid $primary-90;
287
+ border-right: 1px solid $primary-90;
288
288
 
289
289
  &:first-child {
290
- border-left: 1px solid $ac-white-light;
290
+ border-left: 1px solid $primary-90;
291
291
  }
292
292
  }
293
293
  }
@@ -300,18 +300,18 @@
300
300
  }
301
301
 
302
302
  td {
303
- font-size: $font-size-small;
304
- color: $ac-color-value;
303
+ font-size: 13px;
304
+ color: $primary-20;
305
305
  background-color: transparent;
306
- border-bottom: 1px solid $ac-white-light;
307
- border-right: 1px solid $ac-white-light;
306
+ border-bottom: 1px solid $primary-90;
307
+ border-right: 1px solid $primary-90;
308
308
 
309
309
  &:first-child {
310
- border-left: 1px solid $ac-white-light;
310
+ border-left: 1px solid $primary-90;
311
311
  }
312
312
 
313
313
  &:first-child {
314
- color: $ac-color-heading;
314
+ color: $primary-5;
315
315
  border-radius: 0;
316
316
  }
317
317
 
@@ -327,32 +327,32 @@
327
327
  &::before {
328
328
  height: 16px;
329
329
  width: 16px;
330
- background-color: $ac-white-light;
330
+ background-color: $primary-90;
331
331
  }
332
332
 
333
333
  &::after {
334
334
  top: 6px;
335
335
  left: 6px;
336
- border-color: $ac-gray-lightest;
336
+ border-color: $black-80;
337
337
  width: 0.3rem;
338
338
  height: 0.5rem;
339
339
  }
340
340
  }
341
341
 
342
342
  &:checked + label::before {
343
- background-color: $ac-primary;
344
- border-color: $ac-primary;
343
+ background-color: $primary;
344
+ border-color: $primary;
345
345
  }
346
346
 
347
347
  &:checked + label::after {
348
- border-color: $ac-white-lighter;
348
+ border-color: $white-100-lighter;
349
349
  }
350
350
  }
351
351
  }
352
352
 
353
353
  .is-checkradio[type="checkbox"].ac-checkbox:checked + label::before {
354
- background-color: $ac-primary;
355
- border-color: $ac-primary;
354
+ background-color: $primary;
355
+ border-color: $primary;
356
356
  }
357
357
 
358
358
  .is-checkradio[type="checkbox"] + label::before,
@@ -395,11 +395,11 @@
395
395
 
396
396
  &.is-dark {
397
397
  thead {
398
- background-color: $ac-color-heading;
398
+ background-color: $primary-5;
399
399
 
400
400
  tr {
401
401
  th {
402
- color: $ac-white;
402
+ color: $white-100;
403
403
  }
404
404
  }
405
405
  }
@@ -407,22 +407,22 @@
407
407
  tbody {
408
408
  tr {
409
409
  td {
410
- color: $ac-white;
410
+ color: $white-100;
411
411
  }
412
412
 
413
413
  &:nth-child(odd) {
414
- background-color: $ac-color-value;
414
+ background-color: $primary-20;
415
415
  }
416
416
 
417
417
  &:nth-child(even) {
418
- background-color: $ac-color-heading;
418
+ background-color: $primary-5;
419
419
  }
420
420
 
421
421
  &:hover {
422
- background-color: $ac-primary;
422
+ background-color: $primary;
423
423
 
424
424
  td {
425
- color: $ac-white;
425
+ color: $white-100;
426
426
  }
427
427
  }
428
428
  }
@@ -432,13 +432,13 @@
432
432
 
433
433
  .table.ac-table tbody tr:hover td a:not(.tag a) {
434
434
  text-decoration: underline;
435
- color: $ac-primary;
435
+ color: $primary;
436
436
  }
437
437
 
438
438
  // table inner shadow
439
439
  .table-inner-shadow {
440
440
  border-radius: 0px;
441
- background: $ac-white-lighter;
441
+ background: $white-100-lighter;
442
442
  box-shadow: inset 5px 5px 10px #e3e6e9, inset -5px -5px 10px #ffffff;
443
443
  }
444
444
 
@@ -1,19 +1,19 @@
1
1
  .tabs {
2
2
  &.ac-tabs {
3
3
  ul {
4
- border-bottom-color: $ac-white-light;
4
+ border-bottom-color: $primary-90;
5
5
  }
6
6
 
7
7
  &.is-line {
8
8
  ul {
9
- // border-bottom-color: $ac-white-light;
9
+ // border-bottom-color: $primary-90;
10
10
 
11
11
  li {
12
12
  &.is-active {
13
13
  a {
14
14
  font-weight: 500;
15
- border-bottom-color: $ac-primary;
16
- border-bottom: 2px solid $ac-primary !important;
15
+ border-bottom-color: $primary;
16
+ border-bottom: 2px solid $primary !important;
17
17
  border-width: 2px;
18
18
  }
19
19
  }
@@ -21,13 +21,13 @@
21
21
  a {
22
22
  text-transform: uppercase;
23
23
  font-weight: 400;
24
- color: $ac-color-heading;
25
- font-size: $font-size-small;
24
+ color: $primary-5;
25
+ font-size: 13px;
26
26
  border-bottom: none;
27
27
  padding: 6px 20px;
28
28
 
29
29
  &:hover {
30
- border-bottom-color: $ac-primary;
30
+ border-bottom-color: $primary;
31
31
  }
32
32
  }
33
33
  }
@@ -39,7 +39,7 @@
39
39
 
40
40
  a {
41
41
  padding: 8px 20px;
42
- color: $ac-color-value;
42
+ color: $primary-20;
43
43
 
44
44
  &:hover {
45
45
  border-bottom-color: transparent;
@@ -53,9 +53,9 @@
53
53
  li {
54
54
  &.is-active {
55
55
  position: relative;
56
- border-color: $ac-white-light;
56
+ border-color: $primary-90;
57
57
  z-index: 1;
58
- color: $ac-primary;
58
+ color: $primary;
59
59
 
60
60
  &:after {
61
61
  position: absolute;
@@ -65,16 +65,16 @@
65
65
  width: 100%;
66
66
  height: 4px;
67
67
  border-radius: 4px 4px 0 0;
68
- background-color: $ac-primary;
68
+ background-color: $primary;
69
69
  }
70
70
 
71
71
  a {
72
- border-color: $ac-white-light;
73
- background-color: $ac-white;
72
+ border-color: $primary-90;
73
+ background-color: $white-100;
74
74
  padding: 8px 20px;
75
75
  font-weight: 500;
76
76
  margin-bottom: -2px;
77
- font-size: $font-size-small;
77
+ font-size: 13px;
78
78
  }
79
79
  }
80
80
  }
@@ -90,11 +90,11 @@
90
90
  }
91
91
 
92
92
  a {
93
- border: 1px solid $ac-white-light;
93
+ border: 1px solid $primary-90;
94
94
  border-bottom: none;
95
95
  margin-bottom: -2px;
96
- font-size: $font-size-small;
97
- color: $ac-color-value;
96
+ font-size: 13px;
97
+ color: $primary-20;
98
98
  }
99
99
  }
100
100
  }
@@ -106,7 +106,7 @@
106
106
  li {
107
107
  &.is-active {
108
108
  a {
109
- background-color: $ac-white-light;
109
+ background-color: $primary-90;
110
110
  }
111
111
  }
112
112
 
@@ -129,11 +129,11 @@
129
129
  li {
130
130
  &.is-active {
131
131
  a {
132
- color: $ac-white;
133
- background-color: $ac-primary;
132
+ color: $white-100;
133
+ background-color: $primary;
134
134
 
135
135
  &:hover {
136
- background-color: $ac-primary;
136
+ background-color: $primary;
137
137
  }
138
138
  }
139
139
  }
@@ -160,7 +160,7 @@
160
160
  li {
161
161
  &.is-active {
162
162
  a {
163
- border-bottom: 3px solid $ac-primary !important;
163
+ border-bottom: 3px solid $primary !important;
164
164
  }
165
165
  }
166
166
  }
@@ -178,9 +178,9 @@
178
178
  li {
179
179
  &.is-active {
180
180
  a {
181
- border-color: $ac-white-light;
182
- background-color: $ac-white;
183
- color: $ac-primary;
181
+ border-color: $primary-90;
182
+ background-color: $white-100;
183
+ color: $primary;
184
184
  }
185
185
  }
186
186
  }
@@ -188,14 +188,14 @@
188
188
  }
189
189
 
190
190
  .ac-tab-content {
191
- background-color: $ac-white;
192
- border: 1px solid $ac-white-light;
191
+ background-color: $white-100;
192
+ border: 1px solid $primary-90;
193
193
  border-top: none;
194
194
  border-radius: 0 0 4px 4px;
195
195
 
196
196
  &.is-borderless {
197
197
  border: 1px solid transparent;
198
- background-color: $ac-white-light;
198
+ background-color: $primary-90;
199
199
  border-radius: 4px 4px 4px 4px;
200
200
  }
201
201
  }
@@ -212,8 +212,8 @@
212
212
  li {
213
213
  &.is-active {
214
214
  a {
215
- background-color: $ac-white-lighter;
216
- color: $ac-primary;
215
+ background-color: $white-100-lighter;
216
+ color: $primary;
217
217
  }
218
218
  }
219
219
  }
@@ -224,7 +224,7 @@
224
224
  }
225
225
 
226
226
  .tabs li.is-active a {
227
- color: $ac-primary;
227
+ color: $primary;
228
228
  }
229
229
 
230
230
  .no-data-available {
@@ -239,7 +239,7 @@
239
239
  position: sticky;
240
240
  top: 50px;
241
241
  z-index: 99;
242
- background: $ac-white;
242
+ background: $white-100;
243
243
  }
244
244
  }
245
245
 
@@ -254,14 +254,14 @@
254
254
  }
255
255
  }
256
256
  a {
257
- border-bottom: 1px solid $ac-white-lighter;
257
+ border-bottom: 1px solid $white-100-lighter;
258
258
  color: $ac-full-white;
259
259
  }
260
260
  &.ac-tabs.is-line {
261
261
  ul {
262
262
  li.is-active {
263
263
  a {
264
- color: $ac-color-text;
264
+ color: $primary-10;
265
265
  }
266
266
  }
267
267
  }
@@ -297,8 +297,8 @@ Responsive Classes
297
297
  li {
298
298
  &.is-active {
299
299
  a {
300
- border-color: $ac-white-light;
301
- background-color: $ac-white;
300
+ border-color: $primary-90;
301
+ background-color: $white-100;
302
302
  }
303
303
  }
304
304
  }