@appscode/design-system 0.0.21-alpha.2 → 0.4.27
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.
- package/base/utilities/_all.scss +7 -0
- package/base/utilities/_customize-bulma.scss +191 -0
- package/base/utilities/_default.scss +319 -110
- package/base/utilities/_derived-variables.scss +8 -15
- package/base/utilities/_grid.scss +29 -0
- package/base/utilities/_initial-variables.scss +111 -72
- package/base/utilities/_mixin.scss +90 -10
- package/base/utilities/_typography.scss +29 -19
- package/base/utilities/dark-theme.scss +26 -0
- package/components/_ac-accordion.scss +15 -5
- package/components/_ac-alert-box.scss +109 -26
- package/components/_ac-card.scss +71 -24
- package/components/_ac-code-highlight.scss +7 -1
- package/components/_ac-content-layout.scss +5 -5
- package/components/_ac-drag.scss +8 -6
- package/components/_ac-input.scss +196 -38
- package/components/_ac-modal.scss +6 -5
- package/components/_ac-multi-select.scss +281 -23
- package/components/_ac-options.scss +31 -16
- package/components/_ac-report.scss +53 -0
- package/components/_ac-select-box.scss +15 -5
- package/components/_ac-table.scss +160 -39
- package/components/_ac-tabs.scss +86 -23
- package/components/_ac-tags.scss +87 -2
- package/components/_ac-terminal.scss +270 -0
- package/components/_all.scss +28 -0
- package/components/_app-drawer.scss +134 -0
- package/components/_breadcumb.scss +8 -3
- package/components/_buttons.scss +96 -62
- package/components/_card-body-wrapper.scss +3 -3
- package/components/_dashboard-header.scss +33 -1
- package/components/_direct-deploy.scss +69 -0
- package/components/_go-to-top.scss +1 -1
- package/components/_graph.scss +45 -0
- package/components/_image-upload.scss +6 -4
- package/components/_left-sidebar-menu.scss +212 -52
- package/components/_monaco-editor.scss +1 -1
- package/components/_navbar.scss +193 -31
- package/components/_overview-info.scss +4 -4
- package/components/_overview-page.scss +1 -2
- package/components/_pagination.scss +45 -7
- package/components/_payment-card.scss +28 -12
- package/components/_preloader.scss +1 -1
- package/components/_preview-modal.scss +22 -9
- package/components/_pricing-table.scss +1 -1
- package/components/_progress-bar.scss +5 -5
- package/components/_subscription-card.scss +15 -8
- package/components/_table-of-content.scss +1 -1
- package/components/_tfa.scss +69 -0
- package/components/_transitions.scss +261 -0
- package/components/_widget-menu.scss +9 -9
- package/components/_wizard.scss +33 -20
- package/components/ac-toaster/_ac-toasted.scss +40 -8
- package/components/bbum/_all.scss +9 -0
- package/components/bbum/_card-team.scss +18 -10
- package/components/bbum/_information-center.scss +19 -5
- package/components/bbum/_mobile-desktop.scss +6 -6
- package/components/bbum/_post.scss +5 -4
- package/components/bbum/_sign-up-notification.scss +6 -6
- package/components/bbum/_single-post-preview.scss +10 -10
- package/components/bbum/_user-profile.scss +97 -90
- package/components/ui-builder/_ui-builder.scss +98 -21
- package/components/ui-builder/_vue-open-api.scss +104 -0
- package/layouts/_404.scss +159 -0
- package/layouts/_all.scss +2 -0
- package/layouts/_code-preview.scss +19 -8
- package/main.scss +6 -53
- package/package.json +4 -7
- package/plugins/caching.ts +243 -0
- package/plugins/theme.js +142 -0
- package/plugins/time-convert.js +49 -0
- package/plugins/vue-toaster.js +10 -6
- package/vue-components/v2/banner/Banner.vue +2 -2
- package/vue-components/v2/breadcrumbs/Breadcrumb.vue +97 -0
- package/vue-components/v2/button/Button.vue +10 -1
- package/vue-components/v2/button/DownloadBtn.vue +45 -0
- package/vue-components/v2/card/Card.vue +1 -0
- package/vue-components/v2/card/CardContent.vue +5 -0
- package/vue-components/v2/card/CardHeader.vue +12 -0
- package/vue-components/v2/card/OverviewCard.vue +10 -0
- package/vue-components/v2/card/OverviewCards.vue +5 -0
- package/vue-components/v2/card/PaymentCard.vue +69 -0
- package/vue-components/v2/card/PaymentCardOptionButtons.vue +35 -0
- package/vue-components/v2/card/PaymentCards.vue +44 -0
- package/vue-components/v2/content/ContentHeader.vue +9 -5
- package/vue-components/v2/content/ContentTable.vue +12 -7
- package/vue-components/v2/editor/Editor.vue +38 -5
- package/vue-components/v2/editor/FilteredFileEditor.vue +189 -0
- package/vue-components/v2/editor/MonacoEditor.vue +125 -0
- package/vue-components/v2/editor/ResourceKeyValueEditor.vue +209 -0
- package/vue-components/v2/form/Form.vue +12 -7
- package/vue-components/v2/form-fields/Input.vue +1 -1
- package/vue-components/v2/header/Header.vue +0 -1
- package/vue-components/v2/loaders/ResourceLoader.vue +101 -0
- package/vue-components/v2/loaders/SidebarLoader.vue +43 -0
- package/vue-components/v2/modal/Modal.vue +40 -7
- package/vue-components/v2/modals/DeleteConfirmationModal.vue +79 -0
- package/vue-components/v2/modals/JsonShowModal.vue +12 -3
- package/vue-components/v2/navbar/Appdrawer.vue +10 -9
- package/vue-components/v2/navbar/ThemeMode.vue +120 -0
- package/vue-components/v2/navbar/User.vue +229 -17
- package/vue-components/v2/notification/Notification.vue +101 -0
- package/vue-components/v2/notification/NotificationItem.vue +44 -0
- package/vue-components/v2/pagination/Pagination.vue +24 -4
- package/vue-components/v2/preloader/Preloader.vue +5 -5
- package/vue-components/v2/sidebar/ClusterSwitcher.vue +126 -0
- package/vue-components/v2/sidebar/SidebarItem.vue +24 -2
- package/vue-components/v2/sidebar/SidebarItemWithDropDown.vue +19 -20
- package/vue-components/v2/tab/TabItem.vue +1 -1
- package/vue-components/v2/table/FakeTableCell.vue +36 -0
- package/vue-components/v2/table/InfoTable.vue +13 -3
- package/vue-components/v2/table/NarrowTable.vue +0 -2
- package/vue-components/v2/table/Table.vue +170 -10
- package/vue-components/v2/table/TableRow.vue +29 -2
- package/vue-components/v2/table/table-cell/CellValue.vue +33 -4
- package/vue-components/v2/table/table-cell/GenericCell.vue +56 -0
- package/vue-components/v2/table/table-cell/ObjectCell.vue +4 -1
- package/vue-components/v2/tabs/EditorTabs.vue +1 -1
- package/vue-components/v3/button/Button.vue +78 -0
- package/vue-components/v3/content/ContentHeader.vue +55 -0
- package/vue-components/v3/content/ContentTable.vue +83 -0
- package/vue-components/v3/dropdown/DropdownDivider.vue +3 -0
- package/vue-components/v3/dropdown/DropdownItem.vue +5 -0
- package/vue-components/v3/dropdown/DropdownMenu.vue +111 -0
- package/vue-components/v3/editor/Editor.vue +160 -0
- package/vue-components/v3/editor/FilteredFileEditor.vue +186 -0
- package/vue-components/v3/editor/MonacoEditor.vue +131 -0
- package/vue-components/v3/editor/ResourceKeyValueEditor.vue +125 -0
- package/vue-components/v3/form/Form.vue +63 -0
- package/vue-components/v3/form-fields/Input.vue +22 -0
- package/vue-components/v3/header/Header.vue +45 -0
- package/vue-components/v3/header/HeaderItem.vue +5 -0
- package/vue-components/v3/header/HeaderItems.vue +5 -0
- package/vue-components/v3/loaders/ResourceLoader.vue +83 -0
- package/vue-components/v3/loaders/SidebarLoader.vue +34 -0
- package/vue-components/v3/long-running-tasks/LongRunningTaskItem.vue +92 -0
- package/vue-components/v3/modal/Modal.vue +158 -0
- package/vue-components/v3/modals/DeleteConfirmationModal.vue +85 -0
- package/vue-components/v3/modals/JsonShowModal.vue +96 -0
- package/vue-components/v3/modals/LongRunningTasksModal.vue +373 -0
- package/vue-components/v3/navbar/Appdrawer.vue +63 -0
- package/vue-components/v3/navbar/ThemeMode.vue +120 -0
- package/vue-components/v3/navbar/User.vue +288 -0
- package/vue-components/v3/notification/Notification.vue +98 -0
- package/vue-components/v3/notification/NotificationItem.vue +52 -0
- package/vue-components/v3/pagination/Pagination.vue +172 -0
- package/vue-components/v3/searchbars/SearchBar.vue +47 -0
- package/vue-components/v3/sidebar/ClusterSwitcher.vue +133 -0
- package/vue-components/v3/sidebar/SidebarItemWithDropDown.vue +120 -0
- package/vue-components/v3/tab/TabItem.vue +17 -0
- package/vue-components/v3/table/FakeTableCell.vue +39 -0
- package/vue-components/v3/table/InfoTable.vue +105 -0
- package/vue-components/v3/table/MultiInfoTable.vue +143 -0
- package/vue-components/v3/table/Table.vue +272 -0
- package/vue-components/v3/table/TableCell.vue +28 -0
- package/vue-components/v3/table/TableContainer.vue +34 -0
- package/vue-components/v3/table/TableRow.vue +147 -0
- package/vue-components/v3/table/table-cell/ArrayCell.vue +111 -0
- package/vue-components/v3/table/table-cell/CellValue.vue +133 -0
- package/vue-components/v3/table/table-cell/GenericCell.vue +75 -0
- package/vue-components/v3/table/table-cell/ObjectCell.vue +110 -0
- package/vue-components/v3/table/table-cell/ValueWithModal.vue +43 -0
- package/vue-components/v3/tabs/EditorTabs.vue +36 -0
- package/vue-components/v3/tag/Tag.vue +17 -0
- package/vue-components/v3/terminal/LongRunningTaskTerminal.vue +148 -0
|
@@ -1,113 +1,120 @@
|
|
|
1
|
-
.user-
|
|
2
|
-
.user-profile-
|
|
3
|
-
|
|
4
|
-
border-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
background-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
top: 15px;
|
|
28
|
-
font-size: 18px;
|
|
29
|
-
color: $ac-white;
|
|
30
|
-
background-color: transparent;
|
|
31
|
-
border: none;
|
|
32
|
-
cursor: pointer;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
.profile-information {
|
|
37
|
-
.profile-top-info {
|
|
38
|
-
display: flex;
|
|
39
|
-
align-items: center;
|
|
40
|
-
justify-content: space-between;
|
|
41
|
-
|
|
42
|
-
h3 {
|
|
43
|
-
font-size: 26px;
|
|
44
|
-
line-height: 1.4;
|
|
45
|
-
|
|
46
|
-
span {
|
|
47
|
-
font-size: 14px;
|
|
48
|
-
line-height: 1.5;
|
|
49
|
-
font-weight: 400;
|
|
50
|
-
display: block;
|
|
51
|
-
color: #74818d;
|
|
1
|
+
.ac-system-body.bb-user-management {
|
|
2
|
+
.user-profile-wrapper {
|
|
3
|
+
padding: 20px;
|
|
4
|
+
border-right: 1px solid $ac-white-light;
|
|
5
|
+
height: calc(100vh - 52px);
|
|
6
|
+
position: sticky;
|
|
7
|
+
top: 52px;
|
|
8
|
+
|
|
9
|
+
.user-profile-photo {
|
|
10
|
+
background-color: $ac-white;
|
|
11
|
+
border-radius: 4px;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
position: relative;
|
|
14
|
+
z-index: 1;
|
|
15
|
+
margin-bottom: 10px;
|
|
16
|
+
|
|
17
|
+
.thumbnail {
|
|
18
|
+
height: 240px;
|
|
19
|
+
background-size: cover;
|
|
20
|
+
background-position: center;
|
|
21
|
+
background-color: $ac-gray-lightest;
|
|
22
|
+
background-repeat: no-repeat;
|
|
23
|
+
border-radius: 10px;
|
|
24
|
+
|
|
25
|
+
&.profile-1 {
|
|
26
|
+
background-image: url("~@appscode/design-system-images/icons/appscode-large-icon.jpg");
|
|
52
27
|
}
|
|
53
28
|
}
|
|
54
|
-
}
|
|
55
29
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
30
|
+
.setting-button {
|
|
31
|
+
position: absolute;
|
|
32
|
+
left: 15px;
|
|
33
|
+
top: 15px;
|
|
34
|
+
font-size: 18px;
|
|
35
|
+
color: $ac-white;
|
|
36
|
+
background-color: transparent;
|
|
37
|
+
border: none;
|
|
38
|
+
cursor: pointer;
|
|
39
|
+
}
|
|
65
40
|
}
|
|
66
41
|
|
|
67
|
-
.
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
margin-
|
|
73
|
-
display: inline-block;
|
|
74
|
-
|
|
75
|
-
&:last-child {
|
|
76
|
-
margin-right: 0;
|
|
77
|
-
}
|
|
42
|
+
.profile-information {
|
|
43
|
+
.profile-top-info {
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
justify-content: space-between;
|
|
47
|
+
margin-bottom: 10px;
|
|
78
48
|
|
|
79
|
-
|
|
80
|
-
|
|
49
|
+
h3 {
|
|
50
|
+
font-size: 26px;
|
|
51
|
+
line-height: 1.4;
|
|
52
|
+
|
|
53
|
+
span {
|
|
54
|
+
font-size: 14px;
|
|
55
|
+
line-height: 1.5;
|
|
56
|
+
font-weight: 400;
|
|
57
|
+
display: block;
|
|
58
|
+
color: $ac-color-value;
|
|
59
|
+
}
|
|
81
60
|
}
|
|
82
61
|
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
.edit-profile {
|
|
86
|
-
background-color: transparent;
|
|
87
|
-
}
|
|
88
62
|
|
|
89
|
-
|
|
90
|
-
|
|
63
|
+
.edit-icon {
|
|
64
|
+
max-width: 16px;
|
|
65
|
+
}
|
|
91
66
|
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
67
|
+
p {
|
|
68
|
+
font-size: 14px;
|
|
69
|
+
color: $ac-color-text;
|
|
70
|
+
line-height: 160%;
|
|
96
71
|
margin-bottom: 10px;
|
|
72
|
+
}
|
|
97
73
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
}
|
|
74
|
+
.social-links {
|
|
75
|
+
margin-bottom: 20px;
|
|
101
76
|
|
|
102
|
-
|
|
103
|
-
max-width:
|
|
77
|
+
a {
|
|
78
|
+
max-width: 26px;
|
|
104
79
|
margin-right: 10px;
|
|
80
|
+
display: inline-block;
|
|
81
|
+
|
|
82
|
+
&:last-child {
|
|
83
|
+
margin-right: 0;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
img {
|
|
87
|
+
width: 100%;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
.website-link {
|
|
92
|
+
margin-top: 20px;
|
|
93
|
+
|
|
94
|
+
a {
|
|
95
|
+
color: $ac-primary;
|
|
96
|
+
display: flex;
|
|
97
|
+
align-items: center;
|
|
98
|
+
margin-bottom: 10px;
|
|
99
|
+
font-size: 13px;
|
|
100
|
+
&:last-child {
|
|
101
|
+
margin-bottom: 0;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
img {
|
|
105
|
+
max-width: 15px;
|
|
106
|
+
margin-right: 10px;
|
|
107
|
+
}
|
|
105
108
|
}
|
|
106
109
|
}
|
|
107
110
|
}
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
114
|
+
.sign-up-notification {
|
|
115
|
+
border: 1px solid $ac-white-light;
|
|
116
|
+
padding: 20px;
|
|
117
|
+
}
|
|
111
118
|
// circle type profile start
|
|
112
119
|
.ac-profile-photo {
|
|
113
120
|
figure {
|
|
@@ -12,23 +12,40 @@
|
|
|
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;
|
|
23
|
+
color: $ac-color-value;
|
|
21
24
|
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.key-value-save {
|
|
28
|
+
display: grid;
|
|
29
|
+
grid-template-columns: 1fr 1fr auto;
|
|
30
|
+
grid-gap: 15px;
|
|
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
|
+
|
|
45
|
+
.value-list-save {
|
|
46
|
+
display: grid;
|
|
47
|
+
grid-template-columns: 1fr auto;
|
|
48
|
+
grid-gap: 15px;
|
|
32
49
|
}
|
|
33
50
|
|
|
34
51
|
// nested elements start
|
|
@@ -37,16 +54,20 @@
|
|
|
37
54
|
padding-left: 20px;
|
|
38
55
|
position: relative;
|
|
39
56
|
z-index: 1;
|
|
57
|
+
|
|
40
58
|
&:first-child {
|
|
41
59
|
margin-left: -20px;
|
|
42
60
|
}
|
|
61
|
+
|
|
43
62
|
&.is-active {
|
|
44
63
|
&::after {
|
|
45
64
|
border: 1px dashed $ac-primary;
|
|
46
65
|
}
|
|
66
|
+
|
|
47
67
|
&::before {
|
|
48
68
|
background-color: $ac-primary;
|
|
49
69
|
}
|
|
70
|
+
|
|
50
71
|
.nested-header {
|
|
51
72
|
h6 {
|
|
52
73
|
.collaps-icon {
|
|
@@ -56,14 +77,15 @@
|
|
|
56
77
|
}
|
|
57
78
|
}
|
|
58
79
|
}
|
|
80
|
+
|
|
59
81
|
&::after {
|
|
60
82
|
position: absolute;
|
|
61
83
|
content: "";
|
|
62
84
|
left: 27px;
|
|
63
|
-
top:
|
|
85
|
+
top: 10px;
|
|
64
86
|
width: 1px;
|
|
65
87
|
height: calc(100% - 20px);
|
|
66
|
-
border: 1px dashed
|
|
88
|
+
border: 1px dashed $ac-white-light;
|
|
67
89
|
z-index: -1;
|
|
68
90
|
}
|
|
69
91
|
|
|
@@ -74,19 +96,22 @@
|
|
|
74
96
|
bottom: 6px;
|
|
75
97
|
width: 12px;
|
|
76
98
|
height: 12px;
|
|
77
|
-
background:
|
|
99
|
+
background-color: $ac-white-light;
|
|
78
100
|
border-radius: 50%;
|
|
79
101
|
z-index: -1;
|
|
80
102
|
}
|
|
103
|
+
|
|
81
104
|
.nested-header {
|
|
82
105
|
display: flex;
|
|
83
106
|
align-items: center;
|
|
84
107
|
justify-content: space-between;
|
|
85
108
|
margin-bottom: 5px;
|
|
109
|
+
|
|
86
110
|
h6 {
|
|
87
111
|
display: flex;
|
|
88
112
|
align-items: center;
|
|
89
113
|
cursor: pointer;
|
|
114
|
+
|
|
90
115
|
.collaps-icon {
|
|
91
116
|
width: 16px;
|
|
92
117
|
height: 16px;
|
|
@@ -94,35 +119,52 @@
|
|
|
94
119
|
display: inline-block;
|
|
95
120
|
text-align: center;
|
|
96
121
|
font-size: 10px;
|
|
97
|
-
border: 1px solid
|
|
122
|
+
border: 1px solid $ac-white-light;
|
|
98
123
|
border-radius: 50%;
|
|
99
124
|
margin-right: 10px;
|
|
100
125
|
cursor: pointer;
|
|
101
|
-
background-color:
|
|
126
|
+
background-color: $ac-white;
|
|
127
|
+
color: $ac-color-value;
|
|
128
|
+
|
|
129
|
+
&.is-disabled {
|
|
130
|
+
cursor: not-allowed;
|
|
131
|
+
}
|
|
102
132
|
}
|
|
103
133
|
}
|
|
104
134
|
}
|
|
135
|
+
|
|
105
136
|
.nested-body {
|
|
106
137
|
padding-left: 24px;
|
|
107
138
|
}
|
|
108
139
|
}
|
|
109
140
|
|
|
141
|
+
.is-visibility-hidden {
|
|
142
|
+
visibility: hidden !important;
|
|
143
|
+
height: 0 !important;
|
|
144
|
+
opacity: 0 !important;
|
|
145
|
+
}
|
|
146
|
+
|
|
110
147
|
// nested elements end
|
|
111
148
|
|
|
112
149
|
.table-wrapper {
|
|
113
150
|
overflow-x: auto;
|
|
151
|
+
|
|
114
152
|
.table-inner {
|
|
115
153
|
min-width: 630px;
|
|
154
|
+
|
|
116
155
|
.thead {
|
|
117
|
-
background-color:
|
|
156
|
+
background-color: $ac-white-lighter;
|
|
157
|
+
|
|
118
158
|
.tr {
|
|
119
159
|
.th {
|
|
120
160
|
font-weight: 600;
|
|
121
161
|
}
|
|
122
|
-
|
|
123
|
-
border-
|
|
162
|
+
|
|
163
|
+
border-top: 1px solid var(--ac-white-light);
|
|
164
|
+
border-bottom: 1px solid var(--ac-white-light);
|
|
124
165
|
}
|
|
125
166
|
}
|
|
167
|
+
|
|
126
168
|
.thead,
|
|
127
169
|
.tbody {
|
|
128
170
|
.tr {
|
|
@@ -143,17 +185,25 @@
|
|
|
143
185
|
|
|
144
186
|
.tbody {
|
|
145
187
|
.tr {
|
|
146
|
-
border-bottom: 1px solid
|
|
188
|
+
border-bottom: 1px solid $ac-white-light;
|
|
147
189
|
}
|
|
148
190
|
}
|
|
149
191
|
}
|
|
192
|
+
|
|
150
193
|
.is-selected {
|
|
151
|
-
border: 1px solid
|
|
152
|
-
border-bottom: 1px solid
|
|
194
|
+
border: 1px solid $ac-primary;
|
|
195
|
+
border-bottom: 1px solid $ac-primary !important;
|
|
153
196
|
border-radius: 4px;
|
|
154
197
|
}
|
|
155
198
|
}
|
|
156
199
|
|
|
200
|
+
.is-collapsed {
|
|
201
|
+
&.ac-nested-elements::before,
|
|
202
|
+
&.ac-nested-elements::after {
|
|
203
|
+
display: none;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
|
|
157
207
|
// details with checkradio
|
|
158
208
|
.details-with-checkradio-wrapper {
|
|
159
209
|
display: grid;
|
|
@@ -161,6 +211,33 @@
|
|
|
161
211
|
grid-gap: 15px;
|
|
162
212
|
}
|
|
163
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
|
|
164
241
|
/****************************************
|
|
165
242
|
Responsive Classes
|
|
166
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,159 @@
|
|
|
1
|
+
.fzf-wrapper {
|
|
2
|
+
padding: 45px 0;
|
|
3
|
+
position: relative;
|
|
4
|
+
z-index: 1;
|
|
5
|
+
background-size: cover;
|
|
6
|
+
background-position: center;
|
|
7
|
+
|
|
8
|
+
&.fzf-bg {
|
|
9
|
+
background-image: url("~@/assets/images/404/404-bg.png");
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.fzf-left-content-wrapper {
|
|
13
|
+
.fzf-content-inner {
|
|
14
|
+
padding: 110px 0;
|
|
15
|
+
|
|
16
|
+
h1 {
|
|
17
|
+
font-size: 261px;
|
|
18
|
+
line-height: 1;
|
|
19
|
+
font-weight: 700;
|
|
20
|
+
color: #1c2c41;
|
|
21
|
+
margin-bottom: 60px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
h2 {
|
|
25
|
+
font-size: 36px;
|
|
26
|
+
font-weight: 700;
|
|
27
|
+
color: #1c2c41;
|
|
28
|
+
margin-bottom: 10px;
|
|
29
|
+
line-height: 46px;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
p {
|
|
33
|
+
font-size: 16px;
|
|
34
|
+
color: #4a4a4a;
|
|
35
|
+
opacity: 0.8;
|
|
36
|
+
margin-bottom: 30px;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.animation-infinity {
|
|
43
|
+
position: relative;
|
|
44
|
+
animation: animation-jump 2s ease-in-out infinite;
|
|
45
|
+
-webkit-animation: animation-jump 2s ease-in-out infinite;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
@-webkit-keyframes animation-jump {
|
|
49
|
+
0% {
|
|
50
|
+
top: 3px;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
50% {
|
|
54
|
+
top: -3px;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
100% {
|
|
58
|
+
top: 3px;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
@keyframes animation-jump {
|
|
63
|
+
0% {
|
|
64
|
+
top: 3px;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
50% {
|
|
68
|
+
top: -3px;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
100% {
|
|
72
|
+
top: 3px;
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
/*=================================================================================================
|
|
77
|
+
Responsive code start
|
|
78
|
+
=================================================================================================*/
|
|
79
|
+
/****************************************************************
|
|
80
|
+
Full HD Min Width 1407
|
|
81
|
+
**************************************************************** */
|
|
82
|
+
/* Full HD Min Width 1408px */
|
|
83
|
+
@media (min-width: 1408px) {
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
/****************************************************************
|
|
87
|
+
Widescreen Between 1216px and 1407px
|
|
88
|
+
**************************************************************** */
|
|
89
|
+
@media (min-width: 1216px) and (max-width: 1407px) {
|
|
90
|
+
.fzf-wrapper {
|
|
91
|
+
.fzf-left-content-wrapper {
|
|
92
|
+
.fzf-content-inner {
|
|
93
|
+
h1 {
|
|
94
|
+
font-size: 220px;
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/****************************************************************
|
|
102
|
+
Desktop Between 1024px and 1215px
|
|
103
|
+
**************************************************************** */
|
|
104
|
+
@media (min-width: 1024px) and (max-width: 1215px) {
|
|
105
|
+
.fzf-wrapper {
|
|
106
|
+
.fzf-left-content-wrapper {
|
|
107
|
+
.fzf-content-inner {
|
|
108
|
+
padding: 70px 0;
|
|
109
|
+
|
|
110
|
+
h1 {
|
|
111
|
+
font-size: 200px;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/****************************************************************
|
|
119
|
+
Tablet Between 769px and 1023px
|
|
120
|
+
**************************************************************** */
|
|
121
|
+
@media (min-width: 769px) and (max-width: 1023px) {
|
|
122
|
+
.fzf-wrapper {
|
|
123
|
+
.fzf-left-content-wrapper {
|
|
124
|
+
.fzf-content-inner {
|
|
125
|
+
padding: 70px 0;
|
|
126
|
+
|
|
127
|
+
h1 {
|
|
128
|
+
font-size: 200px;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
/****************************************************************
|
|
136
|
+
Mobile Up to 768px.
|
|
137
|
+
**************************************************************** */
|
|
138
|
+
@media only screen and (min-width: 100px) and (max-width: 768px) {
|
|
139
|
+
.fzf-wrapper {
|
|
140
|
+
.fzf-left-content-wrapper {
|
|
141
|
+
.fzf-content-inner {
|
|
142
|
+
padding: 60px 0;
|
|
143
|
+
|
|
144
|
+
h1 {
|
|
145
|
+
font-size: 150px;
|
|
146
|
+
margin-bottom: 10px;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
h2 {
|
|
150
|
+
font-size: 30px;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
/*=================================================================================================
|
|
158
|
+
Responsive code end
|
|
159
|
+
=================================================================================================*/
|