@appscode/design-system 2.0.18 → 2.0.19-alpha.10

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 (160) hide show
  1. package/main.scss +4 -18
  2. package/package.json +1 -1
  3. package/{base → vue-components/styles/base}/utilities/_grid.scss +1 -1
  4. package/vue-components/styles/components/_accordion.scss +117 -0
  5. package/vue-components/styles/components/_add-card.scss +70 -0
  6. package/vue-components/styles/components/_all.scss +38 -0
  7. package/vue-components/styles/components/_breadcrumb.scss +32 -0
  8. package/vue-components/styles/components/_button.scss +110 -0
  9. package/vue-components/styles/components/_card-body-wrapper.scss +54 -0
  10. package/vue-components/styles/components/_direct-deploy.scss +69 -0
  11. package/vue-components/styles/components/_dropdown.scss +32 -0
  12. package/vue-components/styles/components/_modal.scss +216 -0
  13. package/vue-components/styles/components/_options.scss +134 -0
  14. package/vue-components/styles/components/_table.scss +430 -0
  15. package/vue-components/styles/components/_tabs.scss +338 -0
  16. package/vue-components/styles/components/alert/_alert-message.scss +16 -0
  17. package/vue-components/styles/components/alert/_alert.scss +123 -0
  18. package/vue-components/styles/components/alert/_all.scss +3 -0
  19. package/vue-components/styles/components/alert/_toast.scss +50 -0
  20. package/vue-components/styles/components/cards/_all.scss +8 -0
  21. package/vue-components/styles/components/cards/_cluster.scss +97 -0
  22. package/vue-components/styles/components/cards/_features.scss +26 -0
  23. package/vue-components/styles/components/cards/_info.scss +83 -0
  24. package/vue-components/styles/components/cards/_monitoring.scss +24 -0
  25. package/vue-components/styles/components/cards/_org.scss +59 -0
  26. package/vue-components/styles/components/cards/_vendor.scss +58 -0
  27. package/vue-components/styles/components/content/_all.scss +2 -0
  28. package/vue-components/styles/components/content/_content-header.scss +14 -0
  29. package/vue-components/styles/components/content/_content-layout.scss +4 -0
  30. package/vue-components/styles/components/editor/_all.scss +2 -0
  31. package/vue-components/styles/components/editor/_filtered-file-editor.scss +195 -0
  32. package/vue-components/styles/components/footer/_all.scss +3 -0
  33. package/vue-components/styles/components/footer/_footer-area.scss +26 -0
  34. package/vue-components/styles/components/footer/_footer-item.scss +14 -0
  35. package/vue-components/styles/components/footer/_footer-items.scss +5 -0
  36. package/vue-components/styles/components/form-fields/_all.scss +4 -0
  37. package/vue-components/styles/components/form-fields/_file-upload.scss +42 -0
  38. package/vue-components/styles/components/form-fields/_form-footer.scss +9 -0
  39. package/{components → vue-components/styles/components/form-fields}/_input.scss +47 -32
  40. package/vue-components/styles/components/header/_header-item.scss +13 -0
  41. package/vue-components/styles/components/header/_header.scss +7 -0
  42. package/vue-components/styles/components/navbar/_all.scss +2 -0
  43. package/vue-components/styles/components/navbar/_menu-content.scss +527 -0
  44. package/vue-components/styles/components/navbar/_navbar.scss +73 -0
  45. package/vue-components/styles/components/navbar/_notification.scss +103 -0
  46. package/vue-components/styles/components/select-box/_ac-select-box.scss +49 -0
  47. package/vue-components/styles/components/select-box/_all.scss +2 -0
  48. package/vue-components/styles/components/sidebar/_all.scss +1 -0
  49. package/vue-components/styles/components/sidebar/_left-sidebar.scss +222 -0
  50. package/{components → vue-components/styles/components}/ui-builder/_ui-builder.scss +6 -39
  51. package/vue-components/v3/accordion/Accordion.vue +1 -117
  52. package/vue-components/v3/alert/Alert.vue +1 -218
  53. package/vue-components/v3/alert/AlertMessage.vue +46 -0
  54. package/vue-components/v3/alert/Toast.vue +1 -50
  55. package/vue-components/v3/breadcrumbs/Breadcrumb.vue +1 -33
  56. package/vue-components/v3/button/Button.vue +2 -63
  57. package/vue-components/v3/button/Buttons.vue +0 -8
  58. package/vue-components/v3/cards/Cluster.vue +2 -93
  59. package/vue-components/v3/cards/FeatureCard.vue +1 -25
  60. package/vue-components/v3/cards/FeatureCards.vue +5 -1
  61. package/vue-components/v3/cards/InfoCard.vue +1 -80
  62. package/vue-components/v3/cards/Monitoring.vue +1 -24
  63. package/vue-components/v3/cards/OrgCard.vue +1 -59
  64. package/vue-components/v3/cards/Payment.vue +3 -0
  65. package/vue-components/v3/cards/Vendor.vue +2 -58
  66. package/vue-components/v3/content/ContentHeader.vue +1 -14
  67. package/vue-components/v3/content/ContentLayout.vue +1 -7
  68. package/vue-components/v3/dropdown/DropdownAction.vue +1 -32
  69. package/vue-components/v3/editor/FilteredFileEditor.vue +2 -196
  70. package/vue-components/v3/footer/FooterArea.vue +2 -27
  71. package/vue-components/v3/footer/FooterItem.vue +1 -15
  72. package/vue-components/v3/footer/FooterItems.vue +2 -7
  73. package/vue-components/v3/form/FormFooter.vue +1 -9
  74. package/vue-components/v3/form-fields/AcSingleInput.vue +3 -1
  75. package/vue-components/v3/form-fields/FileUpload.vue +1 -42
  76. package/vue-components/v3/header/Header.vue +1 -7
  77. package/vue-components/v3/header/HeaderItem.vue +1 -13
  78. package/vue-components/v3/modal/Modal.vue +1 -216
  79. package/vue-components/v3/navbar/Appdrawer.vue +1 -121
  80. package/vue-components/v3/navbar/Navbar.vue +2 -92
  81. package/vue-components/v3/navbar/NavbarItem.vue +0 -65
  82. package/vue-components/v3/navbar/NavbarItemContent.vue +0 -275
  83. package/vue-components/v3/navbar/Notification.vue +1 -103
  84. package/vue-components/v3/navbar/User.vue +6 -175
  85. package/vue-components/v3/option-dots/Options.vue +1 -144
  86. package/vue-components/v3/sidebar/ClusterSwitcher.vue +3 -1
  87. package/vue-components/v3/sidebar/Sidebar.vue +1 -201
  88. package/vue-components/v3/tab/Tabs.vue +1 -24
  89. package/vue-components/v3/table/Table.vue +1 -453
  90. package/components/_ac-alert-box.scss +0 -205
  91. package/components/_ac-content-layout.scss +0 -165
  92. package/components/_ac-modal.scss +0 -212
  93. package/components/_ac-options.scss +0 -122
  94. package/components/_ac-select-box.scss +0 -49
  95. package/components/_ac-table.scss +0 -503
  96. package/components/_ac-tabs.scss +0 -313
  97. package/components/_accordion.scss +0 -117
  98. package/components/_add-card.scss +0 -70
  99. package/components/_all.scss +0 -35
  100. package/components/_buttons.scss +0 -779
  101. package/components/_card-body-wrapper.scss +0 -54
  102. package/components/_direct-deploy.scss +0 -69
  103. package/components/_left-sidebar-menu.scss +0 -482
  104. package/components/_navbar.scss +0 -786
  105. /package/{base → vue-components/styles/base}/_video-player.scss +0 -0
  106. /package/{base → vue-components/styles/base}/utilities/_all.scss +0 -0
  107. /package/{base → vue-components/styles/base}/utilities/_colors.scss +0 -0
  108. /package/{base → vue-components/styles/base}/utilities/_customize-bulma.scss +0 -0
  109. /package/{base → vue-components/styles/base}/utilities/_extended.scss +0 -0
  110. /package/{base → vue-components/styles/base}/utilities/_global.scss +0 -0
  111. /package/{base → vue-components/styles/base}/utilities/_layouts.scss +0 -0
  112. /package/{base → vue-components/styles/base}/utilities/_mixin.scss +0 -0
  113. /package/{base → vue-components/styles/base}/utilities/_spacing.scss +0 -0
  114. /package/{base → vue-components/styles/base}/utilities/_typography.scss +0 -0
  115. /package/{components → vue-components/styles/components}/_ac-calendar.scss +0 -0
  116. /package/{components → vue-components/styles/components}/_ac-code-highlight.scss +0 -0
  117. /package/{components → vue-components/styles/components}/_ac-drag.scss +0 -0
  118. /package/{components → vue-components/styles/components}/_ac-tags.scss +0 -0
  119. /package/{components → vue-components/styles/components}/_breadcumb.scss +0 -0
  120. /package/{components → vue-components/styles/components}/_dashboard-header.scss +0 -0
  121. /package/{components → vue-components/styles/components}/_getkeeper.scss +0 -0
  122. /package/{components → vue-components/styles/components}/_go-to-top.scss +0 -0
  123. /package/{components → vue-components/styles/components}/_graph.scss +0 -0
  124. /package/{components → vue-components/styles/components}/_nested-list.scss +0 -0
  125. /package/{components → vue-components/styles/components}/_overview-info.scss +0 -0
  126. /package/{components → vue-components/styles/components}/_overview-page.scss +0 -0
  127. /package/{components → vue-components/styles/components}/_pagination.scss +0 -0
  128. /package/{components → vue-components/styles/components}/_preloader.scss +0 -0
  129. /package/{components → vue-components/styles/components}/_preview-modal.scss +0 -0
  130. /package/{components → vue-components/styles/components}/_pricing-table.scss +0 -0
  131. /package/{components → vue-components/styles/components}/_progress-bar.scss +0 -0
  132. /package/{components → vue-components/styles/components}/_report.scss +0 -0
  133. /package/{components → vue-components/styles/components}/_table-of-content.scss +0 -0
  134. /package/{components → vue-components/styles/components}/_terminal.scss +0 -0
  135. /package/{components → vue-components/styles/components}/_tfa.scss +0 -0
  136. /package/{components → vue-components/styles/components}/_transitions.scss +0 -0
  137. /package/{components → vue-components/styles/components}/_widget-menu.scss +0 -0
  138. /package/{components → vue-components/styles/components}/_wizard.scss +0 -0
  139. /package/{components → vue-components/styles/components}/ac-toaster/_ac-toasted.scss +0 -0
  140. /package/{components → vue-components/styles/components}/bbum/_activities-header.scss +0 -0
  141. /package/{components → vue-components/styles/components}/bbum/_all.scss +0 -0
  142. /package/{components → vue-components/styles/components}/bbum/_card-team.scss +0 -0
  143. /package/{components → vue-components/styles/components}/bbum/_information-center.scss +0 -0
  144. /package/{components → vue-components/styles/components}/bbum/_left-sidebar.scss +0 -0
  145. /package/{components → vue-components/styles/components}/bbum/_mobile-desktop.scss +0 -0
  146. /package/{components → vue-components/styles/components}/bbum/_post.scss +0 -0
  147. /package/{components → vue-components/styles/components}/bbum/_sign-up-notification.scss +0 -0
  148. /package/{components → vue-components/styles/components}/bbum/_single-post-preview.scss +0 -0
  149. /package/{components → vue-components/styles/components}/bbum/_user-profile.scss +0 -0
  150. /package/{components → vue-components/styles/components/cards}/_payment-card.scss +0 -0
  151. /package/{components → vue-components/styles/components/cards}/_subscription-card.scss +0 -0
  152. /package/{components → vue-components/styles/components/editor}/_monaco-editor.scss +0 -0
  153. /package/{components → vue-components/styles/components/form-fields}/_image-upload.scss +0 -0
  154. /package/{components → vue-components/styles/components/form-fields}/_input-card.scss +0 -0
  155. /package/{components/_app-drawer.scss → vue-components/styles/components/header/_all.scss} +0 -0
  156. /package/{components → vue-components/styles/components/select-box}/_multi-select.scss +0 -0
  157. /package/{components → vue-components/styles/components}/ui-builder/_vue-open-api.scss +0 -0
  158. /package/{layouts → vue-components/styles/layouts}/_404.scss +0 -0
  159. /package/{layouts → vue-components/styles/layouts}/_all.scss +0 -0
  160. /package/{layouts → vue-components/styles/layouts}/_code-preview.scss +0 -0
@@ -0,0 +1,83 @@
1
+ // info cards start
2
+ .info-card {
3
+ border: 1px solid $primary-90;
4
+ position: relative;
5
+ border-radius: 2px;
6
+ .header {
7
+ display: flex;
8
+ align-items: center;
9
+ padding: 12px 16px;
10
+ border-bottom: 1px dashed $primary-90;
11
+
12
+ .logo {
13
+ display: flex;
14
+ align-items: center;
15
+ margin-right: 12px;
16
+ img {
17
+ width: 16px;
18
+ }
19
+ }
20
+
21
+ .content {
22
+ width: 100%;
23
+ h5 {
24
+ color: $primary-10;
25
+ font-weight: 500;
26
+ margin-bottom: 0;
27
+ }
28
+ }
29
+ }
30
+
31
+ .body {
32
+ display: flex;
33
+ align-items: flex-end;
34
+ justify-content: space-between;
35
+ padding: 16px;
36
+ p {
37
+ display: flex;
38
+ align-items: center;
39
+ margin-bottom: 8px;
40
+ span.icon {
41
+ padding-right: 8px;
42
+ width: 22px;
43
+ }
44
+
45
+ strong {
46
+ font-size: 13px;
47
+ font-weight: 400;
48
+ color: $primary-10;
49
+ }
50
+ }
51
+ }
52
+ }
53
+
54
+ .line-color {
55
+ position: relative;
56
+ z-index: 1;
57
+ overflow: hidden;
58
+ &::after {
59
+ position: absolute;
60
+ content: "";
61
+ left: 0;
62
+ bottom: 0;
63
+ width: 100%;
64
+ height: 1px;
65
+ background: linear-gradient(-45deg, $primary, $success, $warning, $danger);
66
+ background-size: 400% 400%;
67
+ animation: gradient 3s ease infinite;
68
+ }
69
+ }
70
+
71
+ @keyframes gradient {
72
+ 0% {
73
+ background-position: 0% 50%;
74
+ }
75
+ 50% {
76
+ background-position: 100% 50%;
77
+ }
78
+ 100% {
79
+ background-position: 0% 50%;
80
+ }
81
+ }
82
+
83
+ // // info cards end
@@ -0,0 +1,24 @@
1
+ .card-basic {
2
+ padding: 20px;
3
+ width: calc(25% - 8px);
4
+ max-width: 390px;
5
+ min-width: 290px;
6
+ position: relative;
7
+ border-radius: 2px;
8
+
9
+ .required {
10
+ position: absolute;
11
+ left: 20px;
12
+ top: -9px;
13
+ }
14
+ .c-title {
15
+ h5 {
16
+ width: calc(100% - 28px);
17
+ }
18
+ }
19
+ .c-body {
20
+ p {
21
+ color: #0c365a;
22
+ }
23
+ }
24
+ }
@@ -0,0 +1,59 @@
1
+ .card-details {
2
+ display: flex;
3
+ align-items: flex-end;
4
+ justify-content: space-between;
5
+ border: 1px solid $primary-90;
6
+ padding: 24px 20px;
7
+ border-radius: 2px;
8
+ transition: 0.3s ease-in-out;
9
+ position: relative;
10
+
11
+ figure {
12
+ margin-bottom: 8px;
13
+ }
14
+
15
+ button.ac-button.is-text {
16
+ color: $primary;
17
+ transition: 0.3s ease-in-out;
18
+ padding: 2px 0;
19
+ height: auto;
20
+ &:hover {
21
+ background-color: transparent;
22
+ }
23
+ }
24
+
25
+ &:hover:not(.no-data-available) {
26
+ // border: 1px solid $primary;
27
+ button.ac-button.is-text {
28
+ gap: 16px;
29
+ }
30
+
31
+ .right-content {
32
+ img {
33
+ filter: grayscale(0);
34
+ }
35
+ }
36
+ }
37
+
38
+ .left-content {
39
+ display: flex;
40
+ flex-direction: column;
41
+ align-items: flex-start;
42
+ gap: 8px;
43
+ justify-content: space-between;
44
+
45
+ .image {
46
+ border-radius: 50%;
47
+
48
+ &:has(.is-rounded) {
49
+ box-shadow: inset 0 0 0 1px hsla(0, 0%, 0%, 0.1);
50
+ }
51
+ }
52
+ }
53
+
54
+ .right-content {
55
+ img {
56
+ filter: grayscale(1);
57
+ }
58
+ }
59
+ }
@@ -0,0 +1,58 @@
1
+ // vendor cards start
2
+ .ac-single-card.vendor-card {
3
+ border: 1px solid $primary-90;
4
+ transition: 0.3s ease-in-out;
5
+ border-radius: 2px;
6
+ display: flex;
7
+ flex-direction: column;
8
+ justify-content: space-between;
9
+ background-color: $primary-97;
10
+ min-width: 215px;
11
+ padding: 30px 20px 20px;
12
+ cursor: pointer;
13
+
14
+ .ac-card-name {
15
+ p {
16
+ font-size: 13px;
17
+ color: $primary-10;
18
+ line-height: 1;
19
+ font-weight: 500;
20
+
21
+ &.free {
22
+ color: $primary;
23
+ }
24
+ }
25
+ }
26
+ .ac-card-logo {
27
+ width: 70px;
28
+ height: 70px;
29
+ border: 1px solid $primary-90;
30
+ background-color: $white-100;
31
+ border-radius: 50%;
32
+ padding: 16px;
33
+ margin-inline: auto;
34
+ margin-bottom: 20px;
35
+ display: flex;
36
+ align-items: center;
37
+ overflow: hidden;
38
+
39
+ img {
40
+ width: 100%;
41
+ height: auto;
42
+ }
43
+ }
44
+ &.is-selected {
45
+ border: 1px solid $primary !important;
46
+ }
47
+ &:hover {
48
+ border: 1px solid $primary;
49
+
50
+ .ac-card-title {
51
+ h4 {
52
+ a {
53
+ color: $primary;
54
+ }
55
+ }
56
+ }
57
+ }
58
+ }
@@ -0,0 +1,2 @@
1
+ @import "./content-header";
2
+ @import "./content-layout";
@@ -0,0 +1,14 @@
1
+ .ac-content-header {
2
+ display: flex;
3
+ align-items: center;
4
+ justify-content: space-between;
5
+ padding: 4px 20px;
6
+ min-height: 40px;
7
+ .ac-content-title {
8
+ h4,
9
+ h5,
10
+ h6 {
11
+ color: $primary-10;
12
+ }
13
+ }
14
+ }
@@ -0,0 +1,4 @@
1
+ .ac-content-layout {
2
+ margin-bottom: 16px;
3
+ border-radius: 4px;
4
+ }
@@ -0,0 +1,2 @@
1
+ @import "filtered-file-editor";
2
+ @import "monaco-editor";
@@ -0,0 +1,195 @@
1
+ // .preview-icon {
2
+ // width: 60px;
3
+ // height: 60px;
4
+ // background-color: rgba(25, 113, 189, 0.4);
5
+ // box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.16);
6
+ // border-radius: 4px 0px 0px 4px;
7
+ // position: fixed;
8
+ // right: 0;
9
+ // top: 400px;
10
+ // border: none;
11
+ // cursor: pointer;
12
+ // color: $white-100;
13
+ // z-index: 9999;
14
+ // transition: 0.3s ease-in-out;
15
+
16
+ // img {
17
+ // margin-bottom: 4px;
18
+ // }
19
+
20
+ // &:hover {
21
+ // background-color: $primary;
22
+ // }
23
+ // }
24
+
25
+ .ac-preview {
26
+ padding-inline: 20px;
27
+ // position: fixed;
28
+ // width: calc(100% - 90px);
29
+ // height: 100%;
30
+ // top: 50px;
31
+ // right: -100%;
32
+ // z-index: 99999;
33
+ // transition: 0.3s;
34
+
35
+ // &.is-active {
36
+ // right: 0;
37
+
38
+ // &.is-not-fixed {
39
+ // width: 100%;
40
+
41
+ // .ac-preview-body {
42
+ // padding: 20px 0 0;
43
+ // }
44
+ // }
45
+ // }
46
+
47
+ .ac-preview-inner {
48
+ // background-color: $white-100;
49
+ // border-radius: 10px 0px 0px 10px;
50
+ // height: calc(100% - 90px);
51
+
52
+ &:after {
53
+ // position: absolute;
54
+ // content: "";
55
+ // left: -90px;
56
+ // top: -50px;
57
+ // width: calc(100% + 90px);
58
+ // height: 100%;
59
+ // background-color: $white-100;
60
+
61
+ // remove opacity for fix cluster ui project
62
+ // opacity: 0.8;
63
+ // z-index: -1;
64
+ }
65
+
66
+ // .ac-preview-header {
67
+ // padding: 20px;
68
+ // border-bottom: 1px solid $black-60;
69
+
70
+ // h5 {
71
+ // font-style: normal;
72
+ // font-weight: 500;
73
+ // font-size: 24px;
74
+ // line-height: 28px;
75
+
76
+ // color: $primary-10;
77
+ // }
78
+
79
+ // .ms-back-button {
80
+ // .is-transparent {
81
+ // font-style: normal;
82
+ // font-weight: normal;
83
+ // font-size: 16px;
84
+ // line-height: 100%;
85
+ // color: $black-80;
86
+ // cursor: pointer;
87
+
88
+ // i.fa {
89
+ // color: $black-80;
90
+ // padding-left: 5px;
91
+ // }
92
+ // }
93
+ // }
94
+ // }
95
+
96
+ .ac-preview-body {
97
+ display: flex;
98
+ // margin-top: 10px;
99
+ // padding: 20px;
100
+
101
+ .left-content {
102
+ width: 250px;
103
+ margin-right: 15px;
104
+
105
+ .ac-files {
106
+ ul {
107
+ margin: 0;
108
+ padding: 0;
109
+ list-style: none;
110
+
111
+ li {
112
+ &.is-active {
113
+ a {
114
+ background-color: $primary;
115
+ border-radius: 5px;
116
+ color: $white-100;
117
+ padding: 10px 10px;
118
+ margin-left: -10px;
119
+ border-top: 1px solid transparent;
120
+
121
+ span {
122
+ img {
123
+ filter: brightness(100);
124
+ }
125
+ }
126
+ }
127
+
128
+ &:last-child {
129
+ &.is-active {
130
+ a {
131
+ border-top: 1px solid transparent;
132
+ }
133
+ }
134
+ }
135
+ }
136
+
137
+ a {
138
+ padding: 10px 0px;
139
+ display: flex;
140
+ font-style: normal;
141
+ font-weight: 500;
142
+ font-size: 14px;
143
+ line-height: 100%;
144
+ color: $primary-10;
145
+ border-top: 1px solid $primary-90;
146
+
147
+ span {
148
+ img {
149
+ margin-right: 5px;
150
+ height: 13px;
151
+ }
152
+ }
153
+ }
154
+
155
+ &:last-child {
156
+ a {
157
+ border-bottom: 1px solid $primary-90;
158
+ }
159
+ }
160
+ }
161
+ }
162
+ }
163
+ }
164
+
165
+ .right-content {
166
+ width: calc(100% - 265px);
167
+
168
+ .code-preview {
169
+ background-color: $primary-90;
170
+ border-radius: 4px;
171
+ display: flex;
172
+
173
+ .code-left {
174
+ width: 50%;
175
+ }
176
+
177
+ .code-right {
178
+ width: 50%;
179
+ }
180
+ }
181
+ }
182
+ }
183
+ }
184
+ }
185
+ .left-content {
186
+ .ac-files {
187
+ max-height: 350px;
188
+ overflow-y: auto;
189
+ padding: 10px;
190
+ span {
191
+ width: 20px;
192
+ white-space: nowrap;
193
+ }
194
+ }
195
+ }
@@ -0,0 +1,3 @@
1
+ @import "footer-area";
2
+ @import "footer-item";
3
+ @import "footer-items";
@@ -0,0 +1,26 @@
1
+ .footer-area {
2
+ position: fixed;
3
+ bottom: 0;
4
+ display: flex;
5
+ align-items: center;
6
+ justify-content: space-between;
7
+ width: calc(100% - 250px);
8
+ min-height: 30px;
9
+ padding: 0 20px;
10
+ background: $primary-20;
11
+ border-top: 1px solid #3d5e7c;
12
+ z-index: 9999;
13
+ transition: 0.3s ease-in-out;
14
+ }
15
+
16
+ .footer-left,
17
+ .footer-right {
18
+ display: flex;
19
+ align-items: center;
20
+ gap: 32px;
21
+ }
22
+ .sidebar-collapsed {
23
+ .footer-area {
24
+ width: calc(100% - 60px);
25
+ }
26
+ }
@@ -0,0 +1,14 @@
1
+ .footer-item {
2
+ display: flex;
3
+ align-items: center;
4
+ gap: 4px;
5
+ font-weight: 500;
6
+ color: $primary-90;
7
+ font-size: 12px;
8
+ &.has-text-danger {
9
+ color: $red-80 !important;
10
+ }
11
+ &.has-text-success {
12
+ color: $green-50 !important;
13
+ }
14
+ }
@@ -0,0 +1,5 @@
1
+ .footer-items {
2
+ display: flex;
3
+ align-items: center;
4
+ gap: 16px;
5
+ }
@@ -0,0 +1,4 @@
1
+ @import "input";
2
+ @import "file-upload";
3
+ @import "image-upload";
4
+ @import "form-footer";
@@ -0,0 +1,42 @@
1
+ .file-upload {
2
+ border: 1px dashed $primary-80;
3
+ border-radius: 4px;
4
+ &:hover {
5
+ background-color: $primary-97;
6
+
7
+ label {
8
+ .upload-icon {
9
+ border: 1px solid $primary-80;
10
+ svg {
11
+ color: $primary-10;
12
+ }
13
+ }
14
+ }
15
+ }
16
+ label {
17
+ cursor: pointer;
18
+ padding: 32px;
19
+ display: block;
20
+ .upload-icon {
21
+ border: 1px solid $primary-90;
22
+ display: inline-flex;
23
+ align-items: center;
24
+ justify-content: center;
25
+ border-radius: 50%;
26
+ width: 100px;
27
+ height: 100px;
28
+ margin-bottom: 24px;
29
+ padding: 24px;
30
+
31
+ svg {
32
+ color: $primary-30;
33
+ }
34
+ }
35
+ p {
36
+ color: $primary-10;
37
+ strong {
38
+ font-weight: 600;
39
+ }
40
+ }
41
+ }
42
+ }
@@ -0,0 +1,9 @@
1
+ .form-footer {
2
+ display: flex;
3
+ align-items: center;
4
+ justify-content: space-between;
5
+ margin-left: -20px;
6
+ margin-right: -20px;
7
+ border-top: 1px solid $primary-90;
8
+ padding: 16px 20px;
9
+ }
@@ -257,24 +257,6 @@
257
257
  margin-bottom: 0;
258
258
  }
259
259
 
260
- &.is-dark {
261
- input {
262
- background-color: $primary-10;
263
- border-color: transparent;
264
- color: $white-100;
265
-
266
- &::placeholder {
267
- color: $primary-10;
268
- }
269
-
270
- button {
271
- i.fa {
272
- color: $white-100;
273
- }
274
- }
275
- }
276
- }
277
-
278
260
  label {
279
261
  font-size: 13px;
280
262
  left: 15px;
@@ -313,12 +295,6 @@
313
295
  margin-top: -1px;
314
296
  z-index: -1;
315
297
  }
316
-
317
- // &.is-required {
318
- // &:after {
319
- // width: calc(100% + 10px);
320
- // }
321
- // }
322
298
  }
323
299
  }
324
300
 
@@ -373,12 +349,7 @@
373
349
  transition: 0.3s;
374
350
 
375
351
  &:hover {
376
- background-color: hsla(
377
- var(--hsl-hue),
378
- var(--hsl-saturation),
379
- var(--hsl-lightness),
380
- 0.2
381
- );
352
+ background-color: $primary-20;
382
353
  color: $primary;
383
354
  }
384
355
  }
@@ -399,7 +370,7 @@
399
370
  border: 1px solid $primary-80;
400
371
  background-color: transparent;
401
372
  padding: 10px 15px;
402
- min-height: 50px;
373
+ min-height: 150px;
403
374
 
404
375
  &.bg-white {
405
376
  background-color: transparent;
@@ -426,7 +397,7 @@
426
397
  font-size: 13px;
427
398
 
428
399
  &:hover {
429
- border-color: $black-70;
400
+ border-color: $primary-70;
430
401
  }
431
402
 
432
403
  &.bg-white {
@@ -571,3 +542,47 @@
571
542
  background-color: $primary-95;
572
543
  }
573
544
  }
545
+
546
+ // file upload
547
+ .file-upload {
548
+ border: 1px dashed $primary-80;
549
+ border-radius: 4px;
550
+ &:hover {
551
+ background-color: $primary-97;
552
+
553
+ label {
554
+ .upload-icon {
555
+ border: 1px solid $primary-80;
556
+ svg {
557
+ color: $primary-10;
558
+ }
559
+ }
560
+ }
561
+ }
562
+ label {
563
+ cursor: pointer;
564
+ padding: 32px;
565
+ display: block;
566
+ .upload-icon {
567
+ border: 1px solid $primary-90;
568
+ display: inline-flex;
569
+ align-items: center;
570
+ justify-content: center;
571
+ border-radius: 50%;
572
+ width: 100px;
573
+ height: 100px;
574
+ margin-bottom: 24px;
575
+ padding: 24px;
576
+
577
+ svg {
578
+ color: $primary-30;
579
+ }
580
+ }
581
+ p {
582
+ color: $primary-10;
583
+ strong {
584
+ font-weight: 600;
585
+ }
586
+ }
587
+ }
588
+ }
@@ -0,0 +1,13 @@
1
+ .header-item {
2
+ display: inline-block;
3
+ margin-left: 8px;
4
+ vertical-align: middle;
5
+
6
+ &:first-child {
7
+ margin-left: 0;
8
+ }
9
+
10
+ .select:not(.is-multiple) {
11
+ height: auto;
12
+ }
13
+ }
@@ -0,0 +1,7 @@
1
+ .inner-header {
2
+ padding: 6px 20px;
3
+ border-bottom: 1px solid $primary-95;
4
+ position: sticky;
5
+ background: $white-100;
6
+ z-index: 99;
7
+ }
@@ -0,0 +1,2 @@
1
+ @import "navbar";
2
+ @import "notification";