@appscode/design-system 1.0.43-alpha.21 → 1.0.43-alpha.211

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 (132) 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 +313 -67
  4. package/base/utilities/_derived-variables.scss +6 -1
  5. package/base/utilities/_grid.scss +29 -0
  6. package/base/utilities/_initial-variables.scss +27 -17
  7. package/base/utilities/_mixin.scss +1 -17
  8. package/base/utilities/_typography.scss +18 -14
  9. package/base/utilities/dark-theme.scss +9 -145
  10. package/components/_ac-accordion.scss +14 -5
  11. package/components/_ac-alert-box.scss +41 -7
  12. package/components/_ac-card.scss +48 -10
  13. package/components/_ac-code-highlight.scss +5 -1
  14. package/components/_ac-content-layout.scss +2 -2
  15. package/components/_ac-drag.scss +2 -0
  16. package/components/_ac-input.scss +64 -23
  17. package/components/_ac-modal.scss +1 -1
  18. package/components/_ac-multi-select.scss +247 -9
  19. package/components/_ac-options.scss +24 -9
  20. package/components/_ac-select-box.scss +13 -3
  21. package/components/_ac-table.scss +7 -5
  22. package/components/_ac-tabs.scss +46 -5
  23. package/components/_ac-terminal.scss +270 -0
  24. package/components/_all.scss +27 -0
  25. package/components/_app-drawer.scss +2 -2
  26. package/components/_breadcumb.scss +2 -0
  27. package/components/_buttons.scss +50 -37
  28. package/components/_card-body-wrapper.scss +2 -2
  29. package/components/_dashboard-header.scss +32 -0
  30. package/components/_direct-deploy.scss +69 -0
  31. package/components/_go-to-top.scss +1 -1
  32. package/components/_graph.scss +45 -0
  33. package/components/_image-upload.scss +5 -3
  34. package/components/_left-sidebar-menu.scss +124 -73
  35. package/components/_monaco-editor.scss +1 -1
  36. package/components/_navbar.scss +170 -10
  37. package/components/_overview-info.scss +3 -3
  38. package/components/_pagination.scss +8 -0
  39. package/components/_payment-card.scss +10 -1
  40. package/components/_preview-modal.scss +18 -5
  41. package/components/_pricing-table.scss +1 -1
  42. package/components/_progress-bar.scss +4 -4
  43. package/components/_subscription-card.scss +11 -4
  44. package/components/_table-of-content.scss +1 -1
  45. package/components/_tfa.scss +69 -0
  46. package/components/_transitions.scss +261 -0
  47. package/components/_wizard.scss +16 -3
  48. package/components/bbum/_all.scss +9 -0
  49. package/components/bbum/_card-team.scss +1 -1
  50. package/components/bbum/_information-center.scss +15 -1
  51. package/components/bbum/_sign-up-notification.scss +1 -1
  52. package/components/bbum/_single-post-preview.scss +2 -2
  53. package/components/bbum/_user-profile.scss +2 -3
  54. package/components/ui-builder/_ui-builder.scss +76 -1
  55. package/components/ui-builder/_vue-open-api.scss +104 -0
  56. package/layouts/_all.scss +2 -0
  57. package/layouts/_code-preview.scss +5 -2
  58. package/main.scss +6 -54
  59. package/package.json +2 -7
  60. package/plugins/theme.js +4 -0
  61. package/plugins/time-convert.js +49 -0
  62. package/plugins/vue-toaster.js +3 -0
  63. package/vue-components/v2/banner/Banner.vue +2 -2
  64. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
  65. package/vue-components/v2/button/Button.vue +5 -0
  66. package/vue-components/v2/button/DownloadBtn.vue +45 -0
  67. package/vue-components/v2/card/Card.vue +1 -0
  68. package/vue-components/v2/card/PaymentCards.vue +11 -2
  69. package/vue-components/v2/content/ContentTable.vue +12 -7
  70. package/vue-components/v2/editor/Editor.vue +43 -24
  71. package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
  72. package/vue-components/v2/editor/MonacoEditor.vue +125 -0
  73. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
  74. package/vue-components/v2/form-fields/Input.vue +1 -1
  75. package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
  76. package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
  77. package/vue-components/v2/modal/Modal.vue +38 -4
  78. package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
  79. package/vue-components/v2/modals/JsonShowModal.vue +12 -2
  80. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  81. package/vue-components/v2/navbar/ThemeMode.vue +50 -44
  82. package/vue-components/v2/navbar/User.vue +229 -17
  83. package/vue-components/v2/notification/Notification.vue +101 -0
  84. package/vue-components/v2/notification/NotificationItem.vue +44 -0
  85. package/vue-components/v2/pagination/Pagination.vue +16 -3
  86. package/vue-components/v2/preloader/Preloader.vue +5 -5
  87. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  88. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  89. package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
  90. package/vue-components/v2/tab/TabItem.vue +1 -1
  91. package/vue-components/v2/table/Table.vue +44 -8
  92. package/vue-components/v2/table/TableRow.vue +12 -2
  93. package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
  94. package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
  95. package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
  96. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  97. package/vue-components/v3/button/Button.vue +6 -1
  98. package/vue-components/v3/content/ContentTable.vue +17 -2
  99. package/vue-components/v3/editor/Editor.vue +42 -33
  100. package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
  101. package/vue-components/v3/editor/MonacoEditor.vue +131 -0
  102. package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
  103. package/vue-components/v3/form/Form.vue +63 -0
  104. package/vue-components/v3/form-fields/Input.vue +11 -10
  105. package/vue-components/v3/header/HeaderItem.vue +5 -0
  106. package/vue-components/v3/header/HeaderItems.vue +5 -0
  107. package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
  108. package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
  109. package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
  110. package/vue-components/v3/modal/Modal.vue +38 -6
  111. package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
  112. package/vue-components/v3/modals/JsonShowModal.vue +25 -16
  113. package/vue-components/v3/modals/LongRunningTasksModal.vue +337 -0
  114. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  115. package/vue-components/v3/navbar/ThemeMode.vue +49 -47
  116. package/vue-components/v3/navbar/User.vue +242 -18
  117. package/vue-components/v3/notification/Notification.vue +98 -0
  118. package/vue-components/v3/notification/NotificationItem.vue +52 -0
  119. package/vue-components/v3/pagination/Pagination.vue +16 -3
  120. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  121. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  122. package/vue-components/v3/tab/TabItem.vue +1 -1
  123. package/vue-components/v3/table/MultiInfoTable.vue +143 -0
  124. package/vue-components/v3/table/Table.vue +40 -12
  125. package/vue-components/v3/table/TableContainer.vue +34 -0
  126. package/vue-components/v3/table/TableRow.vue +62 -3
  127. package/vue-components/v3/table/table-cell/CellValue.vue +28 -3
  128. package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
  129. package/vue-components/v3/table/table-cell/ObjectCell.vue +5 -1
  130. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
  131. package/vue-components/v3/tag/Tag.vue +1 -1
  132. package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
@@ -0,0 +1,261 @@
1
+ .sidebar-appear-enter-active,
2
+ .sidebar-appear-leave-active {
3
+ position: absolute;
4
+ width: 270px;
5
+ transition: all 0.2s ease;
6
+ }
7
+ .sidebar-appear-enter-from {
8
+ left: -100%;
9
+ opacity: 0;
10
+ }
11
+ .sidebar-appear-enter-to {
12
+ left: 0px;
13
+ opacity: 1;
14
+ }
15
+ .sidebar-appear-leave-from {
16
+ left: 0px;
17
+ opacity: 1;
18
+ }
19
+ .sidebar-appear-leave-to {
20
+ left: 100%;
21
+ opacity: 0;
22
+ }
23
+
24
+ .navbar-appear-enter-active,
25
+ .navbar-appear-leave-active {
26
+ position: absolute;
27
+ height: 50px;
28
+ transition: all 0.2s ease;
29
+ }
30
+ .navbar-appear-enter-from {
31
+ top: -100%;
32
+ opacity: 0;
33
+ }
34
+ .navbar-appear-enter-to {
35
+ top: 0px;
36
+ opacity: 1;
37
+ }
38
+ .navbar-appear-leave-from {
39
+ top: 0px;
40
+ opacity: 1;
41
+ }
42
+ .navbar-appear-leave-to {
43
+ top: 100%;
44
+ opacity: 0;
45
+ }
46
+
47
+ .nested-enter-active .inner,
48
+ .nested-leave-active .inner {
49
+ transition: all 0.2s ease-in-out;
50
+ }
51
+
52
+ .nested-enter-from .inner,
53
+ .nested-leave-to .inner {
54
+ transform: translateX(20px);
55
+ opacity: 0;
56
+ }
57
+
58
+ .slide-left-enter-active,
59
+ .slide-left-leave-active {
60
+ transition: all 0.3s ease-in-out;
61
+ }
62
+ .slide-left-enter-from {
63
+ transform: translateX(20px);
64
+ opacity: 0;
65
+ }
66
+ .slide-left-enter-to {
67
+ transform: translateX(0px);
68
+ opacity: 1;
69
+ }
70
+ .slide-left-leave-from {
71
+ transform: translateX(0px);
72
+ opacity: 1;
73
+ }
74
+ .slide-left-leave-to {
75
+ transform: translateX(-20px);
76
+ opacity: 0;
77
+ }
78
+
79
+ .slide-right-enter-active,
80
+ .slide-right-leave-active {
81
+ transition: all 0.2s ease-in-out;
82
+ }
83
+ .slide-right-enter-from {
84
+ transform: translateX(-20px);
85
+ opacity: 0;
86
+ }
87
+ .slide-right-enter-to {
88
+ transform: translateX(0px);
89
+ opacity: 1;
90
+ }
91
+ .slide-right-leave-from {
92
+ transform: translateX(0px);
93
+ opacity: 1;
94
+ }
95
+ .slide-right-leave-to {
96
+ transform: translateX(20px);
97
+ opacity: 0;
98
+ }
99
+
100
+ .slide-down-enter-active,
101
+ .slide-down-leave-active {
102
+ transition: all 0.2s ease-in-out;
103
+ }
104
+ .slide-down-enter-from {
105
+ transform: translateY(-10px);
106
+ opacity: 0;
107
+ }
108
+ .slide-down-enter-to {
109
+ transform: translateY(0px);
110
+ opacity: 1;
111
+ }
112
+ .slide-down-leave-from {
113
+ transform: translateY(0px);
114
+ opacity: 1;
115
+ }
116
+ .slide-down-leave-to {
117
+ transform: translateY(-10px);
118
+ opacity: 0;
119
+ }
120
+
121
+ .fade-enter-active,
122
+ .fade-leave-active {
123
+ transition: all 0.2s ease-in-out;
124
+ }
125
+ .fade-enter-from {
126
+ opacity: 0;
127
+ }
128
+ .fade-enter-to {
129
+ opacity: 1;
130
+ }
131
+ .fade-leave-from {
132
+ opacity: 1;
133
+ }
134
+ .fade-leave-to {
135
+ opacity: 0;
136
+ }
137
+
138
+ .list-move, /* apply transition to moving elements */
139
+ .list-enter-active,
140
+ .list-leave-active {
141
+ transition: all 0.5s ease;
142
+ }
143
+
144
+ .list-enter-from,
145
+ .list-leave-to {
146
+ opacity: 0;
147
+ transform: translateX(35px);
148
+ }
149
+
150
+ .list-leave-active {
151
+ position: absolute;
152
+ }
153
+
154
+ .overview-card-enter-active {
155
+ transition: all 0.2s ease-in-out;
156
+ }
157
+ .overview-card-leave-active {
158
+ transition: all 0.2s ease-in-out;
159
+ position: absolute;
160
+ }
161
+ .overview-card-enter-from {
162
+ transform: translateY(-20px);
163
+ opacity: 0;
164
+ }
165
+ .overview-card-enter-to {
166
+ transform: translateY(0px);
167
+ opacity: 1;
168
+ }
169
+ .overview-card-leave-from {
170
+ transform: translateY(0px);
171
+ opacity: 1;
172
+ }
173
+ .overview-card-leave-to {
174
+ transform: translateY(-10px);
175
+ opacity: 0;
176
+ }
177
+
178
+ .cluster-card-enter-active {
179
+ transition: all 0.2s ease-in-out;
180
+ }
181
+ .cluster-card-leave-active {
182
+ transition: all 0s;
183
+ position: absolute;
184
+ }
185
+ .cluster-card-enter-from {
186
+ transform: translateX(-20px);
187
+ opacity: 0;
188
+ }
189
+ .cluster-card-enter-to {
190
+ transform: translateX(0px);
191
+ opacity: 1;
192
+ }
193
+ .cluster-card-leave-from {
194
+ transform: translateX(0px);
195
+ opacity: 1;
196
+ }
197
+ .cluster-card-leave-to {
198
+ opacity: 0;
199
+ }
200
+
201
+ .dropdown-animate.dropdown-show-animation .dropdown-content {
202
+ animation: dropdownAnim 0.2s ease-in-out;
203
+ }
204
+ .dropdown-animate.dropdown-hide-animation .dropdown-content {
205
+ animation: dropdownAnim reverse 0.2s ease-in-out;
206
+ }
207
+
208
+ @keyframes dropdownAnim {
209
+ 0% {
210
+ opacity: 0;
211
+ transform: translateY(-10px);
212
+ }
213
+ 100% {
214
+ opacity: 1;
215
+ transform: translateY(0px);
216
+ }
217
+ }
218
+
219
+ .accordion-enter-active,
220
+ .accordion-leave-active {
221
+ transition: all 0.3s ease-in-out;
222
+ position: relative;
223
+ }
224
+ .accordion-enter-from {
225
+ top: -10px;
226
+ opacity: 0;
227
+ }
228
+ .accordion-enter-to {
229
+ top: 0px;
230
+ opacity: 1;
231
+ }
232
+ .accordion-leave-from {
233
+ top: 0px;
234
+ opacity: 1;
235
+ }
236
+ .accordion-leave-to {
237
+ top: -10px;
238
+ opacity: 0;
239
+ }
240
+
241
+ .fa.fa-spinner.spin {
242
+ -webkit-animation: spin 1s linear infinite;
243
+ -moz-animation: spinAnim 1s linear infinite;
244
+ animation: spinAnim 1s linear infinite;
245
+ }
246
+ @-moz-keyframes spinAnim {
247
+ 100% {
248
+ -moz-transform: rotate(360deg);
249
+ }
250
+ }
251
+ @-webkit-keyframes spinAnim {
252
+ 100% {
253
+ -webkit-transform: rotate(360deg);
254
+ }
255
+ }
256
+ @keyframes spinAnim {
257
+ 100% {
258
+ -webkit-transform: rotate(360deg);
259
+ transform: rotate(360deg);
260
+ }
261
+ }
@@ -121,6 +121,7 @@
121
121
  transition: 0.3s ease-in-out;
122
122
  position: relative;
123
123
  z-index: 1;
124
+ max-width: 250px;
124
125
 
125
126
  &.is-active-require-field {
126
127
  &:after {
@@ -572,7 +573,7 @@
572
573
  .wizard-title,
573
574
  .wizard-title.has-line {
574
575
  span {
575
- background-color: $ac-border;
576
+ background-color: $ac-label-text;
576
577
  }
577
578
  }
578
579
 
@@ -651,7 +652,7 @@ label {
651
652
  margin-top: -0.5px;
652
653
  width: 100%;
653
654
  height: 1px;
654
- background-color: $ac-input-bg-color;
655
+ background-color: $ac-blue-light;
655
656
  z-index: -1;
656
657
  }
657
658
  }
@@ -731,7 +732,7 @@ h5 {
731
732
  .card-checkbox {
732
733
  width: 358px;
733
734
  height: 115px;
734
- border: 1px solid $ac-border;
735
+ border: 1px solid $ac-label-text;
735
736
  }
736
737
 
737
738
  // checkbox card end
@@ -823,6 +824,18 @@ h5 {
823
824
  }
824
825
 
825
826
  // inline input end
827
+
828
+ // dark theme start
829
+ .is-dark-theme {
830
+ h6.wizard-title.has-line:after {
831
+ --ac-blue-light: $ac-color-value;
832
+ }
833
+
834
+ .ac-certificate-info {
835
+ --ac-bg-light-gray: var(--dark-bg-light);
836
+ }
837
+ }
838
+ // dark theme end
826
839
  /****************************************
827
840
  Responsive Classes
828
841
  *****************************************/
@@ -0,0 +1,9 @@
1
+ @import "activities-header";
2
+ @import "card-team";
3
+ @import "information-center";
4
+ @import "left-sidebar";
5
+ @import "mobile-desktop";
6
+ @import "post";
7
+ @import "sign-up-notification";
8
+ @import "single-post-preview";
9
+ @import "user-profile";
@@ -7,7 +7,7 @@
7
7
  0.03
8
8
  );
9
9
  border-radius: 4px;
10
- overflow: hidden;
10
+ // overflow: hidden;
11
11
  transition: 0.3s ease-in-out;
12
12
 
13
13
  &:hover {
@@ -133,7 +133,7 @@
133
133
  }
134
134
 
135
135
  .block-list {
136
- background-color: $ac-input-bg-color;
136
+ background-color: $ac-blue-light;
137
137
  padding: 7px;
138
138
  border-radius: 4px;
139
139
 
@@ -174,6 +174,20 @@
174
174
  top: 140px;
175
175
  }
176
176
  }
177
+
178
+ // dark theme start
179
+ .is-dark-theme {
180
+ .information-center {
181
+ .information-center-inner {
182
+ .info-body {
183
+ .block-list {
184
+ background-color: var(--dark-bg-light);
185
+ }
186
+ }
187
+ }
188
+ }
189
+ }
190
+ // dark theme end
177
191
  // Extra small devices (portrait phones, less than 576px)
178
192
  @media (max-width: 575.98px) {
179
193
  .information-center.width-300 {
@@ -68,7 +68,7 @@
68
68
  margin-bottom: 10px;
69
69
 
70
70
  a {
71
- color: #003466;
71
+ color: $ac-color-heading;
72
72
  text-decoration: underline;
73
73
  }
74
74
  }
@@ -135,9 +135,9 @@
135
135
  left: 20px;
136
136
 
137
137
  h2 {
138
- font-size: $ac-size-2;
138
+ font-size: $size-2;
139
139
  margin-bottom: 25px;
140
- color: #003466;
140
+ color: $ac-color-heading;
141
141
  }
142
142
  }
143
143
  }
@@ -10,7 +10,6 @@
10
10
  background-color: $ac-white;
11
11
  border-radius: 4px;
12
12
  overflow: hidden;
13
- padding: 10px;
14
13
  position: relative;
15
14
  z-index: 1;
16
15
  margin-bottom: 10px;
@@ -69,7 +68,7 @@
69
68
  font-size: 14px;
70
69
  color: $ac-color-text;
71
70
  line-height: 160%;
72
- margin-bottom: 20px;
71
+ margin-bottom: 10px;
73
72
  }
74
73
 
75
74
  .social-links {
@@ -103,7 +102,7 @@
103
102
  }
104
103
 
105
104
  img {
106
- max-width: 18px;
105
+ max-width: 15px;
107
106
  margin-right: 10px;
108
107
  }
109
108
  }
@@ -12,20 +12,36 @@
12
12
 
13
13
  .ui-builders-wrapper {
14
14
  width: 760px;
15
+
15
16
  h5 {
16
17
  margin-bottom: 10px;
17
18
  }
19
+
18
20
  p {
19
21
  font-size: 13px;
20
22
  margin-bottom: 10px;
21
23
  color: $ac-color-value;
22
24
  }
23
25
  }
26
+
24
27
  .key-value-save {
25
28
  display: grid;
26
29
  grid-template-columns: 1fr 1fr auto;
27
30
  grid-gap: 15px;
28
31
  }
32
+
33
+ .key-value-save-check {
34
+ display: grid;
35
+ grid-template-columns: 1fr 1fr auto auto;
36
+ grid-gap: 15px;
37
+ }
38
+
39
+ .key-save {
40
+ display: grid;
41
+ grid-template-columns: 1fr auto;
42
+ grid-gap: 15px;
43
+ }
44
+
29
45
  .value-list-save {
30
46
  display: grid;
31
47
  grid-template-columns: 1fr auto;
@@ -38,16 +54,20 @@
38
54
  padding-left: 20px;
39
55
  position: relative;
40
56
  z-index: 1;
57
+
41
58
  &:first-child {
42
59
  margin-left: -20px;
43
60
  }
61
+
44
62
  &.is-active {
45
63
  &::after {
46
64
  border: 1px dashed $ac-primary;
47
65
  }
66
+
48
67
  &::before {
49
68
  background-color: $ac-primary;
50
69
  }
70
+
51
71
  .nested-header {
52
72
  h6 {
53
73
  .collaps-icon {
@@ -57,11 +77,12 @@
57
77
  }
58
78
  }
59
79
  }
80
+
60
81
  &::after {
61
82
  position: absolute;
62
83
  content: "";
63
84
  left: 27px;
64
- top: 5px;
85
+ top: 10px;
65
86
  width: 1px;
66
87
  height: calc(100% - 20px);
67
88
  border: 1px dashed $ac-white-light;
@@ -79,15 +100,18 @@
79
100
  border-radius: 50%;
80
101
  z-index: -1;
81
102
  }
103
+
82
104
  .nested-header {
83
105
  display: flex;
84
106
  align-items: center;
85
107
  justify-content: space-between;
86
108
  margin-bottom: 5px;
109
+
87
110
  h6 {
88
111
  display: flex;
89
112
  align-items: center;
90
113
  cursor: pointer;
114
+
91
115
  .collaps-icon {
92
116
  width: 16px;
93
117
  height: 16px;
@@ -101,30 +125,46 @@
101
125
  cursor: pointer;
102
126
  background-color: $ac-white;
103
127
  color: $ac-color-value;
128
+
129
+ &.is-disabled {
130
+ cursor: not-allowed;
131
+ }
104
132
  }
105
133
  }
106
134
  }
135
+
107
136
  .nested-body {
108
137
  padding-left: 24px;
109
138
  }
110
139
  }
111
140
 
141
+ .is-visibility-hidden {
142
+ visibility: hidden !important;
143
+ height: 0 !important;
144
+ opacity: 0 !important;
145
+ }
146
+
112
147
  // nested elements end
113
148
 
114
149
  .table-wrapper {
115
150
  overflow-x: auto;
151
+
116
152
  .table-inner {
117
153
  min-width: 630px;
154
+
118
155
  .thead {
119
156
  background-color: $ac-white-lighter;
157
+
120
158
  .tr {
121
159
  .th {
122
160
  font-weight: 600;
123
161
  }
162
+
124
163
  border-top: 1px solid var(--ac-white-light);
125
164
  border-bottom: 1px solid var(--ac-white-light);
126
165
  }
127
166
  }
167
+
128
168
  .thead,
129
169
  .tbody {
130
170
  .tr {
@@ -149,6 +189,7 @@
149
189
  }
150
190
  }
151
191
  }
192
+
152
193
  .is-selected {
153
194
  border: 1px solid $ac-primary;
154
195
  border-bottom: 1px solid $ac-primary !important;
@@ -156,6 +197,13 @@
156
197
  }
157
198
  }
158
199
 
200
+ .is-collapsed {
201
+ &.ac-nested-elements::before,
202
+ &.ac-nested-elements::after {
203
+ display: none;
204
+ }
205
+ }
206
+
159
207
  // details with checkradio
160
208
  .details-with-checkradio-wrapper {
161
209
  display: grid;
@@ -163,6 +211,33 @@
163
211
  grid-gap: 15px;
164
212
  }
165
213
 
214
+ // dark theme start
215
+ .is-dark-theme {
216
+ .nested-body {
217
+ code {
218
+ background-color: var(--dark-bg-light);
219
+ }
220
+ }
221
+ }
222
+
223
+ //For resource input from
224
+ .resource-input {
225
+ display: grid;
226
+ grid-template-columns: 60px 1fr 1fr;
227
+ grid-gap: 15px;
228
+ align-items: center;
229
+ margin-bottom: 15px;
230
+
231
+ .label-text {
232
+ font-weight: 300;
233
+ }
234
+
235
+ .ac-single-input {
236
+ margin: 0;
237
+ }
238
+ }
239
+
240
+ // dark theme end
166
241
  /****************************************
167
242
  Responsive Classes
168
243
  *****************************************/
@@ -0,0 +1,104 @@
1
+ .vue-schema-form-array {
2
+ .nested-body {
3
+ // margin-bottom: 15px;
4
+ display: flex;
5
+
6
+ .form-left-item {
7
+ margin-right: 10px;
8
+ width: calc(100% - 92px);
9
+ }
10
+ }
11
+ }
12
+
13
+ .nested-header {
14
+ .tabs.ac-tabs {
15
+ margin-bottom: 0;
16
+ opacity: 0;
17
+ visibility: hidden;
18
+ transition: 0.3s ease-in-out;
19
+ }
20
+
21
+ &:hover {
22
+ .tabs.ac-tabs {
23
+ opacity: 1;
24
+ visibility: visible;
25
+ }
26
+ }
27
+ }
28
+
29
+ .vue-openapi-form {
30
+ margin-left: -20px;
31
+ .is-warning {
32
+ font-size: 12px;
33
+ color: #ea3d2f;
34
+ padding-left: 10px;
35
+ }
36
+
37
+ .ac-nested-elements {
38
+ &:first-child {
39
+ margin-left: 0;
40
+ }
41
+
42
+ .nested-body {
43
+ padding-left: 0px;
44
+ }
45
+
46
+ .nested-header {
47
+ width: 100%;
48
+ }
49
+ }
50
+
51
+ .ac-single-switch {
52
+ margin-left: -15px;
53
+ }
54
+
55
+ .ac-single-input {
56
+ margin-left: 25px;
57
+
58
+ &:last-child {
59
+ margin-bottom: 15px;
60
+ }
61
+ }
62
+ }
63
+
64
+ .vue-form-scema-body {
65
+ .left-content {
66
+ width: 650px;
67
+ background-color: $ac-white-lighter;
68
+ padding: 30px;
69
+ }
70
+
71
+ .right-content {
72
+ width: 100%;
73
+ margin-top: 30px;
74
+ }
75
+ }
76
+
77
+ .v-tooltip-open {
78
+ background-color: $ac-white;
79
+ }
80
+
81
+ .ac-nested-elements::after {
82
+ top: 25px;
83
+ width: 1px;
84
+ height: calc(100% - 50px);
85
+ }
86
+
87
+ .ac-nested-elements::before {
88
+ bottom: 12px;
89
+ }
90
+
91
+ .is-collapsed {
92
+ &.ac-nested-elements::before,
93
+ &.ac-nested-elements::after {
94
+ display: none;
95
+ }
96
+ }
97
+
98
+ .ui-builders-wrapper {
99
+ .ac-nested-elements::before {
100
+ bottom: 6px !important;
101
+ }
102
+ }
103
+
104
+ // for vue-tooltip
@@ -0,0 +1,2 @@
1
+ // @import "404";
2
+ @import "code-preview";