@updevs/components 1.0.0-alpha.1 → 1.0.0-alpha.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.
- package/README.md +5 -22
- package/assets/styles/_bootstrap-components.scss +38 -0
- package/assets/styles/_bootstrap-config.scss +7 -0
- package/assets/styles/_bootstrap-override.scss +78 -0
- package/assets/styles/_config.scss +9 -0
- package/assets/styles/_core.scss +71 -0
- package/assets/styles/_mixins.scss +2 -0
- package/assets/styles/_updevs.scss +9 -0
- package/assets/styles/_utilities.scss +98 -0
- package/assets/styles/_variables-dark.scss +17 -0
- package/assets/styles/_variables.scss +934 -0
- package/assets/styles/fonts/_webfonts.scss +15 -0
- package/assets/styles/layout/_animations.scss +62 -0
- package/assets/styles/layout/_core.scss +61 -0
- package/assets/styles/layout/_dark.scss +72 -0
- package/assets/styles/layout/_footer.scss +12 -0
- package/assets/styles/layout/_navbar.scss +380 -0
- package/assets/styles/layout/_page.scss +169 -0
- package/assets/styles/layout/_root.scss +72 -0
- package/assets/styles/mixins/_functions.scss +43 -0
- package/assets/styles/mixins/_mixins.scss +68 -0
- package/assets/styles/ui/_accordion.scss +24 -0
- package/assets/styles/ui/_alerts.scss +59 -0
- package/assets/styles/ui/_avatars.scss +118 -0
- package/assets/styles/ui/_badges.scss +79 -0
- package/assets/styles/ui/_breadcrumbs.scss +50 -0
- package/assets/styles/ui/_button-group.scss +16 -0
- package/assets/styles/ui/_buttons.scss +265 -0
- package/assets/styles/ui/_calendars.scss +104 -0
- package/assets/styles/ui/_cards.scss +586 -0
- package/assets/styles/ui/_carousel.scss +68 -0
- package/assets/styles/ui/_charts.scss +61 -0
- package/assets/styles/ui/_chips.scss +0 -0
- package/assets/styles/ui/_close.scss +7 -0
- package/assets/styles/ui/_datagrid.scss +17 -0
- package/assets/styles/ui/_dropdowns.scss +117 -0
- package/assets/styles/ui/_empty.scss +65 -0
- package/assets/styles/ui/_flags.scss +31 -0
- package/assets/styles/ui/_forms.scss +224 -0
- package/assets/styles/ui/_grid.scss +115 -0
- package/assets/styles/ui/_icons.scss +72 -0
- package/assets/styles/ui/_images.scss +15 -0
- package/assets/styles/ui/_legend.scss +12 -0
- package/assets/styles/ui/_lists.scss +127 -0
- package/assets/styles/ui/_loaders.scss +72 -0
- package/assets/styles/ui/_login.scss +3 -0
- package/assets/styles/ui/_markdown.scss +42 -0
- package/assets/styles/ui/_modals.scss +67 -0
- package/assets/styles/ui/_nav.scss +92 -0
- package/assets/styles/ui/_offcanvas.scss +17 -0
- package/assets/styles/ui/_pagination.scss +56 -0
- package/assets/styles/ui/_payments.scss +28 -0
- package/assets/styles/ui/_placeholder.scss +9 -0
- package/assets/styles/ui/_popovers.scss +2 -0
- package/assets/styles/ui/_progress.scss +107 -0
- package/assets/styles/ui/_ribbons.scss +156 -0
- package/assets/styles/ui/_stars.scss +13 -0
- package/assets/styles/ui/_status.scss +163 -0
- package/assets/styles/ui/_steps.scss +152 -0
- package/assets/styles/ui/_switch-icon.scss +211 -0
- package/assets/styles/ui/_tables.scss +150 -0
- package/assets/styles/ui/_tags.scss +57 -0
- package/assets/styles/ui/_timeline.scss +61 -0
- package/assets/styles/ui/_toasts.scss +19 -0
- package/assets/styles/ui/_toolbar.scss +10 -0
- package/assets/styles/ui/_tracking.scss +29 -0
- package/assets/styles/ui/_type.scss +169 -0
- package/assets/styles/ui/forms/_form-check.scss +91 -0
- package/assets/styles/ui/forms/_form-colorinput.scss +54 -0
- package/assets/styles/ui/forms/_form-custom.scss +28 -0
- package/assets/styles/ui/forms/_form-icon.scss +35 -0
- package/assets/styles/ui/forms/_form-imagecheck.scss +104 -0
- package/assets/styles/ui/forms/_form-selectgroup.scss +153 -0
- package/assets/styles/ui/forms/_validation.scss +13 -0
- package/assets/styles/ui/typo/_hr.scss +74 -0
- package/assets/styles/utils/_background.scss +15 -0
- package/assets/styles/utils/_colors.scss +40 -0
- package/assets/styles/utils/_opacity.scss +7 -0
- package/assets/styles/utils/_scroll.scss +47 -0
- package/assets/styles/utils/_shadow.scss +17 -0
- package/assets/styles/utils/_sizing.scss +10 -0
- package/assets/styles/utils/_text.scss +15 -0
- package/button/ng-package.json +7 -0
- package/button/src/button.component.html +8 -0
- package/button/src/button.component.scss +5 -0
- package/button/src/button.component.spec.ts +23 -0
- package/button/src/button.component.ts +154 -0
- package/button/src/index.ts +1 -0
- package/button/src/public-api.ts +2 -0
- package/button/src/upd-button.module.ts +17 -0
- package/card/ng-package.json +7 -0
- package/card/src/card.component.html +105 -0
- package/card/src/card.component.scss +47 -0
- package/card/src/card.component.spec.ts +23 -0
- package/card/src/card.component.ts +112 -0
- package/card/src/directives/card-actions.directive.spec.ts +8 -0
- package/card/src/directives/card-actions.directive.ts +11 -0
- package/card/src/directives/card-footer.directive.spec.ts +8 -0
- package/card/src/directives/card-footer.directive.ts +11 -0
- package/card/src/directives/card-header.directive.spec.ts +8 -0
- package/card/src/directives/card-header.directive.ts +11 -0
- package/card/src/directives/card-image.directive.spec.ts +8 -0
- package/card/src/directives/card-image.directive.ts +11 -0
- package/card/src/directives/public-api.ts +4 -0
- package/card/src/index.ts +1 -0
- package/card/src/public-api.ts +3 -0
- package/card/src/types/card-state.type.ts +1 -0
- package/card/src/types/card-style.type.ts +1 -0
- package/card/src/types/hover-effect.type.ts +1 -0
- package/card/src/types/public-api.ts +5 -0
- package/card/src/types/ribbon-style.type.ts +1 -0
- package/card/src/types/status-position.type.ts +1 -0
- package/card/src/upd-card.module.ts +32 -0
- package/dropdown/ng-package.json +7 -0
- package/dropdown/src/dropdown.component.html +32 -0
- package/dropdown/src/dropdown.component.scss +19 -0
- package/dropdown/src/dropdown.component.spec.ts +23 -0
- package/dropdown/src/dropdown.component.ts +182 -0
- package/dropdown/src/index.ts +1 -0
- package/dropdown/src/models/dropdown-item.ts +22 -0
- package/dropdown/src/models/dropdown-item.type.ts +1 -0
- package/dropdown/src/models/public-api.ts +2 -0
- package/dropdown/src/public-api.ts +3 -0
- package/dropdown/src/upd-dropdown.module.ts +25 -0
- package/form/ng-package.json +7 -0
- package/form/src/form.module.ts +10 -0
- package/form/src/index.ts +1 -0
- package/form/src/public-api.ts +1 -0
- package/form-controls/checkbox/ng-package.json +7 -0
- package/form-controls/checkbox/src/checkbox.component.html +7 -0
- package/form-controls/checkbox/src/checkbox.component.scss +0 -0
- package/form-controls/checkbox/src/checkbox.component.spec.ts +23 -0
- package/form-controls/checkbox/src/checkbox.component.ts +48 -0
- package/form-controls/checkbox/src/index.ts +1 -0
- package/form-controls/checkbox/src/public-api.ts +3 -0
- package/form-controls/checkbox/src/upd-checkbox.module.ts +19 -0
- package/form-controls/input/ng-package.json +7 -0
- package/form-controls/input/src/directives/input-append.directive.spec.ts +8 -0
- package/form-controls/input/src/directives/input-append.directive.ts +11 -0
- package/form-controls/input/src/directives/input-prepend.directive.spec.ts +8 -0
- package/form-controls/input/src/directives/input-prepend.directive.ts +11 -0
- package/form-controls/input/src/directives/public-api.ts +2 -0
- package/form-controls/input/src/index.ts +1 -0
- package/form-controls/input/src/input.component.html +82 -0
- package/form-controls/input/src/input.component.scss +13 -0
- package/form-controls/input/src/input.component.spec.ts +23 -0
- package/form-controls/input/src/input.component.ts +124 -0
- package/form-controls/input/src/public-api.ts +4 -0
- package/form-controls/input/src/types/input.type.ts +1 -0
- package/form-controls/input/src/types/loader-position.type.ts +1 -0
- package/form-controls/input/src/types/public-api.ts +2 -0
- package/form-controls/input/src/upd-input.module.ts +29 -0
- package/form-controls/radio/ng-package.json +7 -0
- package/form-controls/radio/src/index.ts +1 -0
- package/form-controls/radio/src/public-api.ts +2 -0
- package/form-controls/radio/src/radio.component.html +7 -0
- package/form-controls/radio/src/radio.component.scss +0 -0
- package/form-controls/radio/src/radio.component.spec.ts +23 -0
- package/form-controls/radio/src/radio.component.ts +47 -0
- package/form-controls/radio/src/upd-radio.module.ts +17 -0
- package/form-controls/select/ng-package.json +7 -0
- package/form-controls/select/src/components/multiple/select-multiple.component.html +41 -0
- package/form-controls/select/src/components/multiple/select-multiple.component.scss +6 -0
- package/form-controls/select/src/components/multiple/select-multiple.component.spec.ts +21 -0
- package/form-controls/select/src/components/multiple/select-multiple.component.ts +69 -0
- package/form-controls/select/src/components/shared.scss +40 -0
- package/form-controls/select/src/components/single/select.component.html +53 -0
- package/form-controls/select/src/components/single/select.component.scss +3 -0
- package/form-controls/select/src/components/single/select.component.spec.ts +23 -0
- package/form-controls/select/src/components/single/select.component.ts +58 -0
- package/form-controls/select/src/index.ts +1 -0
- package/form-controls/select/src/models/abstractions/base-select.component.ts +259 -0
- package/form-controls/select/src/models/public-api.ts +1 -0
- package/form-controls/select/src/models/select-item.ts +26 -0
- package/form-controls/select/src/public-api.ts +4 -0
- package/form-controls/select/src/upd-select.module.ts +32 -0
- package/form-controls/textarea/ng-package.json +7 -0
- package/form-controls/textarea/src/index.ts +1 -0
- package/form-controls/textarea/src/public-api.ts +2 -0
- package/form-controls/textarea/src/textarea.component.html +8 -0
- package/form-controls/textarea/src/textarea.component.scss +0 -0
- package/form-controls/textarea/src/textarea.component.spec.ts +23 -0
- package/form-controls/textarea/src/textarea.component.ts +47 -0
- package/form-controls/textarea/src/upd-textarea.module.ts +17 -0
- package/form-controls/time-picker/ng-package.json +7 -0
- package/form-controls/time-picker/src/assets/i18n/en.json +5 -0
- package/form-controls/time-picker/src/assets/i18n/pt.json +5 -0
- package/form-controls/time-picker/src/index.ts +1 -0
- package/form-controls/time-picker/src/public-api.ts +3 -0
- package/form-controls/time-picker/src/time-picker.component.html +17 -0
- package/form-controls/time-picker/src/time-picker.component.scss +10 -0
- package/form-controls/time-picker/src/time-picker.component.spec.ts +21 -0
- package/form-controls/time-picker/src/time-picker.component.ts +110 -0
- package/form-controls/time-picker/src/time-selector/time-selector.component.html +44 -0
- package/form-controls/time-picker/src/time-selector/time-selector.component.scss +47 -0
- package/form-controls/time-picker/src/time-selector/time-selector.component.spec.ts +21 -0
- package/form-controls/time-picker/src/time-selector/time-selector.component.ts +107 -0
- package/form-controls/time-picker/src/upd-time-picker.module.ts +39 -0
- package/layout/ng-package.json +7 -0
- package/layout/src/abstractions/base-page.component.ts +21 -0
- package/layout/src/abstractions/public-api.ts +1 -0
- package/layout/src/assets/i18n/en.json +5 -0
- package/layout/src/assets/i18n/pt.json +5 -0
- package/layout/src/index.ts +1 -0
- package/layout/src/layouts/blank-layout/blank-layout.component.html +1 -0
- package/layout/src/layouts/blank-layout/blank-layout.component.scss +0 -0
- package/layout/src/layouts/blank-layout/blank-layout.component.spec.ts +23 -0
- package/layout/src/layouts/blank-layout/blank-layout.component.ts +10 -0
- package/layout/src/layouts/blank-layout/blank-layout.module.ts +17 -0
- package/layout/src/layouts/public-api.ts +4 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.html +14 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.scss +0 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.spec.ts +23 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.component.ts +31 -0
- package/layout/src/layouts/vertical-sidebar-layout/vertical-sidebar-layout.module.ts +52 -0
- package/layout/src/models/public-api.ts +1 -0
- package/layout/src/models/upd-layout-config.model.ts +71 -0
- package/layout/src/models/upd-layout.config.ts +37 -0
- package/layout/src/pages/auth-flow/auth-flow-routing.module.ts +21 -0
- package/layout/src/pages/auth-flow/auth-flow.module.ts +29 -0
- package/layout/src/pages/auth-flow/logged-out/logged-out.component.html +1 -0
- package/layout/src/pages/auth-flow/logged-out/logged-out.component.scss +0 -0
- package/layout/src/pages/auth-flow/logged-out/logged-out.component.spec.ts +23 -0
- package/layout/src/pages/auth-flow/logged-out/logged-out.component.ts +10 -0
- package/layout/src/pages/auth-flow/login/login.component.html +96 -0
- package/layout/src/pages/auth-flow/login/login.component.scss +0 -0
- package/layout/src/pages/auth-flow/login/login.component.spec.ts +23 -0
- package/layout/src/pages/auth-flow/login/login.component.ts +26 -0
- package/layout/src/pages/auth-flow/oauth-callback/oauth-callback.component.html +1 -0
- package/layout/src/pages/auth-flow/oauth-callback/oauth-callback.component.scss +0 -0
- package/layout/src/pages/auth-flow/oauth-callback/oauth-callback.component.spec.ts +23 -0
- package/layout/src/pages/auth-flow/oauth-callback/oauth-callback.component.ts +10 -0
- package/layout/src/pages/auth-flow/public-api.ts +5 -0
- package/layout/src/pages/public-api.ts +1 -0
- package/layout/src/partials/footer/footer-copyright.directive.spec.ts +8 -0
- package/layout/src/partials/footer/footer-copyright.directive.ts +9 -0
- package/layout/src/partials/footer/footer.component.html +30 -0
- package/layout/src/partials/footer/footer.component.scss +0 -0
- package/{src/lib/components.component.spec.ts → layout/src/partials/footer/footer.component.spec.ts} +6 -6
- package/layout/src/partials/footer/footer.component.ts +73 -0
- package/layout/src/partials/footer/public-api.ts +2 -0
- package/layout/src/partials/header/header-style.type.ts +1 -0
- package/layout/src/partials/header/header.component.html +163 -0
- package/layout/src/partials/header/header.component.scss +0 -0
- package/layout/src/partials/header/header.component.spec.ts +23 -0
- package/layout/src/partials/header/header.component.ts +86 -0
- package/layout/src/partials/header/public-api.ts +2 -0
- package/layout/src/partials/page-header/page-header.component.html +19 -0
- package/layout/src/partials/page-header/page-header.component.scss +0 -0
- package/layout/src/partials/page-header/page-header.component.spec.ts +23 -0
- package/layout/src/partials/page-header/page-header.component.ts +11 -0
- package/layout/src/partials/page-header/public-api.ts +1 -0
- package/layout/src/partials/public-api.ts +4 -0
- package/layout/src/partials/sidebar/public-api.ts +1 -0
- package/layout/src/partials/sidebar/sidebar.component.html +62 -0
- package/layout/src/partials/sidebar/sidebar.component.scss +0 -0
- package/layout/src/partials/sidebar/sidebar.component.spec.ts +23 -0
- package/layout/src/partials/sidebar/sidebar.component.ts +161 -0
- package/layout/src/public-api.ts +7 -0
- package/layout/src/services/public-api.ts +1 -0
- package/{src/lib/components.service.spec.ts → layout/src/services/upd-layout-config.service.spec.ts} +4 -4
- package/layout/src/services/upd-layout-config.service.ts +20 -0
- package/layout/src/tools/layout.constants.ts +18 -0
- package/layout/src/upd-layout.module.ts +34 -0
- package/link/ng-package.json +7 -0
- package/link/src/index.ts +1 -0
- package/link/src/link.component.html +3 -0
- package/link/src/link.component.scss +3 -0
- package/link/src/link.component.spec.ts +23 -0
- package/link/src/link.component.ts +48 -0
- package/link/src/public-api.ts +3 -0
- package/link/src/target.type.ts +1 -0
- package/link/src/upd-link.module.ts +17 -0
- package/list/ng-package.json +7 -0
- package/list/src/assets/i18n/en.json +5 -0
- package/list/src/assets/i18n/pt.json +5 -0
- package/list/src/index.ts +1 -0
- package/list/src/list.component.html +58 -0
- package/list/src/list.component.scss +21 -0
- package/list/src/list.component.spec.ts +23 -0
- package/list/src/list.component.ts +147 -0
- package/list/src/models/badge-position.type.ts +1 -0
- package/list/src/models/list-item.model.ts +35 -0
- package/list/src/models/list-item.ts +21 -0
- package/list/src/models/public-api.ts +2 -0
- package/list/src/public-api.ts +3 -0
- package/list/src/upd-list.module.ts +30 -0
- package/ng-package.json +9 -6
- package/package.json +8 -5
- package/popover/ng-package.json +7 -0
- package/popover/src/index.ts +1 -0
- package/popover/src/popover.component.html +20 -0
- package/popover/src/popover.component.scss +8 -0
- package/popover/src/popover.component.spec.ts +23 -0
- package/popover/src/popover.component.ts +53 -0
- package/popover/src/popover.directive.spec.ts +8 -0
- package/popover/src/popover.directive.ts +128 -0
- package/popover/src/public-api.ts +3 -0
- package/popover/src/upd-popover.module.ts +20 -0
- package/src/lib/index.ts +1 -0
- package/src/lib/public-api.ts +2 -0
- package/src/lib/types/component-size.type.ts +1 -0
- package/src/lib/types/public-api.ts +2 -0
- package/src/lib/types/validation-status.type.ts +1 -0
- package/src/lib/upd-components.module.ts +6 -0
- package/src/public-api.ts +1 -7
- package/tsconfig.lib.json +11 -11
- package/src/lib/components.component.ts +0 -14
- package/src/lib/components.module.ts +0 -17
- package/src/lib/components.service.ts +0 -9
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
.list-group {
|
|
2
|
+
margin-left: 0;
|
|
3
|
+
margin-right: 0;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.list-group-header {
|
|
7
|
+
background: $list-group-header-bg;
|
|
8
|
+
padding: .5rem $list-group-item-padding-x;
|
|
9
|
+
font-size: $h5-font-size;
|
|
10
|
+
font-weight: var(--#{$prefix}font-weight-medium);
|
|
11
|
+
line-height: 1;
|
|
12
|
+
text-transform: uppercase;
|
|
13
|
+
color: $list-group-header-color;
|
|
14
|
+
border-bottom: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color);
|
|
15
|
+
|
|
16
|
+
.list-group-flush > & {
|
|
17
|
+
&:last-child {
|
|
18
|
+
border-bottom-width: 0;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.list-group-item {
|
|
24
|
+
background-color: inherit;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.list-group-item.active {
|
|
28
|
+
background-color: $dropdown-link-hover-bg;
|
|
29
|
+
border-left-color: $component-active-bg;
|
|
30
|
+
border-left-width: $border-width-wide;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.list-group-item {
|
|
34
|
+
&:active,
|
|
35
|
+
&:focus,
|
|
36
|
+
&:hover {
|
|
37
|
+
background-color: $dropdown-link-hover-bg;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.list-group-item {
|
|
42
|
+
&.disabled,
|
|
43
|
+
&:disabled {
|
|
44
|
+
color: $gray-500;
|
|
45
|
+
background-color: $dropdown-link-hover-bg;
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.list-bordered {
|
|
50
|
+
.list-item {
|
|
51
|
+
border-top: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color);
|
|
52
|
+
margin-top: -1px;
|
|
53
|
+
|
|
54
|
+
&:first-child {
|
|
55
|
+
border-top: none;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.list-group-hoverable {
|
|
61
|
+
.list-group-item-actions {
|
|
62
|
+
opacity: 0;
|
|
63
|
+
@include transition(opacity $transition-time);
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.list-group-item:hover .list-group-item-actions,
|
|
67
|
+
.list-group-item-actions.show {
|
|
68
|
+
opacity: 1;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
.list-group-transparent {
|
|
74
|
+
--#{$prefix}list-group-border-radius: 0;
|
|
75
|
+
margin: 0 (- $list-group-item-padding-x);
|
|
76
|
+
|
|
77
|
+
.list-group-item {
|
|
78
|
+
background: none;
|
|
79
|
+
border: 0;
|
|
80
|
+
|
|
81
|
+
.icon {
|
|
82
|
+
color: var(--#{$prefix}secondary);
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&.active {
|
|
86
|
+
font-weight: var(--#{$prefix}font-weight-bold);
|
|
87
|
+
color: inherit;
|
|
88
|
+
background: $list-group-active-bg;
|
|
89
|
+
|
|
90
|
+
.icon {
|
|
91
|
+
color: inherit;
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
.list-separated-item {
|
|
99
|
+
padding: 1rem 0;
|
|
100
|
+
|
|
101
|
+
&:first-child {
|
|
102
|
+
padding-top: 0;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
&:last-child {
|
|
106
|
+
padding-bottom: 0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
& + & {
|
|
110
|
+
border-top: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
Inline list
|
|
116
|
+
*/
|
|
117
|
+
.list-inline-item:not(:last-child) {
|
|
118
|
+
margin-right: auto;
|
|
119
|
+
margin-inline-end: $list-inline-padding;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.list-inline-dots {
|
|
123
|
+
.list-inline-item + .list-inline-item:before {
|
|
124
|
+
content: ' · ';
|
|
125
|
+
margin-inline-end: $list-inline-padding;
|
|
126
|
+
}
|
|
127
|
+
}
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
.loader {
|
|
2
|
+
position: relative;
|
|
3
|
+
display: block;
|
|
4
|
+
width: $loader-size;
|
|
5
|
+
height: $loader-size;
|
|
6
|
+
color: $blue;
|
|
7
|
+
vertical-align: middle;
|
|
8
|
+
|
|
9
|
+
&:after {
|
|
10
|
+
position: absolute;
|
|
11
|
+
top: 0;
|
|
12
|
+
left: 0;
|
|
13
|
+
width: 100%;
|
|
14
|
+
height: 100%;
|
|
15
|
+
content: "";
|
|
16
|
+
border: 1px var(--#{$prefix}border-style);
|
|
17
|
+
border-color: transparent;
|
|
18
|
+
border-top-color: currentColor;
|
|
19
|
+
border-left-color: currentColor;
|
|
20
|
+
|
|
21
|
+
border-radius: $border-radius-pill;
|
|
22
|
+
animation: rotate-360 .6s linear;
|
|
23
|
+
animation-iteration-count: infinite;
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
/**
|
|
28
|
+
Dimmer
|
|
29
|
+
*/
|
|
30
|
+
.dimmer {
|
|
31
|
+
position: relative;
|
|
32
|
+
|
|
33
|
+
.loader {
|
|
34
|
+
position: absolute;
|
|
35
|
+
top: 50%;
|
|
36
|
+
right: 0;
|
|
37
|
+
left: 0;
|
|
38
|
+
display: none;
|
|
39
|
+
margin: 0 auto;
|
|
40
|
+
transform: translateY(-50%);
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
&.active {
|
|
44
|
+
.loader {
|
|
45
|
+
display: block;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.dimmer-content {
|
|
49
|
+
pointer-events: none;
|
|
50
|
+
opacity: .1;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
@keyframes animated-dots {
|
|
57
|
+
0% {
|
|
58
|
+
transform: translateX(-100%);
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.animated-dots {
|
|
63
|
+
display: inline-block;
|
|
64
|
+
overflow: hidden;
|
|
65
|
+
vertical-align: bottom;
|
|
66
|
+
|
|
67
|
+
&:after {
|
|
68
|
+
display: inline-block;
|
|
69
|
+
content: "...";
|
|
70
|
+
animation: animated-dots 1.2s steps(4, jump-none) infinite;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Markdown
|
|
3
|
+
*/
|
|
4
|
+
.markdown {
|
|
5
|
+
line-height: $line-height-lg;
|
|
6
|
+
|
|
7
|
+
> :first-child {
|
|
8
|
+
margin-top: 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
> :last-child,
|
|
12
|
+
> :last-child .highlight {
|
|
13
|
+
margin-bottom: 0;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
> hr {
|
|
17
|
+
@include media-breakpoint-up(md) {
|
|
18
|
+
margin-top: 3em;
|
|
19
|
+
margin-bottom: 3em;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
> {
|
|
24
|
+
h1, h2, h3, h4, h5, h6 {
|
|
25
|
+
font-weight: var(--#{$prefix}font-weight-bold);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
> table {
|
|
30
|
+
@extend .table, .table-bordered;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
> blockquote {
|
|
34
|
+
font-size: $h3-font-size;
|
|
35
|
+
margin: 1.5rem 0;
|
|
36
|
+
padding: .5rem 1.5rem;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
> img {
|
|
40
|
+
border-radius: var(--#{$prefix}border-radius);
|
|
41
|
+
}
|
|
42
|
+
}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
.modal-content {
|
|
2
|
+
.btn-close {
|
|
3
|
+
position: absolute;
|
|
4
|
+
top: 0;
|
|
5
|
+
right: 0;
|
|
6
|
+
width: $modal-header-height;
|
|
7
|
+
height: $modal-header-height;
|
|
8
|
+
margin: 0;
|
|
9
|
+
padding: 0;
|
|
10
|
+
z-index: 10;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.modal-body {
|
|
15
|
+
@include scrollbar;
|
|
16
|
+
|
|
17
|
+
.modal-title {
|
|
18
|
+
margin-bottom: 1rem;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
& + & {
|
|
22
|
+
border-top: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.modal-status {
|
|
27
|
+
position: absolute;
|
|
28
|
+
top: 0;
|
|
29
|
+
left: 0;
|
|
30
|
+
right: 0;
|
|
31
|
+
height: $modal-status-size;
|
|
32
|
+
background: var(--#{$prefix}secondary);
|
|
33
|
+
border-radius: $modal-content-border-radius $modal-content-border-radius 0 0;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.modal-header {
|
|
37
|
+
align-items: center;
|
|
38
|
+
min-height: $modal-header-height;
|
|
39
|
+
background: $modal-header-bg;
|
|
40
|
+
padding: 0 $modal-header-height 0 $modal-inner-padding;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
.modal-title {
|
|
44
|
+
font-size: $h3-font-size;
|
|
45
|
+
font-weight: $headings-font-weight;
|
|
46
|
+
color: $headings-color;
|
|
47
|
+
line-height: $line-height-base;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.modal-footer {
|
|
51
|
+
@if $modal-footer-border-width == 0 {
|
|
52
|
+
padding-top: 0;
|
|
53
|
+
} @else {
|
|
54
|
+
padding-top: .75rem;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
padding-bottom: .75rem;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.modal-blur {
|
|
61
|
+
backdrop-filter: blur($modal-backdrop-blur);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.modal-full-width {
|
|
65
|
+
max-width: none;
|
|
66
|
+
margin: 0 $modal-dialog-margin;
|
|
67
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
.nav-vertical {
|
|
2
|
+
&,
|
|
3
|
+
.nav {
|
|
4
|
+
flex-direction: column;
|
|
5
|
+
flex-wrap: nowrap;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.nav {
|
|
9
|
+
margin-left: 1.25rem;
|
|
10
|
+
border-left: var(--#{$prefix}border-width) var(--#{$prefix}border-style) var(--#{$prefix}border-color);
|
|
11
|
+
padding-left: .5rem;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.nav-link.active,
|
|
15
|
+
.nav-item.show .nav-link {
|
|
16
|
+
font-weight: var(--#{$prefix}font-weight-bold);
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
&.nav-pills {
|
|
20
|
+
margin: 0 (-$nav-link-padding-x);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
//
|
|
25
|
+
// Nav bordered
|
|
26
|
+
//
|
|
27
|
+
.nav-bordered {
|
|
28
|
+
border-bottom: $nav-bordered-border-width var(--#{$prefix}border-style) $nav-bordered-border-color;
|
|
29
|
+
|
|
30
|
+
.nav-item {
|
|
31
|
+
+ .nav-item {
|
|
32
|
+
margin-left: $nav-bordered-margin-x;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.nav-link {
|
|
37
|
+
padding-left: 0;
|
|
38
|
+
padding-right: 0;
|
|
39
|
+
margin: 0 0 (- $nav-bordered-border-width);
|
|
40
|
+
border: 0;
|
|
41
|
+
border-bottom: $nav-bordered-link-active-border-width var(--#{$prefix}border-style) transparent;
|
|
42
|
+
color: var(--#{$prefix}secondary);
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.nav-link.active,
|
|
46
|
+
.nav-item.show .nav-link {
|
|
47
|
+
color: $nav-bordered-link-active-color;
|
|
48
|
+
border-color: $nav-bordered-link-active-border-color;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.nav-link {
|
|
54
|
+
display: flex;
|
|
55
|
+
@include transition(color $transition-time);
|
|
56
|
+
align-items: center;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.nav-link-toggle {
|
|
60
|
+
margin-left: auto;
|
|
61
|
+
padding: 0 .25rem;
|
|
62
|
+
@include transition(transform $transition-time);
|
|
63
|
+
@include caret();
|
|
64
|
+
|
|
65
|
+
&:after {
|
|
66
|
+
margin: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@at-root .nav-link[aria-expanded="true"] & {
|
|
70
|
+
transform: rotate(180deg);
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.nav-link-icon {
|
|
75
|
+
width: $nav-link-icon-size;
|
|
76
|
+
height: $nav-link-icon-size;
|
|
77
|
+
margin-right: .5rem;
|
|
78
|
+
color: $nav-link-icon-color;
|
|
79
|
+
|
|
80
|
+
svg {
|
|
81
|
+
display: block;
|
|
82
|
+
height: 100%;
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.nav-fill {
|
|
87
|
+
.nav-item {
|
|
88
|
+
.nav-link {
|
|
89
|
+
justify-content: center;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
.offcanvas-header {
|
|
2
|
+
border-bottom: var(--#{$prefix}border-width) var(--#{$prefix}border-style) $border-color-translucent;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.offcanvas-footer {
|
|
6
|
+
padding: $offcanvas-padding-y $offcanvas-padding-x;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.offcanvas-title {
|
|
10
|
+
font-size: $h3-font-size;
|
|
11
|
+
font-weight: var(--#{$prefix}font-weight-medium);
|
|
12
|
+
line-height: 1.5rem;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.offcanvas-narrow {
|
|
16
|
+
width: 20rem;
|
|
17
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
.pagination {
|
|
2
|
+
user-select: none;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.page-link {
|
|
6
|
+
min-width: 1.75rem;
|
|
7
|
+
border-radius: var(--#{$prefix}border-radius);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.page-item {
|
|
11
|
+
text-align: center;
|
|
12
|
+
|
|
13
|
+
&:not(.active) {
|
|
14
|
+
.page-link {
|
|
15
|
+
&:hover {
|
|
16
|
+
background: transparent;
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.page-prev,
|
|
22
|
+
&.page-next {
|
|
23
|
+
flex: 0 0 50%;
|
|
24
|
+
text-align: left;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&.page-next {
|
|
28
|
+
margin-left: auto;
|
|
29
|
+
text-align: right;
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.page-item-subtitle {
|
|
34
|
+
margin-bottom: 2px;
|
|
35
|
+
font-size: 12px;
|
|
36
|
+
color: var(--#{$prefix}secondary);
|
|
37
|
+
text-transform: uppercase;
|
|
38
|
+
|
|
39
|
+
.page-item.disabled & {
|
|
40
|
+
color: $pagination-disabled-color;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.page-item-title {
|
|
45
|
+
font-size: $h3-font-size;
|
|
46
|
+
font-weight: var(--#{$prefix}font-weight-normal);
|
|
47
|
+
color: var(--#{$prefix}body-color);
|
|
48
|
+
|
|
49
|
+
.page-link:hover & {
|
|
50
|
+
color: $link-color;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.page-item.disabled & {
|
|
54
|
+
color: $pagination-disabled-color;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
$payment-icons: ('2checkout', 'alipay', 'amazon', 'americanexpress', 'applepay', 'bancontact', 'bitcoin', 'bitpay', 'blik', 'cirrus', 'clickandbuy', 'coinkite', 'dinersclub', 'directdebit', 'discover', 'dotpay', 'dwolla', 'ebay', 'epayco', 'eway', 'giropay', 'googlewallet', 'ingenico', 'jcb', 'klarna', 'laser', 'maestro', 'mastercard', 'mir', 'monero', 'neteller', 'ogone', 'okpay', 'paybox', 'paymill', 'payone', 'payoneer', 'paypal', 'paysafecard', 'payu', 'payza', 'przelewy24', 'ripple', 'sage', 'sepa', 'shopify', 'skrill', 'solo', 'square', 'stripe', 'switch', 'tpay', 'ukash', 'unionpay', 'verifone', 'verisign', 'visa', 'webmoney', 'westernunion', 'worldpay');
|
|
2
|
+
|
|
3
|
+
.payment {
|
|
4
|
+
height: $avatar-size;
|
|
5
|
+
aspect-ratio: 1.66666;
|
|
6
|
+
display: inline-block;
|
|
7
|
+
background: no-repeat center/100% 100%;
|
|
8
|
+
vertical-align: bottom;
|
|
9
|
+
font-style: normal;
|
|
10
|
+
box-shadow: 0 0 1px 1px rgba(0, 0, 0, .1);
|
|
11
|
+
border-radius: 2px;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@each $payment in $payment-icons {
|
|
15
|
+
.payment-provider-#{$payment} {
|
|
16
|
+
background-image: url("#{$assets-base}/img/payments/#{$payment}.svg");
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.payment-provider-#{$payment}-dark {
|
|
20
|
+
background-image: url("#{$assets-base}/img/payments/#{$payment}-dark.svg");
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@each $payment-size, $size in $payment-sizes {
|
|
25
|
+
.payment-#{$payment-size} {
|
|
26
|
+
height: map-get($size, size);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
@keyframes progress-indeterminate {
|
|
2
|
+
0% {
|
|
3
|
+
right: 100%;
|
|
4
|
+
left: -35%;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
100%,
|
|
8
|
+
60% {
|
|
9
|
+
right: -90%;
|
|
10
|
+
left: 100%;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
Progress
|
|
16
|
+
*/
|
|
17
|
+
.progress {
|
|
18
|
+
position: relative;
|
|
19
|
+
width: 100%;
|
|
20
|
+
line-height: $progress-height;
|
|
21
|
+
appearance: none;
|
|
22
|
+
|
|
23
|
+
&::-webkit-progress-bar {
|
|
24
|
+
background: var(--#{$prefix}progress-bg);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
&::-webkit-progress-value {
|
|
28
|
+
background-color: var(--#{$prefix}primary);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
&::-moz-progress-bar {
|
|
32
|
+
background-color: var(--#{$prefix}primary);
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&::-ms-fill {
|
|
36
|
+
background-color: var(--#{$prefix}primary);
|
|
37
|
+
border: none;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.progress-sm {
|
|
42
|
+
height: .25rem;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
Progress bar
|
|
47
|
+
*/
|
|
48
|
+
.progress-bar {
|
|
49
|
+
height: 100%;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.progress-bar-indeterminate {
|
|
53
|
+
&:after,
|
|
54
|
+
&:before {
|
|
55
|
+
position: absolute;
|
|
56
|
+
top: 0;
|
|
57
|
+
bottom: 0;
|
|
58
|
+
left: 0;
|
|
59
|
+
content: "";
|
|
60
|
+
background-color: inherit;
|
|
61
|
+
will-change: left, right;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
&:before {
|
|
65
|
+
animation: progress-indeterminate 1.5s cubic-bezier(.65, .815, .735, .395) infinite;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.progress-separated {
|
|
70
|
+
.progress-bar {
|
|
71
|
+
box-shadow: 0 0 0 2px var(--#{$prefix}card-bg, var(--#{$prefix}bg-surface));
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
/**
|
|
77
|
+
Progressbg
|
|
78
|
+
*/
|
|
79
|
+
.progressbg {
|
|
80
|
+
position: relative;
|
|
81
|
+
padding: .25rem .5rem;
|
|
82
|
+
display: flex;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.progressbg-text {
|
|
86
|
+
position: relative;
|
|
87
|
+
z-index: 1;
|
|
88
|
+
@include text-truncate;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.progressbg-progress {
|
|
92
|
+
position: absolute;
|
|
93
|
+
top: 0;
|
|
94
|
+
right: 0;
|
|
95
|
+
bottom: 0;
|
|
96
|
+
left: 0;
|
|
97
|
+
z-index: 0;
|
|
98
|
+
height: 100%;
|
|
99
|
+
background: transparent;
|
|
100
|
+
pointer-events: none;
|
|
101
|
+
}
|
|
102
|
+
|
|
103
|
+
.progressbg-value {
|
|
104
|
+
font-weight: var(--#{$prefix}font-weight-medium);
|
|
105
|
+
margin-left: auto;
|
|
106
|
+
padding-left: 2rem;
|
|
107
|
+
}
|