@appscode/design-system 2.0.40 → 2.0.41-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 (58) hide show
  1. package/main.scss +1 -0
  2. package/package.json +1 -1
  3. package/vue-components/styles/base/utilities/_colors.scss +15 -3
  4. package/vue-components/styles/base/utilities/_customize-bulma.scss +1 -1
  5. package/vue-components/styles/base/utilities/_extended.scss +2 -2
  6. package/vue-components/styles/base/utilities/_global.scss +6 -4
  7. package/vue-components/styles/base/utilities/_typography.scss +20 -3
  8. package/vue-components/styles/components/_ac-calendar.scss +1 -1
  9. package/vue-components/styles/components/_ac-tags.scss +2 -2
  10. package/vue-components/styles/components/_accordion.scss +1 -1
  11. package/vue-components/styles/components/_button.scss +29 -4
  12. package/vue-components/styles/components/_direct-deploy.scss +1 -1
  13. package/vue-components/styles/components/_dropdown.scss +1 -1
  14. package/vue-components/styles/components/_getkeeper.scss +1 -1
  15. package/vue-components/styles/components/_options.scss +3 -3
  16. package/vue-components/styles/components/_overview-page.scss +1 -1
  17. package/vue-components/styles/components/_pagination.scss +5 -5
  18. package/vue-components/styles/components/_preloader.scss +1 -1
  19. package/vue-components/styles/components/_preview-modal.scss +2 -2
  20. package/vue-components/styles/components/_progress-bar.scss +7 -7
  21. package/vue-components/styles/components/_table.scss +13 -13
  22. package/vue-components/styles/components/_tabs.scss +13 -13
  23. package/vue-components/styles/components/_terminal.scss +2 -2
  24. package/vue-components/styles/components/_widget-menu.scss +2 -2
  25. package/vue-components/styles/components/_wizard.scss +3 -3
  26. package/vue-components/styles/components/alert/_alert.scss +8 -8
  27. package/vue-components/styles/components/bbum/_card-team.scss +1 -1
  28. package/vue-components/styles/components/bbum/_left-sidebar.scss +2 -2
  29. package/vue-components/styles/components/bbum/_single-post-preview.scss +2 -2
  30. package/vue-components/styles/components/bbum/_user-profile.scss +2 -2
  31. package/vue-components/styles/components/cards/_cluster.scss +5 -4
  32. package/vue-components/styles/components/cards/_info.scss +7 -1
  33. package/vue-components/styles/components/cards/_monitoring.scss +1 -0
  34. package/vue-components/styles/components/cards/_org.scss +2 -2
  35. package/vue-components/styles/components/cards/_payment-card.scss +3 -3
  36. package/vue-components/styles/components/cards/_vendor.scss +5 -5
  37. package/vue-components/styles/components/editor/_filtered-file-editor.scss +2 -2
  38. package/vue-components/styles/components/form-fields/_input-card.scss +4 -4
  39. package/vue-components/styles/components/form-fields/_input.scss +15 -10
  40. package/vue-components/styles/components/header/_header.scss +1 -1
  41. package/vue-components/styles/components/navbar/_menu-content.scss +4 -4
  42. package/vue-components/styles/components/navbar/_notification.scss +3 -3
  43. package/vue-components/styles/components/select-box/_ac-select-box.scss +1 -1
  44. package/vue-components/styles/components/select-box/_multi-select.scss +3 -3
  45. package/vue-components/styles/components/sidebar/_left-sidebar.scss +2 -2
  46. package/vue-components/styles/components/sidebar-tabs/_sidebar-tabs.scss +3 -3
  47. package/vue-components/styles/components/ui-builder/_ui-builder.scss +9 -9
  48. package/vue-components/styles/components/ui-builder/_vue-open-api.scss +4 -4
  49. package/vue-components/styles/theme/_appscode.scss +9 -24
  50. package/vue-components/styles/theme/_dark.scss +48 -0
  51. package/vue-components/v2/pagination/Pagination.vue +4 -4
  52. package/vue-components/v3/header/Header.vue +1 -1
  53. package/vue-components/v3/navbar/ThemeMode.vue +1 -1
  54. package/vue-components/v3/navbar/User.vue +71 -128
  55. package/vue-components/v3/notification/AlertBox.vue +9 -9
  56. package/vue-components/v3/pagination/Pagination.vue +4 -4
  57. package/vue-components/v3/sidebar/Steps.vue +3 -3
  58. package/vue-components/v3/table/InfoTable.vue +1 -1
@@ -1,28 +1,13 @@
1
- $primary-hue: 149;
2
- $primary-saturation: 100%;
3
- $primary-5: hsl($primary-hue, $primary-saturation, 5%);
4
- $primary-10: hsl($primary-hue, $primary-saturation, 10%);
5
- $primary-20: hsl($primary-hue, $primary-saturation, 20%);
6
- $primary: hsl($primary-hue, $primary-saturation, 30%);
7
- $primary-30: hsl($primary-hue, $primary-saturation, 30%);
8
- $primary-40: hsl($primary-hue, $primary-saturation, 40%);
9
- $primary-50: hsl($primary-hue, $primary-saturation, 50%);
10
- $primary-60: hsl($primary-hue, $primary-saturation, 60%);
11
- $primary-70: hsl($primary-hue, $primary-saturation, 70%);
12
- $primary-80: hsl($primary-hue, $primary-saturation, 80%);
13
- $primary-90: hsl($primary-hue, $primary-saturation, 90%);
14
- $primary-93: hsl($primary-hue, $primary-saturation, 93%);
15
- $primary-95: hsl($primary-hue, $primary-saturation, 95%);
16
- $primary-97: hsl($primary-hue, $primary-saturation, 97%);
1
+ :root {
2
+ --primary-hue: 149;
3
+ --primary-saturation: 100%;
4
+ --primary-light: 30%;
5
+ }
6
+ $primary-hue: var(--primary-hue);
7
+ $primary-saturation: var(--primary-saturation);
8
+ $primary-light: var(--primary-light);
17
9
 
18
- $primary-light-grey: hsl($primary-hue, 30%, 96%);
19
- $primary-dark-grey: hsl($primary-hue, 30%, 10%);
10
+ $ac-primary: hsl($primary-hue, $primary-saturation, $primary-light);
20
11
 
21
- $color-text: hsl($primary-hue, 10%, 35%);
22
- $color-heading: hsl($primary-hue, 10%, 10%);
23
- $color-label: hsl($primary-hue, 20%, 50%);
24
- $color-link: hsl($primary-hue, 40%, 20%);
25
- $color-border-light: hsl($primary-hue, 30%, 95%);
26
12
  $color-border: hsl($primary-hue, 30%, 90%);
27
- $color-border-dark: hsl($primary-hue, 10%, 80%);
28
13
  $color-sidebar: hsl($primary-hue, $primary-saturation, 5%);
@@ -0,0 +1,48 @@
1
+ // :root {
2
+ // --primary-hue: 208;
3
+ // --primary-saturation: 77%;
4
+ // --primary-light: 40%;
5
+ // }
6
+ // :root {
7
+ // --theme-mode: dark;
8
+ // }
9
+ // // primary color guides
10
+ // $primary-hue: var(--primary-hue);
11
+ // $primary-saturation: var(--primary-saturation);
12
+ // $primary-light: var(--primary-light);
13
+ // $theme-mode: var(--theme-mode);
14
+
15
+ // $primary-5: hsl($primary-hue, $primary-saturation, 95%);
16
+ // $primary-10: hsl($primary-hue, $primary-saturation, 90%);
17
+ // $primary-20: hsl($primary-hue, $primary-saturation, 80%);
18
+ // $primary-30: hsl($primary-hue, $primary-saturation, 70%);
19
+ // $primary-40: hsl($primary-hue, $primary-saturation, 60%);
20
+ // $ac-primary: hsl($primary-hue, $primary-saturation, $primary-light);
21
+ // $primary-50: hsl($primary-hue, $primary-saturation, 50%);
22
+ // $primary-60: hsl($primary-hue, $primary-saturation, 40%);
23
+ // $primary-70: hsl($primary-hue, $primary-saturation, 30%);
24
+ // $primary-80: hsl($primary-hue, $primary-saturation, 20%);
25
+ // $primary-90: hsl($primary-hue, $primary-saturation, 10%);
26
+ // $primary-93: hsl($primary-hue, $primary-saturation, 7%);
27
+ // $primary-95: hsl($primary-hue, $primary-saturation, 5%);
28
+ // $primary-97: hsl($primary-hue, $primary-saturation, 3%);
29
+
30
+ // $primary-light-grey: hsl($primary-hue, 30%, 20%);
31
+ // $primary-dark-grey: hsl($primary-hue, 30%, 90%);
32
+
33
+ // // white and black
34
+ // $white-100: hsl($primary-hue, 50%, 5%);
35
+ // $black-100: hsl(0, 0%, 90%);
36
+
37
+ // $color-text: hsl($primary-hue, 10%, 80%);
38
+ // $color-heading: hsl($primary-hue, 10%, 90%);
39
+ // $color-label: hsl($primary-hue, 20%, 50%);
40
+ // $color-link: hsl($primary-hue, 40%, 80%);
41
+ // $color-border-light: hsl($primary-hue, 30%, 20%);
42
+ // $color-border: hsl($primary-hue, 30%, 20%);
43
+ // $color-border-dark: hsl($primary-hue, 10%, 30%);
44
+ // $color-sidebar: hsl($primary-hue, $primary-saturation, 10%);
45
+
46
+ // .ac-left-sidebar .menu-list.ac-menu-list li a {
47
+ // color: $color-text;
48
+ // }
@@ -184,11 +184,11 @@ export default {
184
184
  font-weight: 500;
185
185
  border-radius: 4px;
186
186
  border: 1px solid $color-border;
187
- color: $primary;
187
+ color: $ac-primary;
188
188
  margin-left: 4px;
189
189
 
190
190
  &:hover {
191
- background-color: $primary !important;
191
+ background-color: $ac-primary !important;
192
192
  color: $white-100;
193
193
  border: 1px solid $color-border;
194
194
  }
@@ -199,7 +199,7 @@ export default {
199
199
  background-color: $primary-97;
200
200
  }
201
201
  &.is-current {
202
- background-color: $primary;
202
+ background-color: $ac-primary;
203
203
  color: $white-100;
204
204
  }
205
205
  }
@@ -227,7 +227,7 @@ export default {
227
227
  &:focus,
228
228
  &:active,
229
229
  &:focus-visible {
230
- border: 1px solid $primary;
230
+ border: 1px solid $ac-primary;
231
231
  outline: none;
232
232
  }
233
233
  }
@@ -61,7 +61,7 @@ withDefaults(defineProps<Props>(), {
61
61
  // min-height: 75px;
62
62
  // display: table;
63
63
  // width: 100%;
64
- // border-left: 5px solid $primary;
64
+ // border-left: 5px solid $ac-primary;
65
65
  // border-bottom: 1px solid $color-border;
66
66
  // border-top: 1px solid $color-border;
67
67
  // border-right: 1px solid $color-border;
@@ -129,7 +129,7 @@ watch(themeMode, (n) => {
129
129
 
130
130
  &.is-active {
131
131
  background: $color-border;
132
- color: $primary;
132
+ color: $ac-primary;
133
133
  }
134
134
  }
135
135
  }
@@ -85,7 +85,8 @@ const setTheme = (val: string) => {
85
85
  emit("set:theme", val);
86
86
  };
87
87
 
88
- const pathName = window.location.origin;
88
+ const locationOrigin = window.location.origin;
89
+ const isDocsUi = window.location.pathname.startsWith("/docs/");
89
90
 
90
91
  watch(dropDownStatus, (n) => {
91
92
  if (n === "open") {
@@ -116,19 +117,11 @@ watch(dropDownStatus, (n) => {
116
117
  <template #navbar-content>
117
118
  <navbar-item-content class="navbar-dropdown-wrapper">
118
119
  <div v-if="user.username" class="user-profile-wrapper">
119
- <a
120
- :href="`${serverDomain}/${user.username}`"
121
- :title="user.username.toUpperCase()"
122
- data-testid="user-profile-link"
123
- class="line-break-anywhere is-ellipsis-1 has-text-weight-medium"
124
- >
120
+ <a :href="`${serverDomain}/${user.username}`" :title="user.username.toUpperCase()"
121
+ data-testid="user-profile-link" class="line-break-anywhere is-ellipsis-1 has-text-weight-medium">
125
122
  <div class="profile-area">
126
123
  <div class="profile-photo">
127
- <img
128
- :src="user.avatar_url"
129
- alt="User Photo"
130
- class="width-32 height-32"
131
- />
124
+ <img :src="user.avatar_url" alt="User Photo" class="width-32 height-32" />
132
125
  <button class="camera-icon"></button>
133
126
  </div>
134
127
  <div class="profile-info" style="width: calc(100% - 60px)">
@@ -136,142 +129,92 @@ watch(dropDownStatus, (n) => {
136
129
  <p>
137
130
  {{
138
131
  user.isPersonalAccount || user.is_admin
139
- ? "Personal Account"
140
- : "Organization"
132
+ ? "Personal Account"
133
+ : "Organization"
141
134
  }}
142
135
  </p>
143
136
  </div>
144
137
  </div>
145
138
  </a>
146
- <transition-group
147
- name="list"
148
- tag="ul"
149
- class="list-items ac-scrollbar py-2"
150
- >
151
- <li key="settings" v-if="serverDomain !== pathName">
152
- <a
153
- v-if="user.isPersonalAccount"
154
- data-testid="user-settings-link"
155
- :href="`${serverDomain}/user/settings/`"
156
- >
157
- <span class="icon"><HeroiconsCog6Tooth /></span>
139
+ <transition-group name="list" tag="ul" class="list-items ac-scrollbar py-2">
140
+ <li key="settings" v-if="serverDomain !== locationOrigin || isDocsUi">
141
+ <a v-if="user.isPersonalAccount" data-testid="user-settings-link" :href="`${serverDomain}/user/settings/`">
142
+ <span class="icon">
143
+ <HeroiconsCog6Tooth />
144
+ </span>
158
145
  <span>Settings</span>
159
146
  </a>
160
- <a
161
- v-else
162
- data-testid="user-settings-link"
163
- :href="`${serverDomain}/${user.username}/settings`"
164
- >
165
- <span class="icon"><HeroiconsCog6Tooth /></span
166
- ><span>Settings</span>
147
+ <a v-else data-testid="user-settings-link" :href="`${serverDomain}/${user.username}/settings`">
148
+ <span class="icon">
149
+ <HeroiconsCog6Tooth />
150
+ </span><span>Settings</span>
167
151
  </a>
168
152
  </li>
169
153
  <li key="settings-platform" v-else>
170
- <NuxtLink
171
- v-if="user.isPersonalAccount"
172
- data-testid="user-settings-link"
173
- :to="`/user/settings/`"
174
- >
175
- <span class="icon"><HeroiconsCog6Tooth /></span>
154
+ <NuxtLink v-if="user.isPersonalAccount" data-testid="user-settings-link" :to="`/user/settings/`">
155
+ <span class="icon">
156
+ <HeroiconsCog6Tooth />
157
+ </span>
176
158
  <span>Settings</span>
177
159
  </NuxtLink>
178
- <NuxtLink
179
- v-else
180
- data-testid="user-settings-link"
181
- :to="`/${user.username}/settings`"
182
- >
183
- <span class="icon"><HeroiconsCog6Tooth /></span
184
- ><span>Settings</span>
160
+ <NuxtLink v-else data-testid="user-settings-link" :to="`/${user.username}/settings`">
161
+ <span class="icon">
162
+ <HeroiconsCog6Tooth />
163
+ </span><span>Settings</span>
185
164
  </NuxtLink>
186
165
  </li>
187
166
 
188
- <li
189
- v-if="showAccountSwitcher"
190
- :class="`is-${dropDownStatus}`"
191
- key="switcher"
192
- >
193
- <a
194
- class="ac-dropdown-button is-fullwidth is-flex is-justify-content-space-between is-align-items-center"
195
- @click="toggleList()"
196
- >
167
+ <li v-if="showAccountSwitcher" :class="`is-${dropDownStatus}`" key="switcher">
168
+ <a class="ac-dropdown-button is-fullwidth is-flex is-justify-content-space-between is-align-items-center"
169
+ @click="toggleList()">
197
170
  <div class="is-flex gap-8">
198
- <span class="icon"><HeroiconsUserGroup /></span
199
- ><span>Switch Account</span>
171
+ <span class="icon">
172
+ <HeroiconsUserGroup />
173
+ </span><span>Switch Account</span>
200
174
  </div>
201
- <span
202
- ><i
203
- :class="`fa fa-angle-${
204
- dropDownStatus === 'open' ? 'up' : 'down'
205
- }`"
206
- ></i
207
- ></span>
175
+ <span><i :class="`fa fa-angle-${dropDownStatus === 'open' ? 'up' : 'down'
176
+ }`"></i></span>
208
177
  </a>
209
- <transition-group
210
- name="list"
211
- tag="ul"
212
- class="ac-vscrollbar"
213
- ref="dropdownItems"
214
- :style="{ maxHeight: dropDownSectionHeight }"
215
- >
216
- <li
217
- v-for="(org, idx) in formattedOrganizations"
218
- :key="org.username"
219
- >
220
- <a
221
- class="is-flex is-align-items-center"
222
- @click="onOrganizationClick(org.username)"
223
- >
224
- <div class="width-30 height-30 image">
225
- <img
226
- :src="org.avatar_url"
227
- class="ac-user-profile is-rounded"
228
- alt="icon"
229
- />
230
- </div>
231
- <div
232
- class="is-flex is-align-items-center is-justify-content-space-between is-fullwidth ml-10"
233
- >
234
- <div class="org-info">
235
- <strong
236
- :title="org.username"
237
- class="line-break-anywhere is-ellipsis-1"
238
- >{{ org.username }}</strong
239
- >
240
- <p>
241
- {{
242
- org.isPersonalAccount
243
- ? "Personal Account"
244
- : "Organization"
245
- }}
246
- </p>
247
- </div>
248
- <span
249
- v-if="idx === 0"
250
- class="material-icons font-size-18 ml-10 is-pulled-right"
251
- >
252
- <HeroiconsCheck />
253
- </span>
254
- </div>
255
- </a>
256
- </li>
257
- </transition-group>
258
- </li>
259
- <li v-if="isLoggedinUserAdmin || user.is_admin" key="site-admin">
260
- <a data-testid="site-admin-link" :href="`${accountsDomain}/admin`"
261
- ><span class="icon"><HeroiconsWrenchScrewdriver /></span
262
- ><span>Site Administration</span></a
263
- >
264
- </li>
265
- <li key="signout" @click="$emit('on-logout')">
266
- <a
267
- data-testid="user-logout-link"
268
- :href="`${accountsDomain}/user/logout`"
269
- >
270
- <span class="icon"><HeroiconsPower /></span>
271
- <span>Sign out</span>
178
+ <transition-group name="list" tag="ul" class="ac-vscrollbar" ref="dropdownItems"
179
+ :style="{ maxHeight: dropDownSectionHeight }">
180
+ <li v-for="(org, idx) in formattedOrganizations" :key="org.username">
181
+ <a class="is-flex is-align-items-center" @click="onOrganizationClick(org.username)">
182
+ <div class="width-30 height-30 image">
183
+ <img :src="org.avatar_url" class="ac-user-profile is-rounded" alt="icon" />
184
+ </div>
185
+ <div class="is-flex is-align-items-center is-justify-content-space-between is-fullwidth ml-10">
186
+ <div class="org-info">
187
+ <strong :title="org.username" class="line-break-anywhere is-ellipsis-1">{{ org.username }}</strong>
188
+ <p>
189
+ {{
190
+ org.isPersonalAccount
191
+ ? "Personal Account"
192
+ : "Organization"
193
+ }}
194
+ </p>
195
+ </div>
196
+ <span v-if="idx === 0" class="material-icons font-size-18 ml-10 is-pulled-right">
197
+ <HeroiconsCheck />
198
+ </span>
199
+ </div>
272
200
  </a>
273
201
  </li>
274
- <!-- <li key="theme" v-if="showThemeMode">
202
+ </transition-group>
203
+ </li>
204
+ <li v-if="isLoggedinUserAdmin || user.is_admin" key="site-admin">
205
+ <a data-testid="site-admin-link" :href="`${accountsDomain}/admin`"><span class="icon">
206
+ <HeroiconsWrenchScrewdriver />
207
+ </span><span>Site Administration</span></a>
208
+ </li>
209
+ <li key="signout" @click="$emit('on-logout')">
210
+ <a data-testid="user-logout-link" :href="`${accountsDomain}/user/logout`">
211
+ <span class="icon">
212
+ <HeroiconsPower />
213
+ </span>
214
+ <span>Sign out</span>
215
+ </a>
216
+ </li>
217
+ <!-- <li key="theme" v-if="showThemeMode">
275
218
  <theme-mode @set:theme="setTheme" />
276
219
  </li> -->
277
220
  </transition-group>
@@ -70,13 +70,13 @@ const getSanitizedHtml = (content: string) => {
70
70
  .ac-notification {
71
71
  background-color: $primary-95;
72
72
  font-size: 13px;
73
- color: $primary;
73
+ color: $ac-primary;
74
74
  min-height: 36px;
75
75
  display: flex;
76
76
  align-items: center;
77
77
  padding: 8px 16px;
78
78
  overflow: hidden;
79
- border: 1px solid $primary;
79
+ border: 1px solid $ac-primary;
80
80
  border-radius: 4px;
81
81
  justify-content: flex-start;
82
82
  position: relative;
@@ -84,7 +84,7 @@ const getSanitizedHtml = (content: string) => {
84
84
  min-width: 280px;
85
85
 
86
86
  p {
87
- color: $primary;
87
+ color: $ac-primary;
88
88
  margin-bottom: 0;
89
89
 
90
90
  .close-icon {
@@ -94,7 +94,7 @@ const getSanitizedHtml = (content: string) => {
94
94
 
95
95
  a {
96
96
  text-decoration: underline;
97
- color: $primary;
97
+ color: $ac-primary;
98
98
 
99
99
  &:hover {
100
100
  color: hsla(
@@ -151,16 +151,16 @@ const getSanitizedHtml = (content: string) => {
151
151
  0.2
152
152
  );
153
153
  color: $white-100;
154
- border-color: $primary;
154
+ border-color: $ac-primary;
155
155
 
156
156
  p {
157
- color: $primary;
157
+ color: $ac-primary;
158
158
 
159
159
  a {
160
- color: $primary;
160
+ color: $ac-primary;
161
161
 
162
162
  &:hover {
163
- color: $primary;
163
+ color: $ac-primary;
164
164
  opacity: 0.8;
165
165
  }
166
166
  }
@@ -256,7 +256,7 @@ AC Toast
256
256
 
257
257
  // is-primary
258
258
  .ac-toast.is-primary {
259
- @include acToast($primary);
259
+ @include acToast($ac-primary);
260
260
  }
261
261
 
262
262
  // is-info
@@ -183,11 +183,11 @@ watch(
183
183
  font-weight: 500;
184
184
  border-radius: 4px;
185
185
  border: 1px solid $color-border;
186
- color: $primary;
186
+ color: $ac-primary;
187
187
  margin-left: 4px;
188
188
 
189
189
  &:hover {
190
- background-color: $primary !important;
190
+ background-color: $ac-primary !important;
191
191
  color: $white-100;
192
192
  border: 1px solid $color-border;
193
193
  }
@@ -201,7 +201,7 @@ watch(
201
201
  }
202
202
 
203
203
  &.is-current {
204
- background-color: $primary;
204
+ background-color: $ac-primary;
205
205
  color: $white-100;
206
206
  }
207
207
  }
@@ -232,7 +232,7 @@ watch(
232
232
  &:focus,
233
233
  &:active,
234
234
  &:focus-visible {
235
- border: 1px solid $primary;
235
+ border: 1px solid $ac-primary;
236
236
  outline: none;
237
237
  }
238
238
  }
@@ -88,7 +88,7 @@ ul {
88
88
  cursor: pointer;
89
89
  strong {
90
90
  /* colors/white */
91
- color: #ffffff;
91
+ color: $white-100;
92
92
  display: flex;
93
93
  align-items: center;
94
94
 
@@ -105,7 +105,7 @@ ul {
105
105
  color: $primary-80;
106
106
  font-size: 16px;
107
107
  &.is-active {
108
- background-color: $primary;
108
+ background-color: $ac-primary;
109
109
  color: $white-100;
110
110
  border: 1px solid $color-border;
111
111
  }
@@ -119,7 +119,7 @@ ul {
119
119
  &.is-active {
120
120
  strong {
121
121
  .step-count {
122
- background-color: $primary;
122
+ background-color: $ac-primary;
123
123
  color: $white-100;
124
124
  border: 1px solid $color-border;
125
125
  }
@@ -91,7 +91,7 @@ const isFullTableLoaderActive = computed(() => {
91
91
  // INFO TABLE START
92
92
  .table.ac-info-table {
93
93
  background-color: transparent;
94
- border-top: 1px solid $color-border-light;
94
+ border-top: 1px solid $color-border;
95
95
 
96
96
  &.is-fullwidth {
97
97
  tbody {