@appscode/design-system 1.0.43-alpha.20 → 1.0.43-alpha.201

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 (127) hide show
  1. package/base/utilities/_all.scss +6 -0
  2. package/base/utilities/_default.scss +298 -57
  3. package/base/utilities/_derived-variables.scss +0 -1
  4. package/base/utilities/_initial-variables.scss +16 -10
  5. package/base/utilities/_mixin.scss +1 -17
  6. package/base/utilities/_typography.scss +12 -2
  7. package/base/utilities/dark-theme.scss +9 -147
  8. package/components/_ac-accordion.scss +8 -4
  9. package/components/_ac-alert-box.scss +13 -5
  10. package/components/_ac-card.scss +33 -6
  11. package/components/_ac-code-highlight.scss +5 -1
  12. package/components/_ac-content-layout.scss +2 -2
  13. package/components/_ac-input.scss +63 -23
  14. package/components/_ac-modal.scss +1 -1
  15. package/components/_ac-multi-select.scss +187 -5
  16. package/components/_ac-options.scss +24 -9
  17. package/components/_ac-select-box.scss +13 -3
  18. package/components/_ac-table.scss +7 -5
  19. package/components/_ac-tabs.scss +33 -5
  20. package/components/_ac-terminal.scss +270 -0
  21. package/components/_all.scss +35 -0
  22. package/components/_app-drawer.scss +2 -2
  23. package/components/_breadcumb.scss +2 -0
  24. package/components/_buttons.scss +46 -37
  25. package/components/_card-body-wrapper.scss +2 -2
  26. package/components/_dashboard-header.scss +32 -0
  27. package/components/_direct-deploy.scss +69 -0
  28. package/components/_go-to-top.scss +1 -1
  29. package/components/_graph.scss +45 -0
  30. package/components/_image-upload.scss +5 -3
  31. package/components/_left-sidebar-menu.scss +115 -64
  32. package/components/_monaco-editor.scss +1 -1
  33. package/components/_navbar.scss +125 -7
  34. package/components/_overview-info.scss +3 -3
  35. package/components/_pagination.scss +8 -0
  36. package/components/_payment-card.scss +10 -1
  37. package/components/_preview-modal.scss +18 -5
  38. package/components/_pricing-table.scss +1 -1
  39. package/components/_progress-bar.scss +4 -4
  40. package/components/_subscription-card.scss +11 -4
  41. package/components/_table-of-content.scss +1 -1
  42. package/components/_tfa.scss +69 -0
  43. package/components/_transitions.scss +261 -0
  44. package/components/_wizard.scss +16 -3
  45. package/components/bbum/_card-team.scss +1 -1
  46. package/components/bbum/_information-center.scss +15 -1
  47. package/components/bbum/_sign-up-notification.scss +1 -1
  48. package/components/bbum/_single-post-preview.scss +1 -1
  49. package/components/bbum/_user-profile.scss +2 -3
  50. package/components/ui-builder/_ui-builder.scss +43 -3
  51. package/components/ui-builder/_vue-open-api.scss +104 -0
  52. package/layouts/_all.scss +2 -0
  53. package/layouts/_code-preview.scss +5 -2
  54. package/main.scss +4 -54
  55. package/package.json +2 -7
  56. package/plugins/theme.js +4 -0
  57. package/plugins/time-convert.js +49 -0
  58. package/plugins/vue-toaster.js +3 -0
  59. package/vue-components/v2/banner/Banner.vue +2 -2
  60. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  61. package/vue-components/v2/button/Button.vue +5 -0
  62. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  63. package/vue-components/v2/card/Card.vue +1 -0
  64. package/vue-components/v2/card/PaymentCards.vue +11 -2
  65. package/vue-components/v2/content/ContentTable.vue +12 -7
  66. package/vue-components/v2/editor/Editor.vue +38 -5
  67. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  68. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  69. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  70. package/vue-components/v2/form-fields/Input.vue +1 -1
  71. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  72. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  73. package/vue-components/v2/modal/Modal.vue +38 -4
  74. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  75. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  76. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  77. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  78. package/vue-components/v2/navbar/User.vue +229 -17
  79. package/vue-components/v2/notification/Notification.vue +101 -0
  80. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  81. package/vue-components/v2/pagination/Pagination.vue +16 -3
  82. package/vue-components/v2/preloader/Preloader.vue +5 -5
  83. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  84. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  85. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  86. package/vue-components/v2/tab/TabItem.vue +1 -1
  87. package/vue-components/v2/table/Table.vue +44 -8
  88. package/vue-components/v2/table/TableRow.vue +12 -2
  89. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  90. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  91. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  92. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  93. package/vue-components/v3/button/Button.vue +5 -0
  94. package/vue-components/v3/content/ContentTable.vue +5 -0
  95. package/vue-components/v3/editor/Editor.vue +36 -13
  96. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  97. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  98. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  99. package/vue-components/v3/form/Form.vue +63 -0
  100. package/vue-components/v3/form-fields/Input.vue +11 -10
  101. package/vue-components/v3/header/HeaderItem.vue +5 -0
  102. package/vue-components/v3/header/HeaderItems.vue +5 -0
  103. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  104. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  105. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  106. package/vue-components/v3/modal/Modal.vue +35 -3
  107. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  108. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  109. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  110. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  111. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  112. package/vue-components/v3/navbar/User.vue +242 -18
  113. package/vue-components/v3/notification/Notification.vue +98 -0
  114. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  115. package/vue-components/v3/pagination/Pagination.vue +16 -3
  116. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  117. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  118. package/vue-components/v3/tab/TabItem.vue +1 -1
  119. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  120. package/vue-components/v3/table/Table.vue +35 -12
  121. package/vue-components/v3/table/TableContainer.vue +34 -0
  122. package/vue-components/v3/table/TableRow.vue +16 -2
  123. package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
  124. package/vue-components/v3/table/table-cell/GenericCell.vue +62 -0
  125. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  126. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  127. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -0,0 +1,270 @@
1
+ // terminal scss start
2
+ .ac-terminal {
3
+ width: 100%;
4
+
5
+ .terminal-body {
6
+ font-family: "Inconsolata", monospace;
7
+ background-color: var(--dark-bg-light);
8
+ height: 100%;
9
+ color: $ac-white;
10
+
11
+ strong {
12
+ color: $ac-white;
13
+ }
14
+ }
15
+ }
16
+
17
+ .ac-terminal {
18
+ border-top: 1px solid var(--ac-white-light);
19
+ padding: 0;
20
+ position: fixed;
21
+ width: calc(100% - 270px);
22
+ bottom: 0;
23
+ background-color: $ac-white;
24
+ color: $ac-white;
25
+ font-size: 13px;
26
+ height: 360px;
27
+ z-index: 999;
28
+ transition: 0.3s ease-in-out;
29
+ &.is-collapsed {
30
+ height: 40px !important;
31
+ bottom: 0px;
32
+ .terminal-setting,
33
+ .terminal-body {
34
+ opacity: 0;
35
+ visibility: hidden;
36
+ }
37
+ }
38
+ .resize-handler {
39
+ width: 100%;
40
+ position: absolute;
41
+ background: transparent;
42
+ z-index: 9;
43
+ cursor: row-resize;
44
+ top: -15px;
45
+ &:hover {
46
+ border-bottom: 3px solid $ac-white-light;
47
+ }
48
+ }
49
+ .terminal-header {
50
+ border-top: 1px solid $ac-white-lighter;
51
+ box-shadow: 1px -2px 5px 1px rgba(0, 0, 0, 0.08%);
52
+ .tabs {
53
+ padding: 0 20px 0 20px;
54
+ background-color: $ac-white-lighter;
55
+ overflow: inherit;
56
+ height: 40px;
57
+ ul {
58
+ border-bottom: none;
59
+ padding-left: 0;
60
+ max-width: 1340px;
61
+ overflow-x: auto;
62
+ overflow-y: hidden;
63
+ li {
64
+ a {
65
+ margin-bottom: 0 !important;
66
+ }
67
+ }
68
+ &::-webkit-scrollbar {
69
+ border-radius: 50px;
70
+ height: 3px;
71
+ }
72
+
73
+ &::-webkit-scrollbar:hover {
74
+ height: 7px;
75
+ }
76
+
77
+ &::-webkit-scrollbar-thumb {
78
+ background-color: $ac-gray-light;
79
+ border-radius: 50px;
80
+ height: 2px !important;
81
+ }
82
+
83
+ &::-webkit-scrollbar-thumb:hover {
84
+ background-color: $ac-gray-light;
85
+ }
86
+
87
+ &:hover::-webkit-scrollbar-corner {
88
+ height: 40px;
89
+ }
90
+ .is-active {
91
+ box-shadow: none !important;
92
+ margin-right: 0 !important;
93
+ &:after {
94
+ height: 2px;
95
+ }
96
+ a {
97
+ background-color: $ac-white;
98
+ }
99
+ }
100
+ li:not(.is-active) {
101
+ margin-right: -1px;
102
+ border-right: 1px solid $ac-white-lighter;
103
+ }
104
+ li {
105
+ a {
106
+ margin-bottom: 0px;
107
+ font-size: 13px;
108
+ border-radius: 0;
109
+ padding: 5px 10px 5px 20px;
110
+ border: none;
111
+ height: 40px;
112
+ .name-of-tab {
113
+ width: 120px;
114
+ overflow: hidden;
115
+ }
116
+ .terminal-icon {
117
+ img {
118
+ width: 15px;
119
+ margin-right: 10px;
120
+ margin-top: 5px;
121
+ }
122
+ }
123
+
124
+ .button {
125
+ img {
126
+ width: 10px;
127
+ }
128
+ }
129
+ }
130
+ }
131
+ }
132
+ .options-items {
133
+ top: 15px;
134
+ left: 40px;
135
+ .items-inner {
136
+ border: none;
137
+ li {
138
+ border: none;
139
+ border-right: none !important;
140
+ border-bottom: 1px solid $ac-white-lighter;
141
+ width: 100%;
142
+ &:last-child {
143
+ border-bottom: none;
144
+ }
145
+ a {
146
+ font-size: 13px;
147
+ padding: 10px 20px;
148
+ &:hover {
149
+ color: $ac-primary !important;
150
+ }
151
+ }
152
+ }
153
+ }
154
+ }
155
+
156
+ .right-control {
157
+ .button {
158
+ .fa {
159
+ font-size: 20px;
160
+ }
161
+ img {
162
+ width: 11px;
163
+ }
164
+ }
165
+ }
166
+ }
167
+ }
168
+ .terminal-setting {
169
+ background-color: var(--dark-bg);
170
+ padding: 5px 20px;
171
+
172
+ .left-content {
173
+ .ac-select-box-wrapper {
174
+ margin-right: 10px;
175
+ .multi-select-wrapper {
176
+ min-width: 200px;
177
+ }
178
+ .multiselect .multiselect__tags .multiselect__input,
179
+ .multiselect .multiselect__tags .multiselect__single {
180
+ background-color: #3b3030;
181
+ }
182
+ }
183
+ }
184
+
185
+ .right-content {
186
+ .status-message {
187
+ background-color: #666666 !important;
188
+ text-align: center;
189
+ padding: 4px 20px;
190
+ border-radius: 4px;
191
+ color: #ffffff !important;
192
+ text-transform: uppercase;
193
+ &.is-success {
194
+ background-color: #27b064 !important;
195
+ }
196
+ &.is-danger {
197
+ background-color: $ac-red !important;
198
+ }
199
+ }
200
+ }
201
+ }
202
+ .terminal-body {
203
+ p {
204
+ font-family: Fira Code;
205
+ .code-static {
206
+ color: #0ff05c;
207
+ font-weight: 500;
208
+ }
209
+
210
+ .code-input {
211
+ color: #acd9ff;
212
+ }
213
+ }
214
+ }
215
+ .button {
216
+ &.is-transparent {
217
+ &:hover {
218
+ background-color: $ac-white-light;
219
+ }
220
+ }
221
+ }
222
+ .multiselect.multiselect--active {
223
+ .multiselect__tags {
224
+ border: 1px solid $ac-white !important;
225
+ .multiselect__input {
226
+ color: $ac-white !important;
227
+ }
228
+ }
229
+ }
230
+ .multiselect .multiselect__tags {
231
+ background-color: $ac-color-text;
232
+ border: 1px solid $ac-color-value;
233
+ span {
234
+ color: $ac-white;
235
+ }
236
+ }
237
+ }
238
+
239
+ // dark theme start
240
+ .is-dark-theme {
241
+ // ac-terminal
242
+ .ac-terminal {
243
+ .terminal-setting {
244
+ --ac-color-value: var(--dark-bg-light);
245
+
246
+ .left-content .ac-select-box-wrapper .multiselect .multiselect__tags {
247
+ .multiselect__input {
248
+ background-color: var(--dark-bg-light);
249
+ color: var(--ac-white-text);
250
+ }
251
+
252
+ .multiselect__single {
253
+ background-color: var(--dark-bg-light);
254
+ color: var(--ac-white-text);
255
+ }
256
+ }
257
+ }
258
+
259
+ .multiselect {
260
+ .multiselect__tags {
261
+ background-color: transparent;
262
+
263
+ span {
264
+ color: var(--ac-white-text);
265
+ }
266
+ }
267
+ }
268
+ }
269
+ }
270
+ // dark theme end
@@ -0,0 +1,35 @@
1
+ @import "ac-alert-box";
2
+ @import "ac-accordion";
3
+ @import "buttons";
4
+ @import "ac-card";
5
+ @import "breadcumb";
6
+ @import "ac-multi-select";
7
+ @import "ac-code-highlight";
8
+ @import "navbar";
9
+ @import "app-drawer";
10
+ @import "ac-drag";
11
+ @import "left-sidebar-menu";
12
+ @import "ac-input";
13
+ @import "ac-content-layout";
14
+ @import "ac-table";
15
+ @import "graph";
16
+ @import "ac-modal";
17
+ @import "payment-card";
18
+ @import "pagination";
19
+ @import "ac-options";
20
+ @import "image-upload";
21
+ @import "ac-alert-box";
22
+ @import "dashboard-header";
23
+ @import "go-to-top";
24
+ @import "ac-toaster/ac-toasted";
25
+ @import "preview-modal";
26
+ @import "bbum/post";
27
+ @import "bbum/single-post-preview";
28
+ @import "bbum/user-profile";
29
+ @import "bbum/sign-up-notification";
30
+ @import "bbum/activities-header";
31
+ @import "bbum/card-team";
32
+ @import "bbum/information-center";
33
+ @import "bbum/left-sidebar";
34
+ @import "ac-tags";
35
+ @import "ui-builder/ui-builder";
@@ -9,7 +9,7 @@
9
9
  user-select: none;
10
10
 
11
11
  &:hover {
12
- background-color: #bcd8eb;
12
+ background-color: rgba(255, 255, 255, 0.7);
13
13
  cursor: pointer;
14
14
  }
15
15
 
@@ -50,7 +50,7 @@
50
50
  .media-content {
51
51
  .content {
52
52
  p {
53
- color: #fff;
53
+ color: $ac-white;
54
54
  }
55
55
  }
56
56
  }
@@ -7,6 +7,8 @@
7
7
  height: 50px;
8
8
  background-color: $ac-white;
9
9
  z-index: 998;
10
+ display: flex;
11
+ align-items: center;
10
12
  }
11
13
 
12
14
  .breadcrumb {
@@ -60,8 +60,12 @@
60
60
  color: $ac-primary;
61
61
  padding: 2px 6px;
62
62
  border-radius: 4px;
63
- width: 28px;
64
- height: 28px;
63
+ width: 20px;
64
+ height: 20px;
65
+ display: flex;
66
+ align-items: center;
67
+ justify-content: center;
68
+ font-size: 12px;
65
69
  }
66
70
 
67
71
  &.is-small {
@@ -127,7 +131,11 @@
127
131
  width: 52px;
128
132
  height: 52px;
129
133
  padding: 0;
130
-
134
+ &:hover {
135
+ svg {
136
+ color: $ac-white;
137
+ }
138
+ }
131
139
  &.is-gray {
132
140
  background-color: $ac-white-light;
133
141
  color: $ac-gray-lightest;
@@ -154,7 +162,7 @@
154
162
 
155
163
  &.is-transparent {
156
164
  background-color: transparent;
157
- color: #666;
165
+ color: $ac-gray-darker;
158
166
 
159
167
  &:hover {
160
168
  background-color: $ac-white-lighter;
@@ -169,7 +177,7 @@
169
177
 
170
178
  &.transparent-bg {
171
179
  background-color: transparent;
172
- border: 1px solid $ac-border;
180
+ border: 1px solid $ac-label-text;
173
181
 
174
182
  img {
175
183
  &:hover {
@@ -210,7 +218,8 @@
210
218
  border: none;
211
219
  font-size: 14px;
212
220
  font-weight: 500;
213
- color: $ac-gray-lightest;
221
+ background-color: transparent;
222
+ color: $ac-color-text;
214
223
 
215
224
  &.is-primary {
216
225
  background-color: transparent;
@@ -405,33 +414,6 @@
405
414
  }
406
415
  }
407
416
 
408
- // group buttons
409
- .buttons {
410
- &.are-medium {
411
- .button {
412
- &.ac-button {
413
- @extend .is-medium;
414
- }
415
- }
416
- }
417
-
418
- &.are-small {
419
- .button {
420
- &.ac-button {
421
- @extend .is-small;
422
- }
423
- }
424
- }
425
-
426
- &.are-large {
427
- .button {
428
- &.ac-button {
429
- @extend .is-large;
430
- }
431
- }
432
- }
433
- }
434
-
435
417
  .ac-play-button-wrapper {
436
418
  display: flex;
437
419
  align-items: center;
@@ -471,7 +453,7 @@
471
453
  // counter button start
472
454
  .ac-counter-button {
473
455
  background-color: transparent;
474
- border: 1px solid $ac-border;
456
+ border: 1px solid $ac-label-text;
475
457
  border-radius: 4px;
476
458
  height: 46px;
477
459
  overflow: hidden;
@@ -518,13 +500,13 @@
518
500
  .ac-counter-arrow-wrapper {
519
501
  height: 100%;
520
502
  color: $ac-color-text;
521
- border-left: 1px solid $ac-border;
503
+ border-left: 1px solid $ac-label-text;
522
504
 
523
505
  .ac-counter-arrow {
524
506
  background-color: transparent;
525
507
  border: none;
526
508
  cursor: pointer;
527
- color: $ac-border;
509
+ color: $ac-label-text;
528
510
  height: 23px;
529
511
 
530
512
  &:hover {
@@ -532,7 +514,7 @@
532
514
  }
533
515
 
534
516
  &:first-child {
535
- border-bottom: 1px solid $ac-border;
517
+ border-bottom: 1px solid $ac-label-text;
536
518
  }
537
519
  }
538
520
  }
@@ -601,6 +583,33 @@
601
583
  }
602
584
  }
603
585
 
586
+ // dark theme start
587
+ .is-dark-theme {
588
+ .button.ac-button.is-primary.is-light {
589
+ background-color: $ac-primary;
590
+ color: $ac-white;
591
+ &:hover {
592
+ opacity: 0.8;
593
+ }
594
+ }
595
+ .button.ac-button.is-danger.is-light {
596
+ background-color: $ac-danger;
597
+ color: $ac-white;
598
+ &:hover {
599
+ opacity: 0.8;
600
+ }
601
+ }
602
+ .button.ac-button {
603
+ --ac-white: #ffffff;
604
+ &.is-white {
605
+ --ac-white: #2e323c;
606
+ }
607
+ }
608
+ .button.ac-button.is-text {
609
+ background-color: transparent;
610
+ }
611
+ }
612
+ // dark theme end
604
613
  /****************************************
605
614
  Responsive Classes
606
615
  *****************************************/
@@ -4,7 +4,7 @@
4
4
  box-shadow: none;
5
5
 
6
6
  .card-header {
7
- background-color: $table-header;
7
+ background-color: $ac-blue-light;
8
8
  border-radius: 4px 4px 0px 0px;
9
9
  padding: 10px 20px;
10
10
  box-shadow: none;
@@ -24,7 +24,7 @@
24
24
  font-weight: normal;
25
25
  font-size: 14px;
26
26
  line-height: 16px;
27
- color: #6f6f8d;
27
+ color: $ac-color-value;
28
28
  margin-top: 10px;
29
29
  }
30
30
  }
@@ -81,3 +81,35 @@
81
81
  }
82
82
  }
83
83
  }
84
+
85
+ .resource {
86
+ display: flex;
87
+ align-items: center;
88
+ border-left: 1px solid $ac-white-light;
89
+ padding: 0 1.5rem;
90
+ margin-top: -10px;
91
+ margin-bottom: -10px;
92
+ .r-icon {
93
+ display: flex;
94
+ align-items: center;
95
+ max-width: 40px;
96
+ }
97
+
98
+ .r-data {
99
+ margin-left: 0.8rem;
100
+ .request,
101
+ .limit {
102
+ font-weight: 500;
103
+ min-width: 50px;
104
+ text-align: center;
105
+ }
106
+ .request {
107
+ font-weight: 300;
108
+ }
109
+ hr {
110
+ margin: 0;
111
+ padding: 0;
112
+ background-color: $ac-white-light;
113
+ }
114
+ }
115
+ }
@@ -0,0 +1,69 @@
1
+ .direct-deploy {
2
+ h5 {
3
+ font-weight: 500;
4
+ font-size: 18px;
5
+ line-height: 21px;
6
+ color: $ac-color-heading;
7
+ margin-bottom: 10px;
8
+ .fa {
9
+ color: $ac-primary;
10
+ }
11
+ }
12
+
13
+ p {
14
+ font-size: 14px;
15
+ line-height: 160%;
16
+ color: $ac-color-heading;
17
+ margin-bottom: 20px;
18
+ }
19
+
20
+ .check-permission {
21
+ font-weight: normal;
22
+ font-size: 14px;
23
+ line-height: 16px;
24
+ color: $ac-color-heading;
25
+ }
26
+
27
+ .button {
28
+ margin: 10px 0;
29
+ }
30
+
31
+ .msg {
32
+ font-size: 12px;
33
+ line-height: 14px;
34
+ color: $ac-color-value;
35
+ }
36
+ .buttons {
37
+ &.is-gray {
38
+ .button {
39
+ &.ac-primary {
40
+ background-color: $ac-blue-light;
41
+ }
42
+ }
43
+ }
44
+ }
45
+ }
46
+
47
+ h5 {
48
+ &.toc-title {
49
+ font-style: normal;
50
+ font-weight: 500;
51
+ font-size: 16px;
52
+ line-height: 19px;
53
+ color: $ac-color-value;
54
+ }
55
+ }
56
+ .is-gray {
57
+ .button {
58
+ border: none;
59
+ background-color: $ac-blue-light;
60
+ }
61
+ }
62
+
63
+ .card-content {
64
+ &.is-table-of-content {
65
+ display: grid;
66
+ grid-template-columns: 65% 35%;
67
+ grid-gap: 15px;
68
+ }
69
+ }
@@ -11,7 +11,7 @@
11
11
  line-height: 40px;
12
12
  border-radius: 50%;
13
13
  color: $ac-white;
14
- background-color: rgba($ac-primary, 0.5);
14
+ background-color: rgba(25, 113, 189, 0.5);
15
15
  border: none;
16
16
  opacity: 0;
17
17
  cursor: pointer;
@@ -0,0 +1,45 @@
1
+ .graph-tooltip-wrapper {
2
+ background-color: var(--ac-white);
3
+ border: 1px solid var(--ac-white-light);
4
+
5
+ box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
6
+ border-radius: 4px;
7
+ overflow: hidden;
8
+ h6 {
9
+ padding: 10px 20px;
10
+ border-bottom: 1px solid var(--ac-white-light);
11
+ }
12
+ .table-wrapper {
13
+ padding: 10px 20px;
14
+ tr {
15
+ td {
16
+ &:first-child {
17
+ font-weight: 450;
18
+ padding-right: 10px;
19
+ color: var(--ac-text-heading);
20
+ }
21
+ padding: 4px 0;
22
+ font-size: 13px;
23
+ }
24
+ }
25
+ }
26
+ }
27
+
28
+ .is-hovering .label text tspan {
29
+ stroke: var(--ac-white);
30
+ fill: var(--ac-white);
31
+ stroke-width: 0.3px;
32
+ }
33
+ .is-selected .label text tspan {
34
+ stroke: var(--ac-white);
35
+ fill: var(--ac-white);
36
+ stroke-width: 0.3px;
37
+ }
38
+ .label text tspan {
39
+ stroke: var(--ac-black);
40
+ fill: var(--ac-black);
41
+ stroke-width: 0.3px;
42
+ }
43
+ .edgeLabel .label text tspan {
44
+ stroke-width: 0px;
45
+ }
@@ -1,6 +1,6 @@
1
1
  .ac-upload-image {
2
2
  background-color: $ac-bg;
3
- border: 1px dashed $ac-border;
3
+ border: 1px dashed $ac-label-text;
4
4
  border-radius: 4px;
5
5
  overflow: hidden;
6
6
 
@@ -22,21 +22,23 @@
22
22
  border-radius: 50%;
23
23
  overflow: hidden;
24
24
  margin: 0 auto 30px;
25
+ border: 1px solid $ac-white-light;
25
26
  }
26
27
 
27
28
  .drag-and-drop-msg {
28
29
  font-size: 13px;
30
+ color: $ac-color-value;
29
31
  font-weight: 400;
30
32
  margin-bottom: 10px;
31
33
 
32
34
  span {
33
- color: $ac-border;
35
+ color: $ac-label-text;
34
36
  }
35
37
  }
36
38
 
37
39
  .img-size-msg {
38
40
  font-size: 12px;
39
- color: $ac-border;
41
+ color: $ac-label-text;
40
42
  }
41
43
  }
42
44