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

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 (65) 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} +159 -306
  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 +0 -597
  13. package/components/_ac-input.scss +0 -482
  14. package/components/_ac-modal.scss +212 -212
  15. package/components/_ac-multi-select.scss +84 -55
  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/_image-upload.scss +2 -2
  27. package/components/_left-sidebar-menu.scss +346 -475
  28. package/components/_navbar.scss +786 -752
  29. package/components/_pagination.scss +9 -27
  30. package/components/_payment-card.scss +1 -1
  31. package/components/_widget-menu.scss +247 -247
  32. package/components/ac-toaster/_ac-toasted.scss +6 -11
  33. package/components/ui-builder/_ui-builder.scss +1 -1
  34. package/components/ui-builder/_vue-open-api.scss +512 -0
  35. package/main.scss +26 -10
  36. package/package.json +1 -1
  37. package/plugins/theme.js +11 -9
  38. package/plugins/vue-toaster.js +1 -1
  39. package/vue-components/v2/card/Card.vue +1 -1
  40. package/vue-components/v3/alert/Alert.vue +5 -5
  41. package/vue-components/v3/button/Button.vue +8 -0
  42. package/vue-components/v3/cards/Card.vue +1 -1
  43. package/vue-components/v3/cards/Cluster.vue +0 -4
  44. package/vue-components/v3/cards/Counter.vue +12 -0
  45. package/vue-components/v3/cards/FeatureCard.vue +31 -0
  46. package/vue-components/v3/cards/InfoCard.vue +4 -9
  47. package/vue-components/v3/cards/Monitoring.vue +1 -1
  48. package/vue-components/v3/cards/Vendor.vue +67 -5
  49. package/vue-components/v3/content/ContentTable.vue +7 -2
  50. package/vue-components/v3/editor/FilteredFileEditor.vue +195 -2
  51. package/vue-components/v3/footer/FooterItem.vue +4 -1
  52. package/vue-components/v3/form-fields/AcSingleInput.vue +1 -1
  53. package/vue-components/v3/header/Header.vue +3 -2
  54. package/vue-components/v3/loaders/InfoCardLoader.vue +65 -0
  55. package/vue-components/v3/notification/AlertBox.vue +4 -4
  56. package/vue-components/v3/searchbars/SearchBar.vue +10 -2
  57. package/vue-components/v3/sidebar/ClusterSwitcher.vue +4 -4
  58. package/vue-components/v3/sidebar/Sidebar.vue +3 -8
  59. package/vue-components/v3/sidebar/SidebarFooter.vue +3 -3
  60. package/vue-components/v3/sidebar/SidebarHeader.vue +3 -3
  61. package/vue-components/v3/sidebar/Steps.vue +148 -0
  62. package/vue-components/v3/table/Table.vue +27 -20
  63. package/base/utilities/_derived-variables.scss +0 -24
  64. package/base/utilities/_initial-variables.scss +0 -217
  65. package/components/_basic-card.scss +0 -118
@@ -1,134 +0,0 @@
1
- .app-drawer-wrapper {
2
- width: 35px;
3
- height: 35px;
4
- border-radius: 50%;
5
- padding: 5px;
6
- transition: all 0.3s ease-in-out;
7
- position: relative;
8
- z-index: 99;
9
- user-select: none;
10
-
11
- &:hover {
12
- background-color: rgba(255, 255, 255, 0.7);
13
- cursor: pointer;
14
- }
15
-
16
- .drawer-icon {
17
- width: 100%;
18
- text-align: center;
19
- vertical-align: middle;
20
- }
21
-
22
- .app-drawer-dropdown {
23
- ul {
24
- border-radius: 4px;
25
- overflow: hidden;
26
-
27
- li {
28
- display: block;
29
- font-size: 13px;
30
- }
31
-
32
- background-color: #edf0f5;
33
- box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.16);
34
- min-width: 280px;
35
- }
36
-
37
- li {
38
- a {
39
- display: block;
40
- color: $primary-10 !important;
41
- padding: 10px 20px !important;
42
- font-size: 13px !important;
43
- transition: 0.2s;
44
-
45
- span {
46
- margin-top: -3px;
47
- }
48
-
49
- &:hover {
50
- .media-content {
51
- .content {
52
- p {
53
- color: $white-100;
54
- }
55
- }
56
- }
57
- }
58
-
59
- .media {
60
- .media-left {
61
- .image {
62
- img {
63
- height: 44px;
64
- width: auto;
65
- }
66
- }
67
- }
68
-
69
- .media-content {
70
- overflow: hidden;
71
-
72
- .content {
73
- p {
74
- vertical-align: middle;
75
- line-height: 1;
76
- transition: 0.3s;
77
-
78
- strong {
79
- font-weight: 600;
80
- font-size: 17px;
81
- font-family: $font-heading;
82
- }
83
-
84
- span {
85
- display: block;
86
- font-size: 13px;
87
- margin-top: 10px;
88
- }
89
- }
90
- }
91
- }
92
- }
93
- }
94
-
95
- &:hover {
96
- > a {
97
- background-color: $white-100;
98
- }
99
- }
100
-
101
- &:first-child {
102
- &:hover {
103
- > a {
104
- border-radius: 4px 4px 0 0;
105
- }
106
- }
107
- }
108
-
109
- &:last-child {
110
- &:hover {
111
- > a {
112
- border-radius: 0 0 4px 4px;
113
- }
114
- }
115
- }
116
- }
117
-
118
- position: absolute;
119
- z-index: 99;
120
- right: -154px;
121
- top: 50px;
122
- display: block;
123
- transform: scale(0) translateY(-200%);
124
- transition: all 0.3s ease-in-out;
125
-
126
- hr {
127
- margin: 0;
128
- }
129
- }
130
-
131
- .app-drawer-dropdown.is-active {
132
- transform: scale(1);
133
- }
134
- }
@@ -1,71 +0,0 @@
1
- /* breadcumb style */
2
- .ac-breadcrumb {
3
- padding: 13px 20px;
4
- border-bottom: 1px solid $primary-90;
5
- position: sticky;
6
- top: 50px;
7
- height: 50px;
8
- background-color: $white-100;
9
- z-index: 998;
10
- display: flex;
11
- align-items: center;
12
- }
13
-
14
- .breadcrumb {
15
- a {
16
- color: $primary-20;
17
- font-size: 13px;
18
- padding: 0px 3px;
19
- &:hover {
20
- color: $primary-10;
21
- }
22
- }
23
-
24
- li.is-active {
25
- a {
26
- color: $primary-10;
27
- font-weight: 500;
28
- }
29
- }
30
- }
31
-
32
- /*=================================================================================================
33
- Responsive code start
34
- =================================================================================================*/
35
- /****************************************************************
36
- Full HD Min Width 1407
37
- **************************************************************** */
38
- /* Full HD Min Width 1408px */
39
- @media (min-width: 1408px) {
40
- }
41
-
42
- /****************************************************************
43
- Widescreen Between 1216px and 1407px
44
- **************************************************************** */
45
- @media (min-width: 1216px) and (max-width: 1407px) {
46
- }
47
-
48
- /****************************************************************
49
- Desktop Between 1024px and 1215px
50
- **************************************************************** */
51
- @media (min-width: 1024px) and (max-width: 1215px) {
52
- }
53
-
54
- /****************************************************************
55
- Tablet Between 769px and 1023px
56
- **************************************************************** */
57
- @media (min-width: 769px) and (max-width: 1023px) {
58
- }
59
-
60
- /****************************************************************
61
- Mobile Up to 768px.
62
- **************************************************************** */
63
- @media only screen and (min-width: 100px) and (max-width: 768px) {
64
- .ac-breadcrumb {
65
- padding: 5px;
66
- }
67
- }
68
-
69
- /*=================================================================================================
70
- Responsive code end
71
- =================================================================================================*/