@energycap/components 0.45.1 → 0.45.2-multi-select-component.20260303-0736
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 +188 -188
- package/fesm2022/energycap-components.mjs +690 -196
- package/fesm2022/energycap-components.mjs.map +1 -1
- package/package.json +1 -1
- package/schematics/collection.json +4 -4
- package/src/assets/images/favicon-ech.svg +14 -14
- package/src/assets/images/favicon-esa.svg +6 -6
- package/src/assets/images/favicon-eum.svg +13 -13
- package/src/assets/images/favicon-whitelabel.svg +4 -4
- package/src/assets/images/favicon.svg +12 -12
- package/src/assets/images/icon-carbonhub.svg +10 -10
- package/src/assets/images/icon-eum.svg +5 -5
- package/src/assets/images/icon-ucp.svg +12 -12
- package/src/assets/images/icon-wattics.svg +5 -5
- package/src/assets/images/icon.svg +11 -11
- package/src/assets/images/logo.svg +10 -10
- package/src/assets/images/splash-electric.svg +3 -3
- package/src/assets/images/splash-interval.svg +3 -3
- package/src/assets/images/splash-seedling.svg +11 -11
- package/src/assets/images/splash-water.svg +3 -3
- package/src/assets/locales/en_US.json +60 -60
- package/src/assets/scripts/unsupported-browser.js +17 -17
- package/src/styles/_base.scss +38 -38
- package/src/styles/_colors.scss +96 -96
- package/src/styles/_core.scss +3 -3
- package/src/styles/_functions.scss +114 -114
- package/src/styles/_global-variables.scss +230 -230
- package/src/styles/_icons.scss +23 -23
- package/src/styles/bootstrap/_grid.scss +33 -33
- package/src/styles/bootstrap/_reboot.scss +322 -322
- package/src/styles/components/_badge.scss +14 -14
- package/src/styles/components/_card.scss +21 -21
- package/src/styles/components/_link-icons.scss +37 -37
- package/src/styles/components/_splash.scss +188 -188
- package/src/styles/components/_tag.scss +18 -18
- package/src/styles/components/_unsupported-browsers.scss +23 -23
- package/src/styles/email/_email-base.scss +227 -227
- package/src/styles/email/email.scss +42 -42
- package/src/styles/index.scss +29 -29
- package/src/styles/mixins/_animations.scss +17 -17
- package/src/styles/mixins/_button-base.scss +206 -206
- package/src/styles/mixins/_card-base.scss +40 -40
- package/src/styles/mixins/_common.scss +51 -51
- package/src/styles/mixins/_dialog-base.scss +95 -95
- package/src/styles/mixins/_form-control-base.scss +662 -662
- package/src/styles/mixins/_login.scss +74 -74
- package/src/styles/mixins/_menu-base.scss +153 -153
- package/src/styles/mixins/_overlay-base.scss +32 -32
- package/src/styles/mixins/_resizable-base.scss +57 -57
- package/src/styles/mixins/_spinner-base.scss +34 -34
- package/src/styles/mixins/_table-base.scss +297 -297
- package/src/styles/mixins/_tabs-base.scss +146 -146
- package/src/styles/mixins/_tags-base.scss +121 -121
- package/src/styles/mixins/_text.scss +89 -89
- package/src/styles/mixins.scss +14 -14
- package/src/styles/utilities/_borders.scss +29 -29
- package/src/styles/utilities/_common.scss +49 -49
- package/src/styles/utilities/_layout.scss +115 -115
- package/src/styles/utilities/_spacing.scss +64 -64
- package/src/styles/utilities/_text.scss +139 -139
- package/types/energycap-components.d.ts +213 -18
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
// Text mixins
|
|
2
|
-
@mixin text-title-1 {
|
|
3
|
-
color: var(--ec-color-primary-dark);
|
|
4
|
-
font-size: var(--ec-font-size-title);
|
|
5
|
-
font-weight: var(--ec-font-weight-bold);
|
|
6
|
-
line-height: 1.2;
|
|
7
|
-
margin: 0;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
@mixin text-title-2 {
|
|
11
|
-
@include text-title-1;
|
|
12
|
-
font-weight: var(--ec-font-weight-normal);
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
@mixin text-heading-1 {
|
|
16
|
-
color: var(--ec-color-primary-dark);
|
|
17
|
-
font-size: var(--ec-font-size-body);
|
|
18
|
-
font-weight: var(--ec-font-weight-bold);
|
|
19
|
-
line-height: 1.5;
|
|
20
|
-
margin: 0;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
@mixin text-heading-2 {
|
|
24
|
-
@include text-heading-1;
|
|
25
|
-
font-weight: var(--ec-font-weight-normal);
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
@mixin text-heading-3 {
|
|
29
|
-
color: var(--ec-color-secondary-dark);
|
|
30
|
-
font-size: var(--ec-font-size-label);
|
|
31
|
-
font-weight: var(--ec-font-weight-bold);
|
|
32
|
-
line-height: 1.333333333;
|
|
33
|
-
margin: 0;
|
|
34
|
-
text-transform: uppercase;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
@mixin text-body-1 {
|
|
38
|
-
color: var(--ec-color-primary-dark);
|
|
39
|
-
font-size: var(--ec-font-size);
|
|
40
|
-
font-weight: var(--ec-font-weight-normal);
|
|
41
|
-
line-height: 1.285714286;
|
|
42
|
-
margin: 0;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
@mixin text-body-2 {
|
|
46
|
-
color: var(--ec-color-primary-dark);
|
|
47
|
-
font-size: var(--ec-font-size-label);
|
|
48
|
-
font-weight: var(--ec-font-weight-normal);
|
|
49
|
-
line-height: 1.333333333;
|
|
50
|
-
margin: 0;
|
|
51
|
-
}
|
|
52
|
-
|
|
53
|
-
@mixin text-caption-1 {
|
|
54
|
-
color: var(--ec-color-secondary-dark);
|
|
55
|
-
font-size: var(--ec-font-size-label);
|
|
56
|
-
font-weight: var(--ec-font-weight-normal);
|
|
57
|
-
line-height: 1.333333333;
|
|
58
|
-
margin: 0;
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
@mixin text-caption-2 {
|
|
62
|
-
color: var(--ec-color-secondary-dark);
|
|
63
|
-
font-size: var(--ec-font-size-tiny);
|
|
64
|
-
font-weight: var(--ec-font-weight-bold);
|
|
65
|
-
line-height: 1.6;
|
|
66
|
-
margin: 0;
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
@mixin text-display-1 {
|
|
70
|
-
color: var(--ec-color-primary-dark);
|
|
71
|
-
font-size: var(--ec-font-size-body);
|
|
72
|
-
font-weight: var(--ec-font-weight-normal);
|
|
73
|
-
line-height: 1.25;
|
|
74
|
-
margin: 0;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
@mixin text-link {
|
|
78
|
-
color: var(--ec-color-link) !important;
|
|
79
|
-
cursor: pointer;
|
|
80
|
-
|
|
81
|
-
&:hover {
|
|
82
|
-
text-decoration: underline;
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
&:focus {
|
|
86
|
-
outline: none;
|
|
87
|
-
text-decoration: underline;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
1
|
+
// Text mixins
|
|
2
|
+
@mixin text-title-1 {
|
|
3
|
+
color: var(--ec-color-primary-dark);
|
|
4
|
+
font-size: var(--ec-font-size-title);
|
|
5
|
+
font-weight: var(--ec-font-weight-bold);
|
|
6
|
+
line-height: 1.2;
|
|
7
|
+
margin: 0;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@mixin text-title-2 {
|
|
11
|
+
@include text-title-1;
|
|
12
|
+
font-weight: var(--ec-font-weight-normal);
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@mixin text-heading-1 {
|
|
16
|
+
color: var(--ec-color-primary-dark);
|
|
17
|
+
font-size: var(--ec-font-size-body);
|
|
18
|
+
font-weight: var(--ec-font-weight-bold);
|
|
19
|
+
line-height: 1.5;
|
|
20
|
+
margin: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@mixin text-heading-2 {
|
|
24
|
+
@include text-heading-1;
|
|
25
|
+
font-weight: var(--ec-font-weight-normal);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
@mixin text-heading-3 {
|
|
29
|
+
color: var(--ec-color-secondary-dark);
|
|
30
|
+
font-size: var(--ec-font-size-label);
|
|
31
|
+
font-weight: var(--ec-font-weight-bold);
|
|
32
|
+
line-height: 1.333333333;
|
|
33
|
+
margin: 0;
|
|
34
|
+
text-transform: uppercase;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
@mixin text-body-1 {
|
|
38
|
+
color: var(--ec-color-primary-dark);
|
|
39
|
+
font-size: var(--ec-font-size);
|
|
40
|
+
font-weight: var(--ec-font-weight-normal);
|
|
41
|
+
line-height: 1.285714286;
|
|
42
|
+
margin: 0;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
@mixin text-body-2 {
|
|
46
|
+
color: var(--ec-color-primary-dark);
|
|
47
|
+
font-size: var(--ec-font-size-label);
|
|
48
|
+
font-weight: var(--ec-font-weight-normal);
|
|
49
|
+
line-height: 1.333333333;
|
|
50
|
+
margin: 0;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@mixin text-caption-1 {
|
|
54
|
+
color: var(--ec-color-secondary-dark);
|
|
55
|
+
font-size: var(--ec-font-size-label);
|
|
56
|
+
font-weight: var(--ec-font-weight-normal);
|
|
57
|
+
line-height: 1.333333333;
|
|
58
|
+
margin: 0;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
@mixin text-caption-2 {
|
|
62
|
+
color: var(--ec-color-secondary-dark);
|
|
63
|
+
font-size: var(--ec-font-size-tiny);
|
|
64
|
+
font-weight: var(--ec-font-weight-bold);
|
|
65
|
+
line-height: 1.6;
|
|
66
|
+
margin: 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
@mixin text-display-1 {
|
|
70
|
+
color: var(--ec-color-primary-dark);
|
|
71
|
+
font-size: var(--ec-font-size-body);
|
|
72
|
+
font-weight: var(--ec-font-weight-normal);
|
|
73
|
+
line-height: 1.25;
|
|
74
|
+
margin: 0;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@mixin text-link {
|
|
78
|
+
color: var(--ec-color-link) !important;
|
|
79
|
+
cursor: pointer;
|
|
80
|
+
|
|
81
|
+
&:hover {
|
|
82
|
+
text-decoration: underline;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
&:focus {
|
|
86
|
+
outline: none;
|
|
87
|
+
text-decoration: underline;
|
|
88
|
+
}
|
|
89
|
+
}
|
package/src/styles/mixins.scss
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
// Component base mixins imported here so they are availabe to consumers
|
|
2
|
-
// of the component library
|
|
3
|
-
@import 'mixins/common';
|
|
4
|
-
@import 'mixins/button-base';
|
|
5
|
-
@import 'mixins/dialog-base';
|
|
6
|
-
@import 'mixins/form-control-base';
|
|
7
|
-
@import 'mixins/overlay-base';
|
|
8
|
-
@import 'mixins/spinner-base';
|
|
9
|
-
@import 'mixins/tabs-base';
|
|
10
|
-
@import 'mixins/table-base';
|
|
11
|
-
@import 'mixins/resizable-base';
|
|
12
|
-
@import 'mixins/login';
|
|
13
|
-
@import 'mixins/tags-base';
|
|
14
|
-
@import 'mixins/animations';
|
|
1
|
+
// Component base mixins imported here so they are availabe to consumers
|
|
2
|
+
// of the component library
|
|
3
|
+
@import 'mixins/common';
|
|
4
|
+
@import 'mixins/button-base';
|
|
5
|
+
@import 'mixins/dialog-base';
|
|
6
|
+
@import 'mixins/form-control-base';
|
|
7
|
+
@import 'mixins/overlay-base';
|
|
8
|
+
@import 'mixins/spinner-base';
|
|
9
|
+
@import 'mixins/tabs-base';
|
|
10
|
+
@import 'mixins/table-base';
|
|
11
|
+
@import 'mixins/resizable-base';
|
|
12
|
+
@import 'mixins/login';
|
|
13
|
+
@import 'mixins/tags-base';
|
|
14
|
+
@import 'mixins/animations';
|
|
15
15
|
@import 'mixins/card-base';
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
.border-0 {
|
|
2
|
-
border: 0 !important;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.border-all {
|
|
6
|
-
border: 1px solid var(--ec-border-color) !important;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
.border-all-dark {
|
|
10
|
-
border: 1px solid var(--ec-border-color-dark) !important;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
$sides: (top, bottom, right, left);
|
|
14
|
-
@each $side in $sides {
|
|
15
|
-
.border-#{$side}-0 {
|
|
16
|
-
border-#{$side}: 0 !important;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.border-#{$side} {
|
|
20
|
-
border-#{$side}: 1px solid var(--ec-border-color) !important;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.border-#{$side}-dark {
|
|
24
|
-
border-#{$side}: 1px solid var(--ec-border-color-dark) !important;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.border-radius-0 {
|
|
29
|
-
--ec-border-radius: 0;
|
|
1
|
+
.border-0 {
|
|
2
|
+
border: 0 !important;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.border-all {
|
|
6
|
+
border: 1px solid var(--ec-border-color) !important;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.border-all-dark {
|
|
10
|
+
border: 1px solid var(--ec-border-color-dark) !important;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
$sides: (top, bottom, right, left);
|
|
14
|
+
@each $side in $sides {
|
|
15
|
+
.border-#{$side}-0 {
|
|
16
|
+
border-#{$side}: 0 !important;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.border-#{$side} {
|
|
20
|
+
border-#{$side}: 1px solid var(--ec-border-color) !important;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.border-#{$side}-dark {
|
|
24
|
+
border-#{$side}: 1px solid var(--ec-border-color-dark) !important;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.border-radius-0 {
|
|
29
|
+
--ec-border-radius: 0;
|
|
30
30
|
}
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
@import '../mixins/text';
|
|
2
|
-
|
|
3
|
-
.cursor-pointer {
|
|
4
|
-
cursor: pointer !important;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
.control-group {
|
|
8
|
-
--ec-border-radius: 0;
|
|
9
|
-
|
|
10
|
-
> :first-child {
|
|
11
|
-
--ec-border-radius: .25rem 0 0 .25rem;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
> :last-child {
|
|
15
|
-
--ec-border-radius: 0 .25rem .25rem 0;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
> :not(:first-child) {
|
|
19
|
-
margin-left: -1px;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
.control-group-reverse {
|
|
24
|
-
--ec-border-radius: 0;
|
|
25
|
-
|
|
26
|
-
> :last-child {
|
|
27
|
-
--ec-border-radius: .25rem 0 0 .25rem;
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
> :first-child {
|
|
31
|
-
--ec-border-radius: 0 .25rem .25rem 0;
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
> :not(:last-child) {
|
|
35
|
-
margin-left: -1px;
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
.popover-content-dark {
|
|
40
|
-
@include text-body-1;
|
|
41
|
-
--ec-color-link: var(--ec-color-link-light);
|
|
42
|
-
background-color: var(--ec-color-gray-8);
|
|
43
|
-
color: var(--ec-color-primary-light);
|
|
44
|
-
padding: .375rem .5rem .375rem 1.75rem;
|
|
45
|
-
|
|
46
|
-
&.is-right-positioned {
|
|
47
|
-
padding: .375rem 1.75rem .375rem .5rem;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
1
|
+
@import '../mixins/text';
|
|
2
|
+
|
|
3
|
+
.cursor-pointer {
|
|
4
|
+
cursor: pointer !important;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.control-group {
|
|
8
|
+
--ec-border-radius: 0;
|
|
9
|
+
|
|
10
|
+
> :first-child {
|
|
11
|
+
--ec-border-radius: .25rem 0 0 .25rem;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
> :last-child {
|
|
15
|
+
--ec-border-radius: 0 .25rem .25rem 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
> :not(:first-child) {
|
|
19
|
+
margin-left: -1px;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.control-group-reverse {
|
|
24
|
+
--ec-border-radius: 0;
|
|
25
|
+
|
|
26
|
+
> :last-child {
|
|
27
|
+
--ec-border-radius: .25rem 0 0 .25rem;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
> :first-child {
|
|
31
|
+
--ec-border-radius: 0 .25rem .25rem 0;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
> :not(:last-child) {
|
|
35
|
+
margin-left: -1px;
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.popover-content-dark {
|
|
40
|
+
@include text-body-1;
|
|
41
|
+
--ec-color-link: var(--ec-color-link-light);
|
|
42
|
+
background-color: var(--ec-color-gray-8);
|
|
43
|
+
color: var(--ec-color-primary-light);
|
|
44
|
+
padding: .375rem .5rem .375rem 1.75rem;
|
|
45
|
+
|
|
46
|
+
&.is-right-positioned {
|
|
47
|
+
padding: .375rem 1.75rem .375rem .5rem;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -1,116 +1,116 @@
|
|
|
1
|
-
// TODO: implement when bootstrap dependency is replaced
|
|
2
|
-
|
|
3
|
-
// .d-flex {
|
|
4
|
-
// display: flex !important;
|
|
5
|
-
// }
|
|
6
|
-
|
|
7
|
-
// .d-block {
|
|
8
|
-
// display: block !important;
|
|
9
|
-
// }
|
|
10
|
-
|
|
11
|
-
// .d-inline {
|
|
12
|
-
// display: inline !important;
|
|
13
|
-
// }
|
|
14
|
-
|
|
15
|
-
// .d-inline-block {
|
|
16
|
-
// display: inline-block !important;
|
|
17
|
-
// }
|
|
18
|
-
|
|
19
|
-
// .d-inline-flex {
|
|
20
|
-
// display: inline-flex !important;
|
|
21
|
-
// }
|
|
22
|
-
|
|
23
|
-
// .d-none {
|
|
24
|
-
// display: none !important;
|
|
25
|
-
// }
|
|
26
|
-
|
|
27
|
-
.flex-grow {
|
|
28
|
-
flex: 1 1 !important;
|
|
29
|
-
min-height: 0;
|
|
30
|
-
min-width: 0;
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
.flex-shrink {
|
|
34
|
-
flex: none !important;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.flex-shrink-max {
|
|
38
|
-
flex: 0 1 auto !important;
|
|
39
|
-
min-height: 0;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
// .flex-column {
|
|
43
|
-
// flex-direction: column !important;
|
|
44
|
-
// }
|
|
45
|
-
|
|
46
|
-
// .flex-1 {
|
|
47
|
-
// flex: 1 1 !important;
|
|
48
|
-
// }
|
|
49
|
-
|
|
50
|
-
// .flex-2 {
|
|
51
|
-
// flex: 2 2 !important;
|
|
52
|
-
// }
|
|
53
|
-
|
|
54
|
-
// .flex-3 {
|
|
55
|
-
// flex: 3 3 !important;
|
|
56
|
-
// }
|
|
57
|
-
|
|
58
|
-
// .flex-4 {
|
|
59
|
-
// flex: 4 4 !important;
|
|
60
|
-
// }
|
|
61
|
-
|
|
62
|
-
// .flex-5 {
|
|
63
|
-
// flex: 5 5 !important;
|
|
64
|
-
// }
|
|
65
|
-
|
|
66
|
-
// .flex-6 {
|
|
67
|
-
// flex: 6 6 !important;
|
|
68
|
-
// }
|
|
69
|
-
|
|
70
|
-
// .align-items-center {
|
|
71
|
-
// align-items: center !important;
|
|
72
|
-
// }
|
|
73
|
-
|
|
74
|
-
// .align-items-baseline {
|
|
75
|
-
// align-items: baseline !important;
|
|
76
|
-
// }
|
|
77
|
-
|
|
78
|
-
// .justify-content-center {
|
|
79
|
-
// justify-content: center !important;
|
|
80
|
-
// }
|
|
81
|
-
|
|
82
|
-
// .h-100 {
|
|
83
|
-
// height: 100% !important;
|
|
84
|
-
// }
|
|
85
|
-
|
|
86
|
-
// .h-auto {
|
|
87
|
-
// height: auto !important;
|
|
88
|
-
// }
|
|
89
|
-
|
|
90
|
-
// .w-100 {
|
|
91
|
-
// width: 100% !important;
|
|
92
|
-
// }
|
|
93
|
-
|
|
94
|
-
// .w-auto {
|
|
95
|
-
// width: auto !important;
|
|
96
|
-
// }
|
|
97
|
-
|
|
98
|
-
.scroll-y {
|
|
99
|
-
overflow-y: auto !important;
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
.position-relative {
|
|
103
|
-
position: relative !important;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
.position-absolute {
|
|
107
|
-
position: absolute !important;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
.position-fixed {
|
|
111
|
-
position: fixed !important;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.v-align-middle {
|
|
115
|
-
vertical-align: middle !important;
|
|
1
|
+
// TODO: implement when bootstrap dependency is replaced
|
|
2
|
+
|
|
3
|
+
// .d-flex {
|
|
4
|
+
// display: flex !important;
|
|
5
|
+
// }
|
|
6
|
+
|
|
7
|
+
// .d-block {
|
|
8
|
+
// display: block !important;
|
|
9
|
+
// }
|
|
10
|
+
|
|
11
|
+
// .d-inline {
|
|
12
|
+
// display: inline !important;
|
|
13
|
+
// }
|
|
14
|
+
|
|
15
|
+
// .d-inline-block {
|
|
16
|
+
// display: inline-block !important;
|
|
17
|
+
// }
|
|
18
|
+
|
|
19
|
+
// .d-inline-flex {
|
|
20
|
+
// display: inline-flex !important;
|
|
21
|
+
// }
|
|
22
|
+
|
|
23
|
+
// .d-none {
|
|
24
|
+
// display: none !important;
|
|
25
|
+
// }
|
|
26
|
+
|
|
27
|
+
.flex-grow {
|
|
28
|
+
flex: 1 1 !important;
|
|
29
|
+
min-height: 0;
|
|
30
|
+
min-width: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.flex-shrink {
|
|
34
|
+
flex: none !important;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.flex-shrink-max {
|
|
38
|
+
flex: 0 1 auto !important;
|
|
39
|
+
min-height: 0;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// .flex-column {
|
|
43
|
+
// flex-direction: column !important;
|
|
44
|
+
// }
|
|
45
|
+
|
|
46
|
+
// .flex-1 {
|
|
47
|
+
// flex: 1 1 !important;
|
|
48
|
+
// }
|
|
49
|
+
|
|
50
|
+
// .flex-2 {
|
|
51
|
+
// flex: 2 2 !important;
|
|
52
|
+
// }
|
|
53
|
+
|
|
54
|
+
// .flex-3 {
|
|
55
|
+
// flex: 3 3 !important;
|
|
56
|
+
// }
|
|
57
|
+
|
|
58
|
+
// .flex-4 {
|
|
59
|
+
// flex: 4 4 !important;
|
|
60
|
+
// }
|
|
61
|
+
|
|
62
|
+
// .flex-5 {
|
|
63
|
+
// flex: 5 5 !important;
|
|
64
|
+
// }
|
|
65
|
+
|
|
66
|
+
// .flex-6 {
|
|
67
|
+
// flex: 6 6 !important;
|
|
68
|
+
// }
|
|
69
|
+
|
|
70
|
+
// .align-items-center {
|
|
71
|
+
// align-items: center !important;
|
|
72
|
+
// }
|
|
73
|
+
|
|
74
|
+
// .align-items-baseline {
|
|
75
|
+
// align-items: baseline !important;
|
|
76
|
+
// }
|
|
77
|
+
|
|
78
|
+
// .justify-content-center {
|
|
79
|
+
// justify-content: center !important;
|
|
80
|
+
// }
|
|
81
|
+
|
|
82
|
+
// .h-100 {
|
|
83
|
+
// height: 100% !important;
|
|
84
|
+
// }
|
|
85
|
+
|
|
86
|
+
// .h-auto {
|
|
87
|
+
// height: auto !important;
|
|
88
|
+
// }
|
|
89
|
+
|
|
90
|
+
// .w-100 {
|
|
91
|
+
// width: 100% !important;
|
|
92
|
+
// }
|
|
93
|
+
|
|
94
|
+
// .w-auto {
|
|
95
|
+
// width: auto !important;
|
|
96
|
+
// }
|
|
97
|
+
|
|
98
|
+
.scroll-y {
|
|
99
|
+
overflow-y: auto !important;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.position-relative {
|
|
103
|
+
position: relative !important;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.position-absolute {
|
|
107
|
+
position: absolute !important;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.position-fixed {
|
|
111
|
+
position: fixed !important;
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.v-align-middle {
|
|
115
|
+
vertical-align: middle !important;
|
|
116
116
|
}
|