@appscode/design-system 1.1.0-beta.2 → 1.1.0-beta.3

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 (42) hide show
  1. package/base/_video-player.scss +65 -0
  2. package/base/utilities/_all.scss +5 -4
  3. package/base/utilities/_colors.scss +446 -0
  4. package/base/utilities/_customize-bulma.scss +23 -27
  5. package/base/utilities/_extended.scss +3 -2
  6. package/base/utilities/{_default.scss → _global.scss} +146 -298
  7. package/base/utilities/_layouts.scss +157 -0
  8. package/base/utilities/_spacing.scss +96 -0
  9. package/base/utilities/_typography.scss +34 -2
  10. package/components/_ac-accordion.scss +117 -117
  11. package/components/_ac-alert-box.scss +205 -262
  12. package/components/_ac-card.scss +72 -80
  13. package/components/_ac-input.scss +0 -482
  14. package/components/_ac-modal.scss +212 -212
  15. package/components/_ac-multi-select.scss +83 -54
  16. package/components/_ac-options.scss +122 -122
  17. package/components/_ac-table.scss +503 -502
  18. package/components/_ac-tabs.scss +4 -3
  19. package/components/_ac-tags.scss +116 -116
  20. package/components/_ac-terminal.scss +275 -231
  21. package/components/_all.scss +31 -28
  22. package/components/_app-drawer.scss +0 -134
  23. package/components/_breadcumb.scss +0 -71
  24. package/components/_buttons.scss +779 -779
  25. package/components/_dashboard-header.scss +0 -115
  26. package/components/_left-sidebar-menu.scss +346 -475
  27. package/components/_navbar.scss +786 -752
  28. package/components/_pagination.scss +9 -27
  29. package/components/_payment-card.scss +1 -1
  30. package/components/_widget-menu.scss +247 -247
  31. package/components/ui-builder/_ui-builder.scss +1 -1
  32. package/components/ui-builder/_vue-open-api.scss +512 -0
  33. package/main.scss +26 -10
  34. package/package.json +1 -1
  35. package/vue-components/v2/card/Card.vue +1 -1
  36. package/vue-components/v3/cards/Card.vue +1 -1
  37. package/vue-components/v3/cards/Vendor.vue +1 -1
  38. package/vue-components/v3/footer/FooterItem.vue +4 -1
  39. package/vue-components/v3/sidebar/Sidebar.vue +2 -2
  40. package/base/utilities/_derived-variables.scss +0 -24
  41. package/base/utilities/_initial-variables.scss +0 -217
  42. package/components/_basic-card.scss +0 -118
@@ -1,243 +1,286 @@
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: $white-100;
10
-
11
- // strong {
12
- // color: $white-100;
13
- // }
14
- // }
15
- // }
1
+ // terminal scss start
2
+ .ac-terminal {
3
+ width: 100%;
16
4
 
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: $white-100;
24
- // color: $white-100;
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 $primary-90;
47
- // }
48
- // }
49
- // .terminal-header {
50
- // border-top: 1px solid $white-100-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: $white-100-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
- // }
5
+ .terminal-body {
6
+ font-family: "Inconsolata", monospace;
7
+ background-color: var(--dark-bg-light);
8
+ height: 100%;
9
+ color: $white-100;
72
10
 
73
- // &::-webkit-scrollbar:hover {
74
- // height: 7px;
75
- // }
11
+ strong {
12
+ color: $white-100;
13
+ }
14
+ }
15
+ }
76
16
 
77
- // &::-webkit-scrollbar-thumb {
78
- // background-color: $ac-gray-light;
79
- // border-radius: 50px;
80
- // height: 2px !important;
81
- // }
17
+ .ac-terminal {
18
+ border-top: 1px solid var(--ac-white-light);
19
+ padding: 0;
20
+ position: fixed;
21
+ width: calc(100% - 250px);
22
+ bottom: 0;
23
+ background-color: $white-100;
24
+ color: $white-100;
25
+ font-size: 13px;
26
+ height: 360px;
27
+ z-index: 999;
28
+ transition: 0.3s ease-in-out;
82
29
 
83
- // &::-webkit-scrollbar-thumb:hover {
84
- // background-color: $ac-gray-light;
85
- // }
30
+ &.is-collapsed {
31
+ height: 40px !important;
32
+ bottom: 0px;
86
33
 
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: $white-100;
98
- // }
99
- // }
100
- // li:not(.is-active) {
101
- // margin-right: -1px;
102
- // border-right: 1px solid $white-100-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 $white-100-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: $primary !important;
150
- // }
151
- // }
152
- // }
153
- // }
154
- // }
34
+ .terminal-setting,
35
+ .terminal-body {
36
+ opacity: 0;
37
+ visibility: hidden;
38
+ }
39
+ }
155
40
 
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
- // }
41
+ .resize-handler {
42
+ width: 100%;
43
+ position: absolute;
44
+ background: transparent;
45
+ z-index: 9;
46
+ cursor: row-resize;
47
+ top: -15px;
184
48
 
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: $danger !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
- // }
49
+ &:hover {
50
+ border-bottom: 3px solid $primary-90;
51
+ }
52
+ }
209
53
 
210
- // .code-input {
211
- // color: #acd9ff;
212
- // }
213
- // }
214
- // }
215
- // .button {
216
- // &.is-transparent {
217
- // &:hover {
218
- // background-color: $primary-90;
219
- // }
220
- // }
221
- // }
222
- // .multiselect.multiselect--active {
223
- // .multiselect__tags {
224
- // border: 1px solid $white-100 !important;
225
- // .multiselect__input {
226
- // color: $white-100 !important;
227
- // }
228
- // }
229
- // }
230
- // .multiselect .multiselect__tags {
231
- // background-color: $primary-10;
232
- // border: 1px solid $primary-20;
233
- // span {
234
- // color: $white-100;
235
- // }
236
- // }
237
- // }
54
+ .terminal-header {
55
+ border-top: 1px solid $white-100-lighter;
56
+ box-shadow: 1px -2px 5px 1px rgba(0, 0, 0, 0.08%);
57
+ background-color: $primary-10;
58
+
59
+ .tabs {
60
+ padding: 0 20px 0 20px;
61
+ background-color: $white-100-lighter;
62
+ overflow: inherit;
63
+ height: 40px;
64
+
65
+ ul {
66
+ border-bottom: none;
67
+ padding-left: 0;
68
+ max-width: 1340px;
69
+ overflow-x: auto;
70
+ overflow-y: hidden;
71
+
72
+ li {
73
+ a {
74
+ margin-bottom: 0 !important;
75
+ }
76
+ }
77
+
78
+ &::-webkit-scrollbar {
79
+ border-radius: 50px;
80
+ height: 3px;
81
+ }
82
+
83
+ &::-webkit-scrollbar:hover {
84
+ height: 7px;
85
+ }
86
+
87
+ &::-webkit-scrollbar-thumb {
88
+ background-color: $ac-gray-light;
89
+ border-radius: 50px;
90
+ height: 2px !important;
91
+ }
92
+
93
+ &::-webkit-scrollbar-thumb:hover {
94
+ background-color: $ac-gray-light;
95
+ }
96
+
97
+ &:hover::-webkit-scrollbar-corner {
98
+ height: 40px;
99
+ }
100
+
101
+ .is-active {
102
+ box-shadow: none !important;
103
+ margin-right: 0 !important;
104
+
105
+ &:after {
106
+ height: 2px;
107
+ }
108
+
109
+ a {
110
+ background-color: $white-100;
111
+ }
112
+ }
113
+
114
+ li:not(.is-active) {
115
+ margin-right: -1px;
116
+ border-right: 1px solid $white-100-lighter;
117
+ }
118
+
119
+ li {
120
+ a {
121
+ margin-bottom: 0px;
122
+ font-size: 13px;
123
+ border-radius: 0;
124
+ padding: 5px 10px 5px 20px;
125
+ border: none;
126
+ height: 40px;
127
+ background-color: transparent !important;
128
+ color: $primary-97;
129
+
130
+ .name-of-tab {
131
+ width: 120px;
132
+ overflow: hidden;
133
+ }
134
+
135
+ .terminal-icon {
136
+ img {
137
+ width: 15px;
138
+ margin-right: 10px;
139
+ margin-top: 5px;
140
+ }
141
+ }
142
+
143
+ .button {
144
+ color: $primary-90;
145
+ }
146
+ }
147
+ }
148
+ }
149
+
150
+ .options-items {
151
+ top: 15px;
152
+ left: 40px;
153
+
154
+ .items-inner {
155
+ border: none;
156
+
157
+ li {
158
+ border: none;
159
+ border-right: none !important;
160
+ border-bottom: 1px solid $white-100-lighter;
161
+ width: 100%;
162
+
163
+ &:last-child {
164
+ border-bottom: none;
165
+ }
166
+
167
+ a {
168
+ font-size: 13px;
169
+ padding: 10px 20px;
238
170
 
239
- // // dark theme start
171
+ &:hover {
172
+ color: $primary !important;
173
+ }
174
+ }
175
+ }
176
+ }
177
+ }
178
+
179
+ .right-control {
180
+ .button {
181
+ .fa {
182
+ font-size: 20px;
183
+ }
184
+
185
+ img {
186
+ width: 11px;
187
+ }
188
+ }
189
+ }
190
+ }
191
+ }
192
+
193
+ .terminal-setting {
194
+ background-color: $primary-5;
195
+ padding: 5px 20px;
196
+
197
+ .left-content {
198
+ .ac-select-box-wrapper {
199
+ margin-right: 10px;
200
+
201
+ .multi-select-wrapper {
202
+ min-width: 200px;
203
+ }
204
+
205
+ .multiselect .multiselect__tags .multiselect__input,
206
+ .multiselect .multiselect__tags .multiselect__single {
207
+ background-color: #3b3030;
208
+ }
209
+ }
210
+ }
211
+
212
+ .right-content {
213
+ .status-message {
214
+ background-color: #666666 !important;
215
+ text-align: center;
216
+ padding: 4px 20px;
217
+ border-radius: 4px;
218
+ color: #ffffff !important;
219
+ text-transform: uppercase;
220
+
221
+ &.is-success {
222
+ background-color: #27b064 !important;
223
+ }
224
+
225
+ &.is-danger {
226
+ background-color: $danger !important;
227
+ }
228
+ }
229
+ }
230
+ }
231
+
232
+ .terminal-body {
233
+ p {
234
+ font-family: Fira Code;
235
+
236
+ .code-static {
237
+ color: #0ff05c;
238
+ font-weight: 500;
239
+ }
240
+
241
+ .code-input {
242
+ color: #acd9ff;
243
+ }
244
+ }
245
+ }
246
+
247
+ .button {
248
+ &.is-transparent {
249
+ &:hover {
250
+ background-color: $primary-90;
251
+ }
252
+ }
253
+ }
254
+
255
+ .multiselect.multiselect--active {
256
+ .multiselect__tags {
257
+ border: 1px solid $white-100 !important;
258
+
259
+ .multiselect__input {
260
+ color: $white-100 !important;
261
+ }
262
+ }
263
+ }
264
+
265
+ .multiselect .multiselect__tags {
266
+ background-color: $primary-10;
267
+ border: 1px solid $primary-20;
268
+
269
+ span {
270
+ color: $white-100;
271
+ }
272
+ }
273
+ }
274
+
275
+ .notification-inner {
276
+ h3 {
277
+ color: $primary-97;
278
+ }
279
+ }
280
+
281
+ // dark theme start
240
282
  // .is-dark-theme {
283
+
241
284
  // // ac-terminal
242
285
  // .ac-terminal {
243
286
  // .terminal-setting {
@@ -267,4 +310,5 @@
267
310
  // }
268
311
  // }
269
312
  // }
270
- // // dark theme end
313
+
314
+ // dark theme end
@@ -1,29 +1,32 @@
1
- @import "ac-alert-box";
2
- @import "ac-accordion";
3
- @import "buttons";
4
- @import "breadcumb";
1
+ @import "ac-terminal";
2
+ // @import "ac-alert-box";
3
+ // @import "ac-accordion";
4
+ // @import "buttons";
5
+ // @import "breadcumb";
5
6
  @import "ac-card";
6
- @import "basic-card";
7
- @import "ac-multi-select";
8
- @import "ac-code-highlight";
9
- @import "navbar";
10
- @import "app-drawer";
11
- @import "ac-drag";
12
- @import "left-sidebar-menu";
13
- @import "ac-input";
14
- @import "ac-content-layout";
15
- @import "ac-table";
16
- @import "graph";
17
- @import "ac-modal";
18
- @import "payment-card";
19
- @import "pagination";
20
- @import "ac-options";
21
- @import "image-upload";
22
- @import "ac-alert-box";
23
- @import "dashboard-header";
24
- @import "ac-tags";
25
- @import "go-to-top";
26
- @import "ac-toaster/ac-toasted";
27
- @import "preview-modal";
28
- @import "wizard";
29
- @import "bbum/all";
7
+ // @import "ac-multi-select";
8
+ // @import "ac-code-highlight";
9
+ // @import "navbar";
10
+ // @import "app-drawer";
11
+ // @import "ac-drag";
12
+ // @import "left-sidebar-menu";
13
+ // @import "ac-input";
14
+ // @import "ac-content-layout";
15
+ // @import "ac-table";
16
+ // @import "ac-tabs";
17
+ // @import "graph";
18
+ // @import "ac-modal";
19
+ // @import "payment-card";
20
+ // @import "pagination";
21
+ // @import "ac-options";
22
+ // @import "image-upload";
23
+ // @import "ac-alert-box";
24
+ // @import "dashboard-header";
25
+ // @import "ac-tags";
26
+ // @import "go-to-top";
27
+ // @import "ac-toaster/ac-toasted";
28
+ // @import "preview-modal";
29
+ // @import "wizard";
30
+ // @import "bbum/all";
31
+ @import "ui-builder/ui-builder";
32
+ @import "ui-builder/vue-open-api";