@appscode/design-system 1.0.43-alpha.10 → 1.0.43-alpha.103

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 (84) hide show
  1. package/base/utilities/_default.scss +275 -20
  2. package/base/utilities/_derived-variables.scss +0 -13
  3. package/base/utilities/_initial-variables.scss +78 -56
  4. package/base/utilities/_mixin.scss +10 -17
  5. package/base/utilities/_typography.scss +23 -7
  6. package/base/utilities/dark-theme.scss +25 -0
  7. package/components/_ac-accordion.scss +1 -0
  8. package/components/_ac-alert-box.scss +18 -10
  9. package/components/_ac-card.scss +55 -20
  10. package/components/_ac-code-highlight.scss +7 -1
  11. package/components/_ac-content-layout.scss +4 -4
  12. package/components/_ac-drag.scss +6 -6
  13. package/components/_ac-input.scss +74 -39
  14. package/components/_ac-modal.scss +5 -4
  15. package/components/_ac-multi-select.scss +196 -14
  16. package/components/_ac-options.scss +31 -16
  17. package/components/_ac-select-box.scss +15 -5
  18. package/components/_ac-table.scss +42 -33
  19. package/components/_ac-tabs.scss +72 -23
  20. package/components/_ac-tags.scss +2 -2
  21. package/components/_ac-terminal.scss +272 -0
  22. package/components/_app-drawer.scss +6 -6
  23. package/components/_breadcumb.scss +7 -2
  24. package/components/_buttons.scss +61 -28
  25. package/components/_card-body-wrapper.scss +3 -3
  26. package/components/_dashboard-header.scss +1 -1
  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 +6 -4
  31. package/components/_left-sidebar-menu.scss +200 -46
  32. package/components/_monaco-editor.scss +1 -1
  33. package/components/_navbar.scss +103 -26
  34. package/components/_overview-info.scss +4 -4
  35. package/components/_overview-page.scss +1 -2
  36. package/components/_pagination.scss +10 -2
  37. package/components/_payment-card.scss +28 -12
  38. package/components/_preview-modal.scss +8 -8
  39. package/components/_pricing-table.scss +1 -1
  40. package/components/_progress-bar.scss +5 -5
  41. package/components/_subscription-card.scss +15 -8
  42. package/components/_table-of-content.scss +1 -1
  43. package/components/_tfa.scss +69 -0
  44. package/components/_widget-menu.scss +9 -9
  45. package/components/_wizard.scss +32 -20
  46. package/components/ac-toaster/_ac-toasted.scss +5 -5
  47. package/components/bbum/_card-team.scss +18 -10
  48. package/components/bbum/_information-center.scss +19 -5
  49. package/components/bbum/_mobile-desktop.scss +6 -6
  50. package/components/bbum/_post.scss +5 -4
  51. package/components/bbum/_sign-up-notification.scss +6 -6
  52. package/components/bbum/_single-post-preview.scss +9 -9
  53. package/components/bbum/_user-profile.scss +97 -90
  54. package/components/ui-builder/_ui-builder.scss +29 -10
  55. package/components/ui-builder/_vue-open-api.scss +98 -0
  56. package/layouts/_404.scss +2 -1
  57. package/layouts/_code-preview.scss +14 -7
  58. package/main.scss +4 -0
  59. package/package.json +2 -7
  60. package/plugins/theme.js +142 -0
  61. package/vue-components/v2/breadcrumbs/Breadcrumb.vue +95 -0
  62. package/vue-components/v2/card/PaymentCards.vue +11 -2
  63. package/vue-components/v2/editor/Editor.vue +37 -17
  64. package/vue-components/v2/editor/ResourceKeyValueEditor.vue +232 -0
  65. package/vue-components/v2/modal/Modal.vue +30 -11
  66. package/vue-components/v2/navbar/Appdrawer.vue +10 -9
  67. package/vue-components/v2/navbar/ThemeMode.vue +120 -0
  68. package/vue-components/v2/navbar/User.vue +3 -0
  69. package/vue-components/v2/preloader/Preloader.vue +5 -5
  70. package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
  71. package/vue-components/v2/sidebar/SidebarItem.vue +23 -1
  72. package/vue-components/v2/table/TableRow.vue +17 -8
  73. package/vue-components/v2/table/table-cell/CellValue.vue +10 -1
  74. package/vue-components/v2/tabs/EditorTabs.vue +1 -1
  75. package/vue-components/v3/dropdown/DropdownMenu.vue +1 -1
  76. package/vue-components/v3/editor/Editor.vue +39 -19
  77. package/vue-components/v3/modal/Modal.vue +10 -1
  78. package/vue-components/v3/navbar/Appdrawer.vue +12 -7
  79. package/vue-components/v3/navbar/ThemeMode.vue +128 -0
  80. package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
  81. package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
  82. package/vue-components/v3/table/TableRow.vue +1 -1
  83. package/vue-components/v3/table/table-cell/CellValue.vue +9 -0
  84. package/vue-components/v3/tabs/EditorTabs.vue +1 -1
@@ -1,6 +1,8 @@
1
1
  .ac-code-highlight {
2
2
  pre {
3
3
  font-size: $font-size-small;
4
+ color: $ac-color-text;
5
+ background-color: $ac-white-lighter;
4
6
  }
5
7
  &.is-dark {
6
8
  pre {
@@ -9,11 +11,15 @@
9
11
  }
10
12
  }
11
13
  }
14
+ code[class*="language-"],
15
+ pre[class*="language-"] {
16
+ font-size: 14px !important;
17
+ }
12
18
 
13
19
  .editor-writable {
14
20
  width: 100%;
15
21
  border-radius: 4px !important;
16
- border: 1px solid #f1f1f1 !important;
22
+ border: 1px solid $ac-white-light !important;
17
23
  }
18
24
 
19
25
  .monaco-editor {
@@ -1,18 +1,18 @@
1
1
  .ac-content-layout {
2
- background: transparent;
2
+ background-color: transparent;
3
3
  padding: 0;
4
4
  border-radius: 0;
5
5
  height: 100%;
6
6
  border: none;
7
7
 
8
8
  &.style-2 {
9
- border: 1px solid $table-header;
9
+ border: 1px solid $ac-white-light;
10
10
  box-shadow: none;
11
11
  padding: 0;
12
12
  border-radius: 4px;
13
13
 
14
14
  .ac-content-header {
15
- background: $table-header;
15
+ background-color: $ac-white-light;
16
16
 
17
17
  &.is-bg-white {
18
18
  .ac-cheader-left {
@@ -36,7 +36,7 @@
36
36
  }
37
37
 
38
38
  &.is-dark {
39
- background-color: $ac-bg-dark;
39
+ background-color: $ac-color-heading;
40
40
 
41
41
  .ac-content-header {
42
42
  &.drag-n-drop {
@@ -19,13 +19,13 @@
19
19
  }
20
20
 
21
21
  .dragable-list-items {
22
- background: $ac-bg-light-gray;
22
+ background-color: $ac-white-lighter;
23
23
  border-radius: 4px;
24
24
  max-height: 400px;
25
25
 
26
26
  .is-highlight {
27
27
  background-color: $ac-white;
28
- border: 1px dashed $ac-border-hover;
28
+ border: 1px dashed $ac-gray-lightest;
29
29
  border-radius: 4px;
30
30
  margin: 4px 0;
31
31
  overflow: hidden;
@@ -36,7 +36,7 @@
36
36
  padding-left: 40px;
37
37
 
38
38
  &.is-not-change {
39
- background-color: $ac-bg-light-gray;
39
+ background-color: $ac-white-lighter;
40
40
  margin-left: -40px !important;
41
41
  padding-left: 80px;
42
42
  }
@@ -66,7 +66,7 @@
66
66
  margin-left: -35px;
67
67
 
68
68
  &:hover {
69
- background: $ac-white;
69
+ background-color: $ac-white;
70
70
  box-shadow: $ac-shadow-1;
71
71
  cursor: move;
72
72
 
@@ -82,7 +82,7 @@
82
82
  }
83
83
 
84
84
  input[type="text"] {
85
- background: $ac-white-light;
85
+ background-color: $ac-white-light;
86
86
  border: none;
87
87
  font-weight: 500;
88
88
  padding: 4px 5px;
@@ -113,7 +113,7 @@
113
113
 
114
114
  button {
115
115
  border: none;
116
- background: transparent;
116
+ background-color: transparent;
117
117
  display: block;
118
118
  cursor: pointer;
119
119
  padding: 0 5px;
@@ -72,7 +72,7 @@
72
72
  font-size: $font-size-small;
73
73
  padding: 4px 7px;
74
74
  height: 30px;
75
- background: $ac-white;
75
+ background-color: $ac-white;
76
76
  padding-right: 30px;
77
77
 
78
78
  &[type="password"] {
@@ -123,8 +123,10 @@
123
123
 
124
124
  &.show-label {
125
125
  font-size: 12px;
126
+ color: $ac-color-value;
126
127
  top: -9px;
127
128
  font-weight: 500;
129
+ background-color: $ac-white;
128
130
  }
129
131
  }
130
132
 
@@ -174,6 +176,12 @@
174
176
  font-size: 12px;
175
177
  top: -9px;
176
178
  font-weight: 500;
179
+ color: $ac-color-value;
180
+ &.is-required{
181
+ &:after{
182
+ width: calc(100% + 10px);
183
+ }
184
+ }
177
185
  }
178
186
  }
179
187
 
@@ -242,7 +250,7 @@
242
250
 
243
251
  &.is-dark {
244
252
  input {
245
- background: $ac-bg-dark;
253
+ background-color: $ac-color-heading;
246
254
  border-color: transparent;
247
255
  color: $ac-white;
248
256
 
@@ -263,7 +271,7 @@
263
271
  left: 15px;
264
272
  top: 11px;
265
273
  cursor: text;
266
- color: $ac-border;
274
+ color: $ac-label-text;
267
275
  position: absolute;
268
276
  z-index: 2;
269
277
  transition: 0.3s ease-in-out;
@@ -283,14 +291,14 @@
283
291
  left: 10px;
284
292
  padding: 0 5px;
285
293
  font-size: $font-size-small;
286
- color: $ac-black;
294
+ color: $ac-color-value;
287
295
 
288
296
  &:after {
289
297
  position: absolute;
290
298
  content: "";
291
299
  left: 0;
292
300
  top: 50%;
293
- background: $ac-white;
301
+ background-color: $ac-white;
294
302
  width: 100%;
295
303
  height: 2px;
296
304
  margin-top: -1px;
@@ -307,7 +315,7 @@
307
315
 
308
316
  .button {
309
317
  &.is-information {
310
- background: transparent;
318
+ background-color: transparent;
311
319
  border: none;
312
320
  position: absolute;
313
321
  right: 0;
@@ -318,14 +326,14 @@
318
326
  &:focus {
319
327
  outline: none;
320
328
  box-shadow: none;
321
- background: #e4e8ef;
329
+ background-color: #e4e8ef;
322
330
  transform: scale(0.8);
323
331
  }
324
332
  }
325
333
  }
326
334
 
327
335
  .ac-search-button {
328
- background: transparent;
336
+ background-color: transparent;
329
337
  border: none;
330
338
  position: absolute;
331
339
  left: 0;
@@ -333,13 +341,13 @@
333
341
  width: 35px;
334
342
  height: 100%;
335
343
  margin-top: -22.5px;
336
- color: $ac-border;
344
+ color: $ac-label-text;
337
345
  cursor: pointer;
338
346
  }
339
347
 
340
348
  .ac-dropdown-content {
341
349
  position: absolute;
342
- background: $ac-input-bg-color;
350
+ background-color: $ac-blue-light;
343
351
  width: 100%;
344
352
  height: auto;
345
353
  box-shadow: 0px 4px 16px rgba(132, 147, 168, 0.6);
@@ -356,7 +364,7 @@
356
364
  transition: 0.3s;
357
365
 
358
366
  &:hover {
359
- background: hsla(
367
+ background-color: hsla(
360
368
  var(--hsl-hue),
361
369
  var(--hsl-saturation),
362
370
  var(--hsl-lightness),
@@ -370,25 +378,26 @@
370
378
  }
371
379
 
372
380
  .ac-textarea {
373
- border: 1px solid $ac-border;
374
- border-radius: 4px;
375
- padding: 10px 0 5px 0;
376
- // background-color: $ac-input-bg-color;
377
- transition: background-color 0.3s ease-in-out;
378
-
381
+ .ac-label{
382
+ &.is-required{
383
+ &:after{
384
+ width: calc(100% + 10px);
385
+ }
386
+ }
387
+ }
379
388
  textarea {
380
- border: none;
389
+ border: 1px solid $ac-label-text;
381
390
  background-color: transparent;
382
- padding-top: 0;
383
- padding-bottom: 0;
384
-
391
+ padding: 10px 15px;
392
+ min-height: 50px;
385
393
  &.bg-white {
386
394
  background-color: transparent;
387
395
  }
396
+
388
397
 
389
398
  &:focus {
390
399
  outline: none;
391
- border: none;
400
+ border: 1px solid $ac-primary;
392
401
  }
393
402
  }
394
403
  }
@@ -397,22 +406,25 @@
397
406
  .ac-card,
398
407
  textarea {
399
408
  background-color: $ac-white;
409
+ color: $ac-color-text;
400
410
  height: 45px;
401
411
  font-weight: 400;
402
412
  width: 100%;
403
413
  border-radius: 4px;
404
- border: 1px solid $ac-border;
414
+ border: 1px solid $ac-label-text;
405
415
  padding: 8px 15px;
406
416
  font-size: $font-size-small;
407
417
 
408
418
  &:hover {
409
- border-color: $ac-border-hover;
419
+ border-color: $ac-gray-lightest;
410
420
  }
411
421
 
412
422
  &.bg-white {
413
423
  background-color: $ac-white;
414
424
  }
415
-
425
+ &.StripeElement--focus {
426
+ border: 1px solid $ac-primary;
427
+ }
416
428
  &:focus {
417
429
  border: 1px solid $ac-primary;
418
430
  outline: none;
@@ -449,11 +461,12 @@
449
461
 
450
462
  span.eye {
451
463
  i.fa {
452
- color: $ac-border;
464
+ color: $ac-label-text;
453
465
  position: absolute;
454
466
  cursor: pointer;
455
467
  padding: 15px;
456
468
  right: 0;
469
+ top: 0;
457
470
  }
458
471
  }
459
472
 
@@ -488,7 +501,7 @@
488
501
  top: 10px;
489
502
  z-index: 1;
490
503
  font-size: $font-size-small;
491
- color: $ac-border;
504
+ color: $ac-label-text;
492
505
  font-weight: 400;
493
506
  }
494
507
  }
@@ -508,11 +521,11 @@
508
521
  }
509
522
 
510
523
  label {
511
- background-color: $ac-input-bg-color;
524
+ background-color: transparent;
512
525
  height: 36px;
513
526
  font-weight: 400;
514
527
  border-radius: 4px;
515
- border: 1px solid $ac-border;
528
+ border: 1px solid $ac-label-text;
516
529
  font-size: $font-size-small;
517
530
 
518
531
  .file-cta {
@@ -521,7 +534,7 @@
521
534
  }
522
535
 
523
536
  &:hover {
524
- border-color: $ac-border-hover;
537
+ border-color: $ac-gray-lightest;
525
538
  }
526
539
 
527
540
  &.bg-white {
@@ -537,19 +550,19 @@
537
550
  }
538
551
 
539
552
  input#captcha {
540
- background-color: #ffffff;
553
+ background-color: $ac-white;
541
554
  height: 36px;
542
555
  font-weight: 400;
543
556
  width: 100%;
544
557
  border-radius: 4px;
545
- border: 1px solid #a6abbd;
558
+ border: 1px solid $ac-white-light;
546
559
  padding: 8px 15px;
547
560
  font-size: 13px;
548
561
  transition: background-color 0.3s ease-in-out;
549
562
 
550
563
  &:focus {
551
564
  outline: none;
552
- border-bottom: 1px solid $ac-border;
565
+ border-bottom: 1px solid $ac-label-text;
553
566
  }
554
567
  }
555
568
 
@@ -573,7 +586,7 @@ input#captcha {
573
586
  .is-checkradio[type="checkbox"].ac-checkbox + label::after {
574
587
  top: 6px;
575
588
  left: 6px;
576
- border-color: #54657e;
589
+ border-color: $ac-gray-lightest;
577
590
  width: 0.3rem;
578
591
  height: 0.5rem;
579
592
  }
@@ -583,7 +596,7 @@ input#captcha {
583
596
  }
584
597
 
585
598
  .is-checkradio[type="checkbox"].ac-checkbox + label {
586
- color: $ac-link-black;
599
+ color: $ac-color-text;
587
600
  font-size: 13px !important;
588
601
  padding-left: 25px;
589
602
  user-select: none;
@@ -594,7 +607,7 @@ input#captcha {
594
607
  }
595
608
 
596
609
  .is-checkradio[type="checkbox"].ac-checkbox + label {
597
- color: $ac-link-black;
610
+ color: $ac-color-text;
598
611
  font-size: 13px;
599
612
  padding-left: 25px;
600
613
  user-select: none;
@@ -625,6 +638,7 @@ input#captcha {
625
638
  user-select: none;
626
639
  font-size: 13px;
627
640
  font-weight: 400;
641
+ color: $ac-color-text;
628
642
 
629
643
  &::before {
630
644
  background-color: #cad3df;
@@ -667,6 +681,9 @@ input#captcha {
667
681
  .switch {
668
682
  &[type="checkbox"] + label {
669
683
  padding-top: 3px;
684
+ &::before {
685
+ background-color: $ac-gray-light;
686
+ }
670
687
  }
671
688
 
672
689
  &.ac-switch {
@@ -709,17 +726,17 @@ input#captcha {
709
726
 
710
727
  input {
711
728
  border: none;
712
- background: transparent;
729
+ background-color: transparent;
713
730
  font-size: 18px;
714
731
  font-weight: 400;
715
732
  font-family: $ac-family-heading;
716
- color: #333;
733
+ color: $ac-color-value;
717
734
  width: 100%;
718
735
  padding: 5px 0;
719
736
 
720
737
  &:focus {
721
738
  outline: none;
722
- border-bottom: 1px solid $ac-border;
739
+ border-bottom: 1px solid $ac-label-text;
723
740
  }
724
741
  }
725
742
  }
@@ -768,7 +785,25 @@ input#captcha {
768
785
  }
769
786
  }
770
787
  }
788
+ // dark theme start
789
+ .is-dark-theme {
790
+ .ac-single-input {
791
+ input,
792
+ .file-input,
793
+ .ac-dropdown-content {
794
+ background-color: transparent;
795
+ }
771
796
 
797
+ label {
798
+ color: $ac-label-text;
799
+ }
800
+ .button.is-information:focus{
801
+ background-color: $dark-bg-light;
802
+ }
803
+ }
804
+
805
+ }
806
+ // dark theme end
772
807
  /****************************************
773
808
  Responsive Classes
774
809
  *****************************************/
@@ -15,7 +15,7 @@
15
15
  top: 0;
16
16
  width: 100%;
17
17
  height: 100%;
18
- background: #000;
18
+ background-color: $ac-black;
19
19
  z-index: -1;
20
20
  opacity: 0.5;
21
21
  }
@@ -47,13 +47,13 @@
47
47
 
48
48
  .ac-modal-inner {
49
49
  margin: 0 auto;
50
- background: $ac-white;
50
+ background-color: $ac-white;
51
51
  border-radius: 4px;
52
52
  overflow: hidden;
53
53
  box-shadow: 12px 26px 118px rgba(0, 0, 0, 0.16);
54
54
 
55
55
  .ac-modal-header {
56
- background: $ac-white;
56
+ background-color: $ac-white;
57
57
  padding: 10px 20px;
58
58
  display: flex;
59
59
  align-items: center;
@@ -96,6 +96,7 @@
96
96
  &.is-description {
97
97
  font-family: $ac-family-heading;
98
98
  font-weight: 400;
99
+ color: $ac-color-value;
99
100
 
100
101
  strong {
101
102
  font-weight: 500;
@@ -107,7 +108,7 @@
107
108
  }
108
109
 
109
110
  .ac-modal-footer {
110
- border-top: 1px solid $ac-modal-header-bg;
111
+ border-top: 1px solid $ac-white-light;
111
112
  padding: 10px 20px;
112
113
  }
113
114
  }