@cck-ui/core 0.33.0 → 0.34.1
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/cjs/components/card/card-section/card-section.cjs +376 -0
- package/cjs/components/card/card-section/card-section.cjs.map +1 -0
- package/cjs/components/card/card.cjs +441 -0
- package/cjs/components/card/card.cjs.map +1 -0
- package/cjs/components/card/card.constant.cjs +7 -0
- package/cjs/components/card/card.constant.cjs.map +1 -0
- package/cjs/components/card/card.module.cjs +10 -0
- package/cjs/components/card/card.module.cjs.map +1 -0
- package/cjs/components/card/card.utils.cjs +8 -0
- package/cjs/components/card/card.utils.cjs.map +1 -0
- package/cjs/components/card/index.cjs +18 -0
- package/cjs/components/card/index.cjs.map +1 -0
- package/cjs/components/paper/index.cjs +1 -1
- package/cjs/components/paper/paper.cjs +1 -1
- package/cjs/core/utils/filter-falsy-children/filter-falsy-children.cjs +17 -0
- package/cjs/core/utils/filter-falsy-children/filter-falsy-children.cjs.map +1 -0
- package/cjs/index.cjs +79 -72
- package/cjs/index.cjs.map +1 -1
- package/esm/components/card/card-section/card-section.mjs +376 -0
- package/esm/components/card/card-section/card-section.mjs.map +1 -0
- package/esm/components/card/card.constant.mjs +7 -0
- package/esm/components/card/card.constant.mjs.map +1 -0
- package/esm/components/card/card.mjs +441 -0
- package/esm/components/card/card.mjs.map +1 -0
- package/esm/components/card/card.module.mjs +10 -0
- package/esm/components/card/card.module.mjs.map +1 -0
- package/esm/components/card/card.utils.mjs +9 -0
- package/esm/components/card/card.utils.mjs.map +1 -0
- package/esm/components/card/index.mjs +15 -0
- package/esm/components/card/index.mjs.map +1 -0
- package/esm/components/paper/index.mjs +1 -1
- package/esm/components/paper/paper.mjs +1 -1
- package/esm/core/utils/filter-falsy-children/filter-falsy-children.mjs +17 -0
- package/esm/core/utils/filter-falsy-children/filter-falsy-children.mjs.map +1 -0
- package/esm/index.mjs +5 -1
- package/esm/index.mjs.map +1 -1
- package/lib/components/card/card-section/card-section.types.d.ts +15 -0
- package/lib/components/card/card.constant.d.ts +3 -0
- package/lib/components/card/card.context.d.ts +5 -0
- package/lib/components/card/card.types.d.ts +34 -0
- package/lib/components/card/card.utils.d.ts +8 -0
- package/lib/components/card/index.d.ts +11 -0
- package/lib/components/index.d.ts +1 -0
- package/lib/core/styles-api/styles-api.types.d.ts +2 -1
- package/lib/core/utils/filter-falsy-children/filter-falsy-children.d.ts +2 -0
- package/lib/core/utils/index.d.ts +1 -0
- package/package.json +1 -1
- package/styles/card.css +89 -0
- package/styles/card.layer.css +90 -0
- package/styles.css +115 -25
- package/styles.layer.css +115 -25
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { SFCWithInstallAndClasses } from '../../core';
|
|
2
|
+
import CardSection from './card-section/card-section.vue';
|
|
3
|
+
import classes from './card.module.css';
|
|
4
|
+
import Card from './card.vue';
|
|
5
|
+
export declare const CCardSection: SFCWithInstallAndClasses<typeof CardSection>;
|
|
6
|
+
export declare const CCard: SFCWithInstallAndClasses<typeof Card, typeof classes> & {
|
|
7
|
+
Section: typeof CardSection;
|
|
8
|
+
};
|
|
9
|
+
export default CCard;
|
|
10
|
+
export * from './card-section/card-section.types';
|
|
11
|
+
export * from './card.types';
|
|
@@ -3,6 +3,7 @@ import { CStyleProp } from '../box';
|
|
|
3
3
|
import type { FactoryPayload } from '../factory';
|
|
4
4
|
import type { CTheme } from '../config-provider';
|
|
5
5
|
import { PartialVarsResolver } from './create-vars-resolver/create-vars-resolver';
|
|
6
|
+
import { MaybeRefOrGetter } from 'vue';
|
|
6
7
|
export type Styles<Payload extends FactoryPayload> = StylesApiRecord<Payload, Properties>;
|
|
7
8
|
export type ClassNames<Payload extends FactoryPayload> = StylesApiRecord<Payload, string>;
|
|
8
9
|
export type ClassNamesArray<Payload extends FactoryPayload> = (StylesApiRecord<Payload, string> | undefined)[];
|
|
@@ -11,7 +12,7 @@ export type Attributes<Payload extends FactoryPayload> = Payload['stylesNames']
|
|
|
11
12
|
} : never;
|
|
12
13
|
export type StylesRecord<StylesNames extends string, Payload> = Partial<Record<StylesNames, Payload>>;
|
|
13
14
|
export interface GetStylesApiOptions {
|
|
14
|
-
className?: string
|
|
15
|
+
className?: MaybeRefOrGetter<string | undefined>;
|
|
15
16
|
style?: CStyleProp;
|
|
16
17
|
focusable?: boolean;
|
|
17
18
|
active?: boolean;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { deepMerge } from './deep-merge/deep-merge';
|
|
2
2
|
export { camelToKebabCase } from './camel-to-kebab-case/camel-to-kebab-case';
|
|
3
|
+
export { filterFalsyChildren } from './filter-falsy-children/filter-falsy-children';
|
|
3
4
|
export { filterProps } from './filter-props/filter-props';
|
|
4
5
|
export { getBaseValue } from './get-base-value/get-base-value';
|
|
5
6
|
export { getBreakpointValue } from './get-breakpoint-value/get-breakpoint-value';
|
package/package.json
CHANGED
package/styles/card.css
ADDED
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
.m_6ea3917f {
|
|
2
|
+
--card-padding: var(--c-spacing-md);
|
|
3
|
+
|
|
4
|
+
position: relative;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
display: flex;
|
|
7
|
+
padding: var(--card-padding);
|
|
8
|
+
color: var(--c-color-text);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.m_6ea3917f:where([data-orientation='horizontal']) {
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.m_6ea3917f:where([data-orientation='vertical']) {
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
:where([data-c-color-scheme='light']) .m_6ea3917f {
|
|
20
|
+
background-color: var(--c-color-white);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:where([data-c-color-scheme='dark']) .m_6ea3917f {
|
|
24
|
+
background-color: var(--c-color-dark-6);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.m_4fcecd28 {
|
|
28
|
+
display: block;
|
|
29
|
+
margin-inline: calc(var(--card-padding) * -1);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
:where([data-c-color-scheme='light']) .m_4fcecd28 {
|
|
33
|
+
--border-color: var(--c-color-gray-3);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
:where([data-c-color-scheme='dark']) .m_4fcecd28 {
|
|
37
|
+
--border-color: var(--c-color-dark-4);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.m_4fcecd28:where([data-orientation='vertical']):first-child {
|
|
41
|
+
margin-top: calc(var(--card-padding) * -1);
|
|
42
|
+
border-top: none !important;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.m_4fcecd28:where([data-orientation='vertical']):last-child {
|
|
46
|
+
margin-bottom: calc(var(--card-padding) * -1);
|
|
47
|
+
border-bottom: none !important;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-inherit-padding] {
|
|
51
|
+
padding-inline: var(--card-padding);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-with-border] {
|
|
55
|
+
border-top: 1px solid var(--border-color);
|
|
56
|
+
border-bottom: 1px solid var(--border-color);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.m_4fcecd28:where([data-orientation='vertical']) + .m_4fcecd28:where([data-orientation='vertical']) {
|
|
60
|
+
border-top: none !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.m_4fcecd28:where([data-orientation='horizontal']) {
|
|
64
|
+
margin-block: calc(var(--card-padding) * -1);
|
|
65
|
+
margin-inline: 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.m_4fcecd28:where([data-orientation='horizontal']):first-child {
|
|
69
|
+
margin-inline-start: calc(var(--card-padding) * -1);
|
|
70
|
+
border-inline-start: none !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.m_4fcecd28:where([data-orientation='horizontal']):last-child {
|
|
74
|
+
margin-inline-end: calc(var(--card-padding) * -1);
|
|
75
|
+
border-inline-end: none !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-inherit-padding] {
|
|
79
|
+
padding-block: var(--card-padding);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-with-border] {
|
|
83
|
+
border-inline-start: 1px solid var(--border-color);
|
|
84
|
+
border-inline-end: 1px solid var(--border-color);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.m_4fcecd28:where([data-orientation='horizontal']) + .m_4fcecd28:where([data-orientation='horizontal']) {
|
|
88
|
+
border-inline-start: none !important;
|
|
89
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
@layer cck {.m_6ea3917f {
|
|
2
|
+
--card-padding: var(--c-spacing-md);
|
|
3
|
+
|
|
4
|
+
position: relative;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
display: flex;
|
|
7
|
+
padding: var(--card-padding);
|
|
8
|
+
color: var(--c-color-text);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.m_6ea3917f:where([data-orientation='horizontal']) {
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.m_6ea3917f:where([data-orientation='vertical']) {
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
:where([data-c-color-scheme='light']) .m_6ea3917f {
|
|
20
|
+
background-color: var(--c-color-white);
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
:where([data-c-color-scheme='dark']) .m_6ea3917f {
|
|
24
|
+
background-color: var(--c-color-dark-6);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.m_4fcecd28 {
|
|
28
|
+
display: block;
|
|
29
|
+
margin-inline: calc(var(--card-padding) * -1);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
:where([data-c-color-scheme='light']) .m_4fcecd28 {
|
|
33
|
+
--border-color: var(--c-color-gray-3);
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
:where([data-c-color-scheme='dark']) .m_4fcecd28 {
|
|
37
|
+
--border-color: var(--c-color-dark-4);
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
.m_4fcecd28:where([data-orientation='vertical']):first-child {
|
|
41
|
+
margin-top: calc(var(--card-padding) * -1);
|
|
42
|
+
border-top: none !important;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.m_4fcecd28:where([data-orientation='vertical']):last-child {
|
|
46
|
+
margin-bottom: calc(var(--card-padding) * -1);
|
|
47
|
+
border-bottom: none !important;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-inherit-padding] {
|
|
51
|
+
padding-inline: var(--card-padding);
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-with-border] {
|
|
55
|
+
border-top: 1px solid var(--border-color);
|
|
56
|
+
border-bottom: 1px solid var(--border-color);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.m_4fcecd28:where([data-orientation='vertical']) + .m_4fcecd28:where([data-orientation='vertical']) {
|
|
60
|
+
border-top: none !important;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.m_4fcecd28:where([data-orientation='horizontal']) {
|
|
64
|
+
margin-block: calc(var(--card-padding) * -1);
|
|
65
|
+
margin-inline: 0;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.m_4fcecd28:where([data-orientation='horizontal']):first-child {
|
|
69
|
+
margin-inline-start: calc(var(--card-padding) * -1);
|
|
70
|
+
border-inline-start: none !important;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.m_4fcecd28:where([data-orientation='horizontal']):last-child {
|
|
74
|
+
margin-inline-end: calc(var(--card-padding) * -1);
|
|
75
|
+
border-inline-end: none !important;
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-inherit-padding] {
|
|
79
|
+
padding-block: var(--card-padding);
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-with-border] {
|
|
83
|
+
border-inline-start: 1px solid var(--border-color);
|
|
84
|
+
border-inline-end: 1px solid var(--border-color);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.m_4fcecd28:where([data-orientation='horizontal']) + .m_4fcecd28:where([data-orientation='horizontal']) {
|
|
88
|
+
border-inline-start: none !important;
|
|
89
|
+
}
|
|
90
|
+
}
|
package/styles.css
CHANGED
|
@@ -714,6 +714,121 @@ fieldset:disabled .c-active:active {
|
|
|
714
714
|
display: -webkit-box;
|
|
715
715
|
}
|
|
716
716
|
|
|
717
|
+
.m_a4a0a883 {
|
|
718
|
+
--paper-radius: var(--c-radius-default);
|
|
719
|
+
|
|
720
|
+
outline: 0;
|
|
721
|
+
-webkit-tap-heighlight-color: transparent;
|
|
722
|
+
display: block;
|
|
723
|
+
touch-action: manipulation;
|
|
724
|
+
text-decoration: none;
|
|
725
|
+
border-radius: var(--paper-radius);
|
|
726
|
+
box-shadow: var(--paper-shadow);
|
|
727
|
+
background-color: var(--c-color-body);
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
[data-c-color-scheme='light'] .m_a4a0a883 {
|
|
731
|
+
--paper-border-color: var(--c-color-gray-3);
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
[data-c-color-scheme='dark'] .m_a4a0a883 {
|
|
735
|
+
--paper-border-color: var(--c-color-dark-4);
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.m_a4a0a883:where([data-with-border]) {
|
|
739
|
+
border: calc(0.0625rem * var(--c-scale)) solid var(--paper-border-color);
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.m_6ea3917f {
|
|
743
|
+
--card-padding: var(--c-spacing-md);
|
|
744
|
+
|
|
745
|
+
position: relative;
|
|
746
|
+
overflow: hidden;
|
|
747
|
+
display: flex;
|
|
748
|
+
padding: var(--card-padding);
|
|
749
|
+
color: var(--c-color-text);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.m_6ea3917f:where([data-orientation='horizontal']) {
|
|
753
|
+
flex-direction: row;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.m_6ea3917f:where([data-orientation='vertical']) {
|
|
757
|
+
flex-direction: column;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
:where([data-c-color-scheme='light']) .m_6ea3917f {
|
|
761
|
+
background-color: var(--c-color-white);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
:where([data-c-color-scheme='dark']) .m_6ea3917f {
|
|
765
|
+
background-color: var(--c-color-dark-6);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.m_4fcecd28 {
|
|
769
|
+
display: block;
|
|
770
|
+
margin-inline: calc(var(--card-padding) * -1);
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
:where([data-c-color-scheme='light']) .m_4fcecd28 {
|
|
774
|
+
--border-color: var(--c-color-gray-3);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
:where([data-c-color-scheme='dark']) .m_4fcecd28 {
|
|
778
|
+
--border-color: var(--c-color-dark-4);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.m_4fcecd28:where([data-orientation='vertical']):first-child {
|
|
782
|
+
margin-top: calc(var(--card-padding) * -1);
|
|
783
|
+
border-top: none !important;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.m_4fcecd28:where([data-orientation='vertical']):last-child {
|
|
787
|
+
margin-bottom: calc(var(--card-padding) * -1);
|
|
788
|
+
border-bottom: none !important;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-inherit-padding] {
|
|
792
|
+
padding-inline: var(--card-padding);
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-with-border] {
|
|
796
|
+
border-top: 1px solid var(--border-color);
|
|
797
|
+
border-bottom: 1px solid var(--border-color);
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.m_4fcecd28:where([data-orientation='vertical']) + .m_4fcecd28:where([data-orientation='vertical']) {
|
|
801
|
+
border-top: none !important;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.m_4fcecd28:where([data-orientation='horizontal']) {
|
|
805
|
+
margin-block: calc(var(--card-padding) * -1);
|
|
806
|
+
margin-inline: 0;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.m_4fcecd28:where([data-orientation='horizontal']):first-child {
|
|
810
|
+
margin-inline-start: calc(var(--card-padding) * -1);
|
|
811
|
+
border-inline-start: none !important;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.m_4fcecd28:where([data-orientation='horizontal']):last-child {
|
|
815
|
+
margin-inline-end: calc(var(--card-padding) * -1);
|
|
816
|
+
border-inline-end: none !important;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-inherit-padding] {
|
|
820
|
+
padding-block: var(--card-padding);
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-with-border] {
|
|
824
|
+
border-inline-start: 1px solid var(--border-color);
|
|
825
|
+
border-inline-end: 1px solid var(--border-color);
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.m_4fcecd28:where([data-orientation='horizontal']) + .m_4fcecd28:where([data-orientation='horizontal']) {
|
|
829
|
+
border-inline-start: none !important;
|
|
830
|
+
}
|
|
831
|
+
|
|
717
832
|
.m_537a2afc {
|
|
718
833
|
background-color: transparent;
|
|
719
834
|
cursor: pointer;
|
|
@@ -2057,31 +2172,6 @@ fieldset:disabled .c-active:active {
|
|
|
2057
2172
|
animation: m_1309882b 1.2s linear infinite;
|
|
2058
2173
|
}
|
|
2059
2174
|
|
|
2060
|
-
.m_a4a0a883 {
|
|
2061
|
-
--paper-radius: var(--c-radius-default);
|
|
2062
|
-
|
|
2063
|
-
outline: 0;
|
|
2064
|
-
-webkit-tap-heighlight-color: transparent;
|
|
2065
|
-
display: block;
|
|
2066
|
-
touch-action: manipulation;
|
|
2067
|
-
text-decoration: none;
|
|
2068
|
-
border-radius: var(--paper-radius);
|
|
2069
|
-
box-shadow: var(--paper-shadow);
|
|
2070
|
-
background-color: var(--c-color-body);
|
|
2071
|
-
}
|
|
2072
|
-
|
|
2073
|
-
[data-c-color-scheme='light'] .m_a4a0a883 {
|
|
2074
|
-
--paper-border-color: var(--c-color-gray-3);
|
|
2075
|
-
}
|
|
2076
|
-
|
|
2077
|
-
[data-c-color-scheme='dark'] .m_a4a0a883 {
|
|
2078
|
-
--paper-border-color: var(--c-color-dark-4);
|
|
2079
|
-
}
|
|
2080
|
-
|
|
2081
|
-
.m_a4a0a883:where([data-with-border]) {
|
|
2082
|
-
border: calc(0.0625rem * var(--c-scale)) solid var(--paper-border-color);
|
|
2083
|
-
}
|
|
2084
|
-
|
|
2085
2175
|
.m_6f2f9f44 {
|
|
2086
2176
|
--scp-filled-segment-color: var(--c-primary-color-filled);
|
|
2087
2177
|
--scp-transition-duration: 0ms;
|
package/styles.layer.css
CHANGED
|
@@ -714,6 +714,121 @@ fieldset:disabled .c-active:active {
|
|
|
714
714
|
display: -webkit-box;
|
|
715
715
|
}
|
|
716
716
|
|
|
717
|
+
.m_a4a0a883 {
|
|
718
|
+
--paper-radius: var(--c-radius-default);
|
|
719
|
+
|
|
720
|
+
outline: 0;
|
|
721
|
+
-webkit-tap-heighlight-color: transparent;
|
|
722
|
+
display: block;
|
|
723
|
+
touch-action: manipulation;
|
|
724
|
+
text-decoration: none;
|
|
725
|
+
border-radius: var(--paper-radius);
|
|
726
|
+
box-shadow: var(--paper-shadow);
|
|
727
|
+
background-color: var(--c-color-body);
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
[data-c-color-scheme='light'] .m_a4a0a883 {
|
|
731
|
+
--paper-border-color: var(--c-color-gray-3);
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
[data-c-color-scheme='dark'] .m_a4a0a883 {
|
|
735
|
+
--paper-border-color: var(--c-color-dark-4);
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
.m_a4a0a883:where([data-with-border]) {
|
|
739
|
+
border: calc(0.0625rem * var(--c-scale)) solid var(--paper-border-color);
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
.m_6ea3917f {
|
|
743
|
+
--card-padding: var(--c-spacing-md);
|
|
744
|
+
|
|
745
|
+
position: relative;
|
|
746
|
+
overflow: hidden;
|
|
747
|
+
display: flex;
|
|
748
|
+
padding: var(--card-padding);
|
|
749
|
+
color: var(--c-color-text);
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
.m_6ea3917f:where([data-orientation='horizontal']) {
|
|
753
|
+
flex-direction: row;
|
|
754
|
+
}
|
|
755
|
+
|
|
756
|
+
.m_6ea3917f:where([data-orientation='vertical']) {
|
|
757
|
+
flex-direction: column;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
:where([data-c-color-scheme='light']) .m_6ea3917f {
|
|
761
|
+
background-color: var(--c-color-white);
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
:where([data-c-color-scheme='dark']) .m_6ea3917f {
|
|
765
|
+
background-color: var(--c-color-dark-6);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
.m_4fcecd28 {
|
|
769
|
+
display: block;
|
|
770
|
+
margin-inline: calc(var(--card-padding) * -1);
|
|
771
|
+
}
|
|
772
|
+
|
|
773
|
+
:where([data-c-color-scheme='light']) .m_4fcecd28 {
|
|
774
|
+
--border-color: var(--c-color-gray-3);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
:where([data-c-color-scheme='dark']) .m_4fcecd28 {
|
|
778
|
+
--border-color: var(--c-color-dark-4);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
.m_4fcecd28:where([data-orientation='vertical']):first-child {
|
|
782
|
+
margin-top: calc(var(--card-padding) * -1);
|
|
783
|
+
border-top: none !important;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
.m_4fcecd28:where([data-orientation='vertical']):last-child {
|
|
787
|
+
margin-bottom: calc(var(--card-padding) * -1);
|
|
788
|
+
border-bottom: none !important;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-inherit-padding] {
|
|
792
|
+
padding-inline: var(--card-padding);
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-with-border] {
|
|
796
|
+
border-top: 1px solid var(--border-color);
|
|
797
|
+
border-bottom: 1px solid var(--border-color);
|
|
798
|
+
}
|
|
799
|
+
|
|
800
|
+
.m_4fcecd28:where([data-orientation='vertical']) + .m_4fcecd28:where([data-orientation='vertical']) {
|
|
801
|
+
border-top: none !important;
|
|
802
|
+
}
|
|
803
|
+
|
|
804
|
+
.m_4fcecd28:where([data-orientation='horizontal']) {
|
|
805
|
+
margin-block: calc(var(--card-padding) * -1);
|
|
806
|
+
margin-inline: 0;
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
.m_4fcecd28:where([data-orientation='horizontal']):first-child {
|
|
810
|
+
margin-inline-start: calc(var(--card-padding) * -1);
|
|
811
|
+
border-inline-start: none !important;
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
.m_4fcecd28:where([data-orientation='horizontal']):last-child {
|
|
815
|
+
margin-inline-end: calc(var(--card-padding) * -1);
|
|
816
|
+
border-inline-end: none !important;
|
|
817
|
+
}
|
|
818
|
+
|
|
819
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-inherit-padding] {
|
|
820
|
+
padding-block: var(--card-padding);
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-with-border] {
|
|
824
|
+
border-inline-start: 1px solid var(--border-color);
|
|
825
|
+
border-inline-end: 1px solid var(--border-color);
|
|
826
|
+
}
|
|
827
|
+
|
|
828
|
+
.m_4fcecd28:where([data-orientation='horizontal']) + .m_4fcecd28:where([data-orientation='horizontal']) {
|
|
829
|
+
border-inline-start: none !important;
|
|
830
|
+
}
|
|
831
|
+
|
|
717
832
|
.m_537a2afc {
|
|
718
833
|
background-color: transparent;
|
|
719
834
|
cursor: pointer;
|
|
@@ -2057,31 +2172,6 @@ fieldset:disabled .c-active:active {
|
|
|
2057
2172
|
animation: m_1309882b 1.2s linear infinite;
|
|
2058
2173
|
}
|
|
2059
2174
|
|
|
2060
|
-
.m_a4a0a883 {
|
|
2061
|
-
--paper-radius: var(--c-radius-default);
|
|
2062
|
-
|
|
2063
|
-
outline: 0;
|
|
2064
|
-
-webkit-tap-heighlight-color: transparent;
|
|
2065
|
-
display: block;
|
|
2066
|
-
touch-action: manipulation;
|
|
2067
|
-
text-decoration: none;
|
|
2068
|
-
border-radius: var(--paper-radius);
|
|
2069
|
-
box-shadow: var(--paper-shadow);
|
|
2070
|
-
background-color: var(--c-color-body);
|
|
2071
|
-
}
|
|
2072
|
-
|
|
2073
|
-
[data-c-color-scheme='light'] .m_a4a0a883 {
|
|
2074
|
-
--paper-border-color: var(--c-color-gray-3);
|
|
2075
|
-
}
|
|
2076
|
-
|
|
2077
|
-
[data-c-color-scheme='dark'] .m_a4a0a883 {
|
|
2078
|
-
--paper-border-color: var(--c-color-dark-4);
|
|
2079
|
-
}
|
|
2080
|
-
|
|
2081
|
-
.m_a4a0a883:where([data-with-border]) {
|
|
2082
|
-
border: calc(0.0625rem * var(--c-scale)) solid var(--paper-border-color);
|
|
2083
|
-
}
|
|
2084
|
-
|
|
2085
2175
|
.m_6f2f9f44 {
|
|
2086
2176
|
--scp-filled-segment-color: var(--c-primary-color-filled);
|
|
2087
2177
|
--scp-transition-duration: 0ms;
|