@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,150 @@
|
|
|
1
|
+
.table {
|
|
2
|
+
thead {
|
|
3
|
+
th {
|
|
4
|
+
color: $table-th-color;
|
|
5
|
+
background: $table-th-bg;
|
|
6
|
+
@include subheader;
|
|
7
|
+
padding-top: $table-th-padding-y;
|
|
8
|
+
padding-bottom: $table-th-padding-y;
|
|
9
|
+
white-space: nowrap;
|
|
10
|
+
|
|
11
|
+
@media print {
|
|
12
|
+
background: transparent;
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.table-responsive {
|
|
19
|
+
.table {
|
|
20
|
+
margin-bottom: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
+ .card-footer {
|
|
24
|
+
border-top: 0;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.table-transparent {
|
|
29
|
+
thead {
|
|
30
|
+
th {
|
|
31
|
+
background: transparent;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.table-nowrap {
|
|
37
|
+
> :not(caption) > * > * {
|
|
38
|
+
white-space: nowrap;
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.table-vcenter {
|
|
43
|
+
> :not(caption) > * > * {
|
|
44
|
+
vertical-align: middle;
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.table-center {
|
|
49
|
+
> :not(caption) > * > * {
|
|
50
|
+
text-align: center;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.td-truncate {
|
|
55
|
+
max-width: 1px;
|
|
56
|
+
width: 100%;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.table-mobile {
|
|
60
|
+
@each $breakpoint, $breakpoint-max-widthin in $grid-breakpoints {
|
|
61
|
+
&#{breakpoint-infix($breakpoint)} {
|
|
62
|
+
@include media-breakpoint-down($breakpoint) {
|
|
63
|
+
display: block;
|
|
64
|
+
|
|
65
|
+
thead {
|
|
66
|
+
display: none;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
tbody,
|
|
70
|
+
tr {
|
|
71
|
+
display: flex;
|
|
72
|
+
flex-direction: column;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
td {
|
|
76
|
+
display: block;
|
|
77
|
+
padding: $table-cell-padding-x $table-cell-padding-y !important;
|
|
78
|
+
border: none;
|
|
79
|
+
color: var(--#{$prefix}body-color) !important;
|
|
80
|
+
|
|
81
|
+
&[data-label] {
|
|
82
|
+
&:before {
|
|
83
|
+
@include subheader;
|
|
84
|
+
content: attr(data-label);
|
|
85
|
+
display: block;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
tr {
|
|
91
|
+
border-bottom: var(--#{$prefix}border-width) var(--#{$prefix}border-style) $table-border-color;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.btn {
|
|
95
|
+
display: block;
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
Table sort
|
|
104
|
+
*/
|
|
105
|
+
.table-sort {
|
|
106
|
+
font: inherit;
|
|
107
|
+
color: inherit;
|
|
108
|
+
text-transform: inherit;
|
|
109
|
+
letter-spacing: inherit;
|
|
110
|
+
border: 0;
|
|
111
|
+
background: inherit;
|
|
112
|
+
display: block;
|
|
113
|
+
width: 100%;
|
|
114
|
+
text-align: inherit;
|
|
115
|
+
@include transition(color $transition-time);
|
|
116
|
+
|
|
117
|
+
margin: (-$table-th-padding-y) (-$table-th-padding-x);
|
|
118
|
+
padding: $table-th-padding-y $table-th-padding-x;
|
|
119
|
+
|
|
120
|
+
&:hover,
|
|
121
|
+
&.asc,
|
|
122
|
+
&.desc {
|
|
123
|
+
color: var(--#{$prefix}body-color);
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
&:after {
|
|
127
|
+
content: "";
|
|
128
|
+
display: inline-flex;
|
|
129
|
+
width: 1rem;
|
|
130
|
+
height: 1rem;
|
|
131
|
+
vertical-align: bottom;
|
|
132
|
+
mask-image: $table-sort-bg-image;
|
|
133
|
+
background: currentColor;
|
|
134
|
+
margin-left: .25rem;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
&.asc:after {
|
|
138
|
+
mask-image: $table-sort-desc-bg-image;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
&.desc:after {
|
|
142
|
+
mask-image: $table-sort-asc-bg-image;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.table-borderless {
|
|
147
|
+
thead th {
|
|
148
|
+
background: transparent;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
.tag {
|
|
2
|
+
--#{$prefix}tag-height: 1.5rem;
|
|
3
|
+
border: $border-width solid var(--#{$prefix}border-color);
|
|
4
|
+
display: inline-flex;
|
|
5
|
+
align-items: center;
|
|
6
|
+
height: var(--#{$prefix}tag-height);
|
|
7
|
+
border-radius: var(--#{$prefix}border-radius);
|
|
8
|
+
padding: 0 0.5rem;
|
|
9
|
+
background: var(--#{$prefix}bg-surface);
|
|
10
|
+
box-shadow: var(--#{$prefix}box-shadow-input);
|
|
11
|
+
gap: .5rem;
|
|
12
|
+
|
|
13
|
+
.btn-close {
|
|
14
|
+
margin-right: -0.25rem;
|
|
15
|
+
margin-left: -0.125rem;
|
|
16
|
+
padding: 0;
|
|
17
|
+
width: 1rem;
|
|
18
|
+
height: 1rem;
|
|
19
|
+
font-size: .5rem;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.tag-badge {
|
|
24
|
+
--#{$prefix}badge-font-size: #{$h6-font-size};
|
|
25
|
+
--#{$prefix}badge-padding-x: .25rem;
|
|
26
|
+
--#{$prefix}badge-padding-y: .125rem;
|
|
27
|
+
margin-right: -.25rem;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.tag-avatar,
|
|
31
|
+
.tag-flag,
|
|
32
|
+
.tag-payment,
|
|
33
|
+
.tag-icon,
|
|
34
|
+
.tag-check {
|
|
35
|
+
margin-left: -.25rem;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.tag-icon {
|
|
39
|
+
color: var(--#{$prefix}secondary);
|
|
40
|
+
margin-right: -0.125rem;
|
|
41
|
+
width: 1rem;
|
|
42
|
+
height: 1rem;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.tag-check {
|
|
46
|
+
width: 1rem;
|
|
47
|
+
height: 1rem;
|
|
48
|
+
background-size: 1rem;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
//
|
|
53
|
+
// Tags list
|
|
54
|
+
//
|
|
55
|
+
.tags-list {
|
|
56
|
+
@include elements-list;
|
|
57
|
+
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
//
|
|
2
|
+
// Timeline
|
|
3
|
+
//
|
|
4
|
+
.timeline {
|
|
5
|
+
--#{$prefix}timeline-icon-size: #{$avatar-size};
|
|
6
|
+
position: relative;
|
|
7
|
+
list-style: none;
|
|
8
|
+
padding: 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
//
|
|
12
|
+
// Timeline event
|
|
13
|
+
//
|
|
14
|
+
.timeline-event {
|
|
15
|
+
position: relative;
|
|
16
|
+
|
|
17
|
+
&:not(:last-child) {
|
|
18
|
+
margin-bottom: var(--#{$prefix}page-padding);
|
|
19
|
+
|
|
20
|
+
&:before {
|
|
21
|
+
content: "";
|
|
22
|
+
position: absolute;
|
|
23
|
+
top: var(--#{$prefix}timeline-icon-size);
|
|
24
|
+
left: calc(var(--#{$prefix}timeline-icon-size) / 2);
|
|
25
|
+
bottom: calc(-1 * var(--#{$prefix}page-padding));
|
|
26
|
+
width: var(--#{$prefix}border-width);
|
|
27
|
+
background-color: var(--#{$prefix}border-color);
|
|
28
|
+
border-radius: var(--#{$prefix}border-radius);
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.timeline-event-icon {
|
|
34
|
+
position: absolute;
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
justify-content: center;
|
|
38
|
+
width: var(--#{$prefix}timeline-icon-size, $avatar-size);
|
|
39
|
+
height: var(--#{$prefix}timeline-icon-size, $avatar-size);
|
|
40
|
+
background: var(--#{$prefix}gray-200);
|
|
41
|
+
color: var(--#{$prefix}secondary);
|
|
42
|
+
border-radius: var(--#{$prefix}border-radius);
|
|
43
|
+
z-index: 5
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.timeline-event-card {
|
|
47
|
+
margin-left: calc(var(--#{$prefix}timeline-icon-size, $avatar-size) + var(--#{$prefix}page-padding));
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
//
|
|
51
|
+
// Simple timeline
|
|
52
|
+
//
|
|
53
|
+
.timeline-simple {
|
|
54
|
+
.timeline-event-icon {
|
|
55
|
+
display: none;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.timeline-event-card {
|
|
59
|
+
margin-left: 0;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
.toast {
|
|
2
|
+
background: $white;
|
|
3
|
+
border: $alert-border-width var(--#{$prefix}border-style) $alert-border-color;
|
|
4
|
+
box-shadow: $alert-shadow;
|
|
5
|
+
|
|
6
|
+
.toast-header {
|
|
7
|
+
user-select: none;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
button[data-bs-dismiss="toast"] {
|
|
11
|
+
outline: none;
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@each $state, $value in $theme-colors {
|
|
16
|
+
.toast-#{$state} {
|
|
17
|
+
--#{$prefix}toast-color: #{$value};
|
|
18
|
+
}
|
|
19
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
.tracking {
|
|
2
|
+
--#{$prefix}tracking-height: #{$tracking-height};
|
|
3
|
+
--#{$prefix}tracking-gap-width: #{$tracking-gap-width};
|
|
4
|
+
--#{$prefix}tracking-block-border-radius: #{$tracking-border-radius};
|
|
5
|
+
display: flex;
|
|
6
|
+
gap: var(--#{$prefix}tracking-gap-width);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.tracking-squares {
|
|
10
|
+
--#{$prefix}tracking-block-border-radius: var(--#{$prefix}border-radius-sm);
|
|
11
|
+
|
|
12
|
+
.tracking-block {
|
|
13
|
+
height: auto;
|
|
14
|
+
|
|
15
|
+
&:before {
|
|
16
|
+
content: "";
|
|
17
|
+
display: block;
|
|
18
|
+
padding-top: 100%;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.tracking-block {
|
|
24
|
+
flex: 1;
|
|
25
|
+
border-radius: var(--#{$prefix}tracking-block-border-radius);
|
|
26
|
+
height: var(--#{$prefix}tracking-height);
|
|
27
|
+
min-width: .25rem;
|
|
28
|
+
background: var(--#{$prefix}border-color);
|
|
29
|
+
}
|
|
@@ -0,0 +1,169 @@
|
|
|
1
|
+
@import "typo/hr";
|
|
2
|
+
|
|
3
|
+
.lead {
|
|
4
|
+
line-height: 1.4;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
a {
|
|
8
|
+
text-decoration-skip-ink: auto;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
h1,
|
|
12
|
+
h2,
|
|
13
|
+
h3,
|
|
14
|
+
h4,
|
|
15
|
+
h5,
|
|
16
|
+
h6,
|
|
17
|
+
.h1,
|
|
18
|
+
.h2,
|
|
19
|
+
.h3,
|
|
20
|
+
.h4,
|
|
21
|
+
.h5,
|
|
22
|
+
.h6 {
|
|
23
|
+
a {
|
|
24
|
+
color: inherit;
|
|
25
|
+
|
|
26
|
+
&:hover {
|
|
27
|
+
color: inherit;
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
h1,
|
|
33
|
+
.h1 {
|
|
34
|
+
font-size: var(--#{$prefix}font-size-h1);
|
|
35
|
+
line-height: var(--#{$prefix}line-height-h1);
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
h2,
|
|
39
|
+
.h2 {
|
|
40
|
+
font-size: var(--#{$prefix}font-size-h2);
|
|
41
|
+
line-height: var(--#{$prefix}line-height-h2);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
h3,
|
|
45
|
+
.h3 {
|
|
46
|
+
font-size: var(--#{$prefix}font-size-h3);
|
|
47
|
+
line-height: var(--#{$prefix}line-height-h3);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
h4,
|
|
51
|
+
.h4 {
|
|
52
|
+
font-size: var(--#{$prefix}font-size-h4);
|
|
53
|
+
line-height: var(--#{$prefix}line-height-h4);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
h5,
|
|
57
|
+
.h5 {
|
|
58
|
+
font-size: var(--#{$prefix}font-size-h5);
|
|
59
|
+
line-height: var(--#{$prefix}line-height-h5);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
h6,
|
|
63
|
+
.h6 {
|
|
64
|
+
font-size: var(--#{$prefix}font-size-h6);
|
|
65
|
+
line-height: var(--#{$prefix}line-height-h6);
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
strong,
|
|
69
|
+
.strong,
|
|
70
|
+
b {
|
|
71
|
+
font-weight: $headings-font-weight;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
blockquote {
|
|
75
|
+
padding-left: 1rem;
|
|
76
|
+
border-left: 2px var(--#{$prefix}border-style) var(--#{$prefix}border-color);
|
|
77
|
+
|
|
78
|
+
p {
|
|
79
|
+
margin-bottom: 1rem;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
cite {
|
|
83
|
+
display: block;
|
|
84
|
+
text-align: right;
|
|
85
|
+
|
|
86
|
+
&:before {
|
|
87
|
+
content: "— ";
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
ul, ol {
|
|
93
|
+
padding-left: 1.5rem;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
hr {
|
|
97
|
+
margin: 2rem 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
dl {
|
|
101
|
+
dd {
|
|
102
|
+
&:last-child {
|
|
103
|
+
margin-bottom: 0;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
pre {
|
|
109
|
+
padding: $pre-padding;
|
|
110
|
+
background: $pre-bg;
|
|
111
|
+
color: $pre-color;
|
|
112
|
+
border-radius: var(--#{$prefix}border-radius);
|
|
113
|
+
|
|
114
|
+
code {
|
|
115
|
+
background: transparent;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
code {
|
|
120
|
+
background: var(--#{$prefix}code-bg);
|
|
121
|
+
padding: 2px 4px;
|
|
122
|
+
border-radius: var(--#{$prefix}border-radius);
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
kbd,
|
|
126
|
+
.kbd {
|
|
127
|
+
border: $kbd-border;
|
|
128
|
+
display: inline-block;
|
|
129
|
+
box-sizing: border-box;
|
|
130
|
+
max-width: 100%;
|
|
131
|
+
font-size: $kbd-font-size;
|
|
132
|
+
font-weight: $kbd-font-weight;
|
|
133
|
+
line-height: 1;
|
|
134
|
+
vertical-align: baseline;
|
|
135
|
+
border-radius: $kbd-border-radius;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
img {
|
|
139
|
+
max-width: 100%;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.list-unstyled {
|
|
143
|
+
margin-left: 0;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
/**
|
|
148
|
+
Selection
|
|
149
|
+
*/
|
|
150
|
+
::selection {
|
|
151
|
+
background-color: rgba(var(--#{$prefix}primary-rgb), .16);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
Links
|
|
156
|
+
*/
|
|
157
|
+
[class^="link-"], [class*=" link-"] {
|
|
158
|
+
&.disabled {
|
|
159
|
+
color: $nav-link-disabled-color;
|
|
160
|
+
pointer-events: none;
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
/**
|
|
165
|
+
Subheader
|
|
166
|
+
*/
|
|
167
|
+
.subheader {
|
|
168
|
+
@include subheader;
|
|
169
|
+
}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Form check
|
|
3
|
+
*/
|
|
4
|
+
.form-check {
|
|
5
|
+
user-select: none;
|
|
6
|
+
|
|
7
|
+
&.form-check-highlight .form-check-input:not(:checked) ~ .form-check-label {
|
|
8
|
+
color: var(--#{$prefix}secondary);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.form-check-label-off {
|
|
12
|
+
color: var(--#{$prefix}secondary);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.form-check-input:checked ~ .form-check-label-off {
|
|
16
|
+
display: none;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.form-check-input:not(:checked) ~ .form-check-label-on {
|
|
20
|
+
display: none;
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.form-check-input {
|
|
25
|
+
background-size: $form-check-input-width;
|
|
26
|
+
margin-top: ($form-check-min-height - $form-check-input-width) * .5;
|
|
27
|
+
box-shadow: $form-check-input-box-shadow;
|
|
28
|
+
|
|
29
|
+
.form-switch & {
|
|
30
|
+
@include transition(background-color $transition-time, background-position $transition-time);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.form-check-label {
|
|
35
|
+
display: block;
|
|
36
|
+
|
|
37
|
+
&.required {
|
|
38
|
+
&:after {
|
|
39
|
+
content: "*";
|
|
40
|
+
margin-left: .25rem;
|
|
41
|
+
color: $red;
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.form-check-description {
|
|
47
|
+
display: block;
|
|
48
|
+
color: var(--#{$prefix}secondary);
|
|
49
|
+
font-size: $h5-font-size;
|
|
50
|
+
margin-top: .25rem;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
.form-check-single {
|
|
55
|
+
margin: 0;
|
|
56
|
+
|
|
57
|
+
.form-check-input {
|
|
58
|
+
margin: 0;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/*
|
|
63
|
+
Form switch
|
|
64
|
+
*/
|
|
65
|
+
.form-switch {
|
|
66
|
+
.form-check-input {
|
|
67
|
+
height: $form-switch-height;
|
|
68
|
+
margin-top: ($form-check-min-height - $form-switch-height) * .5;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.form-switch-lg {
|
|
73
|
+
padding-left: 3.5rem;
|
|
74
|
+
min-height: 1.5rem;
|
|
75
|
+
|
|
76
|
+
.form-check-input {
|
|
77
|
+
height: 1.5rem;
|
|
78
|
+
width: 2.75rem;
|
|
79
|
+
background-size: 1.5rem;
|
|
80
|
+
margin-left: -3.5rem;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.form-check-label {
|
|
84
|
+
padding-top: .125rem;
|
|
85
|
+
}
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
/*Correction of Form-check position*/
|
|
89
|
+
.form-check-input:checked {
|
|
90
|
+
border: none;
|
|
91
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/*
|
|
2
|
+
Color Input
|
|
3
|
+
*/
|
|
4
|
+
.form-colorinput {
|
|
5
|
+
position: relative;
|
|
6
|
+
display: inline-block;
|
|
7
|
+
margin: 0;
|
|
8
|
+
line-height: 1;
|
|
9
|
+
cursor: pointer;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.form-colorinput-input {
|
|
13
|
+
position: absolute;
|
|
14
|
+
z-index: -1;
|
|
15
|
+
opacity: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.form-colorinput-color {
|
|
19
|
+
display: block;
|
|
20
|
+
width: 1.5rem;
|
|
21
|
+
height: 1.5rem;
|
|
22
|
+
color: $white;
|
|
23
|
+
border: var(--#{$prefix}border-width) var(--#{$prefix}border-style) $input-border-color-translucent;
|
|
24
|
+
border-radius: 3px;
|
|
25
|
+
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .05);
|
|
26
|
+
|
|
27
|
+
&:before {
|
|
28
|
+
position: absolute;
|
|
29
|
+
top: 0;
|
|
30
|
+
left: 0;
|
|
31
|
+
width: 100%;
|
|
32
|
+
height: 100%;
|
|
33
|
+
content: "";
|
|
34
|
+
background: no-repeat center center/$form-check-input-checked-bg-size;
|
|
35
|
+
background-image: escape-svg($form-check-input-checked-bg-image);
|
|
36
|
+
opacity: 0;
|
|
37
|
+
@include transition(opacity $transition-time);
|
|
38
|
+
|
|
39
|
+
.form-colorinput-input:checked ~ & {
|
|
40
|
+
opacity: 1;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.form-colorinput-input:focus ~ & {
|
|
45
|
+
border-color: var(--#{$prefix}primary);
|
|
46
|
+
box-shadow: $input-btn-focus-box-shadow;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
@at-root .form-colorinput-light & {
|
|
50
|
+
&:before {
|
|
51
|
+
background-image: escape-svg($form-check-input-checked-bg-image-dark);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Bootstrap color input
|
|
3
|
+
*/
|
|
4
|
+
.form-control-color {
|
|
5
|
+
&::-webkit-color-swatch {
|
|
6
|
+
border: none;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
Remove the cancel buttons in Chrome and Safari on macOS.
|
|
12
|
+
*/
|
|
13
|
+
[type="search"]::-webkit-search-cancel-button {
|
|
14
|
+
-webkit-appearance: none;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
Form control dark theme fix
|
|
19
|
+
*/
|
|
20
|
+
.form-control {
|
|
21
|
+
&::file-selector-button {
|
|
22
|
+
background-color: var(--#{$prefix}btn-color, #{$form-file-button-bg});
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&:hover:not(:disabled):not([readonly])::file-selector-button {
|
|
26
|
+
background-color: var(--#{$prefix}btn-color, #{$form-file-button-hover-bg});
|
|
27
|
+
}
|
|
28
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**
|
|
2
|
+
Icon input
|
|
3
|
+
*/
|
|
4
|
+
.input-icon {
|
|
5
|
+
position: relative;
|
|
6
|
+
|
|
7
|
+
.form-control:not(:last-child),
|
|
8
|
+
.form-select:not(:last-child) {
|
|
9
|
+
padding-right: 2.5rem;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.form-control:not(:first-child),
|
|
13
|
+
.form-select:not(:last-child) {
|
|
14
|
+
padding-left: 2.5rem;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.input-icon-addon {
|
|
19
|
+
position: absolute;
|
|
20
|
+
top: 0;
|
|
21
|
+
bottom: 0;
|
|
22
|
+
left: 0;
|
|
23
|
+
display: flex;
|
|
24
|
+
align-items: center;
|
|
25
|
+
justify-content: center;
|
|
26
|
+
min-width: 2.5rem;
|
|
27
|
+
color: var(--#{$prefix}icon-color);
|
|
28
|
+
pointer-events: none;
|
|
29
|
+
font-size: 1.2em;
|
|
30
|
+
|
|
31
|
+
&:last-child {
|
|
32
|
+
right: 0;
|
|
33
|
+
left: auto;
|
|
34
|
+
}
|
|
35
|
+
}
|