@cck-ui/core 0.33.0 → 0.34.0
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 +90 -0
- package/styles.layer.css +90 -0
|
@@ -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
|
@@ -1587,6 +1587,96 @@ fieldset:disabled .c-active:active {
|
|
|
1587
1587
|
transform: translateY(calc(var(--burger-size) / -3)) rotate(-45deg);
|
|
1588
1588
|
}
|
|
1589
1589
|
|
|
1590
|
+
.m_6ea3917f {
|
|
1591
|
+
--card-padding: var(--c-spacing-md);
|
|
1592
|
+
|
|
1593
|
+
position: relative;
|
|
1594
|
+
overflow: hidden;
|
|
1595
|
+
display: flex;
|
|
1596
|
+
padding: var(--card-padding);
|
|
1597
|
+
color: var(--c-color-text);
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.m_6ea3917f:where([data-orientation='horizontal']) {
|
|
1601
|
+
flex-direction: row;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
.m_6ea3917f:where([data-orientation='vertical']) {
|
|
1605
|
+
flex-direction: column;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
:where([data-c-color-scheme='light']) .m_6ea3917f {
|
|
1609
|
+
background-color: var(--c-color-white);
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
:where([data-c-color-scheme='dark']) .m_6ea3917f {
|
|
1613
|
+
background-color: var(--c-color-dark-6);
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.m_4fcecd28 {
|
|
1617
|
+
display: block;
|
|
1618
|
+
margin-inline: calc(var(--card-padding) * -1);
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
:where([data-c-color-scheme='light']) .m_4fcecd28 {
|
|
1622
|
+
--border-color: var(--c-color-gray-3);
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
:where([data-c-color-scheme='dark']) .m_4fcecd28 {
|
|
1626
|
+
--border-color: var(--c-color-dark-4);
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.m_4fcecd28:where([data-orientation='vertical']):first-child {
|
|
1630
|
+
margin-top: calc(var(--card-padding) * -1);
|
|
1631
|
+
border-top: none !important;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
.m_4fcecd28:where([data-orientation='vertical']):last-child {
|
|
1635
|
+
margin-bottom: calc(var(--card-padding) * -1);
|
|
1636
|
+
border-bottom: none !important;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-inherit-padding] {
|
|
1640
|
+
padding-inline: var(--card-padding);
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-with-border] {
|
|
1644
|
+
border-top: 1px solid var(--border-color);
|
|
1645
|
+
border-bottom: 1px solid var(--border-color);
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
.m_4fcecd28:where([data-orientation='vertical']) + .m_4fcecd28:where([data-orientation='vertical']) {
|
|
1649
|
+
border-top: none !important;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.m_4fcecd28:where([data-orientation='horizontal']) {
|
|
1653
|
+
margin-block: calc(var(--card-padding) * -1);
|
|
1654
|
+
margin-inline: 0;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.m_4fcecd28:where([data-orientation='horizontal']):first-child {
|
|
1658
|
+
margin-inline-start: calc(var(--card-padding) * -1);
|
|
1659
|
+
border-inline-start: none !important;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
.m_4fcecd28:where([data-orientation='horizontal']):last-child {
|
|
1663
|
+
margin-inline-end: calc(var(--card-padding) * -1);
|
|
1664
|
+
border-inline-end: none !important;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-inherit-padding] {
|
|
1668
|
+
padding-block: var(--card-padding);
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-with-border] {
|
|
1672
|
+
border-inline-start: 1px solid var(--border-color);
|
|
1673
|
+
border-inline-end: 1px solid var(--border-color);
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.m_4fcecd28:where([data-orientation='horizontal']) + .m_4fcecd28:where([data-orientation='horizontal']) {
|
|
1677
|
+
border-inline-start: none !important;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1590
1680
|
.m_e0e8435a {
|
|
1591
1681
|
display: flex;
|
|
1592
1682
|
align-items: center;
|
package/styles.layer.css
CHANGED
|
@@ -1587,6 +1587,96 @@ fieldset:disabled .c-active:active {
|
|
|
1587
1587
|
transform: translateY(calc(var(--burger-size) / -3)) rotate(-45deg);
|
|
1588
1588
|
}
|
|
1589
1589
|
|
|
1590
|
+
.m_6ea3917f {
|
|
1591
|
+
--card-padding: var(--c-spacing-md);
|
|
1592
|
+
|
|
1593
|
+
position: relative;
|
|
1594
|
+
overflow: hidden;
|
|
1595
|
+
display: flex;
|
|
1596
|
+
padding: var(--card-padding);
|
|
1597
|
+
color: var(--c-color-text);
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
.m_6ea3917f:where([data-orientation='horizontal']) {
|
|
1601
|
+
flex-direction: row;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
.m_6ea3917f:where([data-orientation='vertical']) {
|
|
1605
|
+
flex-direction: column;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
:where([data-c-color-scheme='light']) .m_6ea3917f {
|
|
1609
|
+
background-color: var(--c-color-white);
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
:where([data-c-color-scheme='dark']) .m_6ea3917f {
|
|
1613
|
+
background-color: var(--c-color-dark-6);
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
.m_4fcecd28 {
|
|
1617
|
+
display: block;
|
|
1618
|
+
margin-inline: calc(var(--card-padding) * -1);
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
:where([data-c-color-scheme='light']) .m_4fcecd28 {
|
|
1622
|
+
--border-color: var(--c-color-gray-3);
|
|
1623
|
+
}
|
|
1624
|
+
|
|
1625
|
+
:where([data-c-color-scheme='dark']) .m_4fcecd28 {
|
|
1626
|
+
--border-color: var(--c-color-dark-4);
|
|
1627
|
+
}
|
|
1628
|
+
|
|
1629
|
+
.m_4fcecd28:where([data-orientation='vertical']):first-child {
|
|
1630
|
+
margin-top: calc(var(--card-padding) * -1);
|
|
1631
|
+
border-top: none !important;
|
|
1632
|
+
}
|
|
1633
|
+
|
|
1634
|
+
.m_4fcecd28:where([data-orientation='vertical']):last-child {
|
|
1635
|
+
margin-bottom: calc(var(--card-padding) * -1);
|
|
1636
|
+
border-bottom: none !important;
|
|
1637
|
+
}
|
|
1638
|
+
|
|
1639
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-inherit-padding] {
|
|
1640
|
+
padding-inline: var(--card-padding);
|
|
1641
|
+
}
|
|
1642
|
+
|
|
1643
|
+
.m_4fcecd28:where([data-orientation='vertical'])[data-with-border] {
|
|
1644
|
+
border-top: 1px solid var(--border-color);
|
|
1645
|
+
border-bottom: 1px solid var(--border-color);
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1648
|
+
.m_4fcecd28:where([data-orientation='vertical']) + .m_4fcecd28:where([data-orientation='vertical']) {
|
|
1649
|
+
border-top: none !important;
|
|
1650
|
+
}
|
|
1651
|
+
|
|
1652
|
+
.m_4fcecd28:where([data-orientation='horizontal']) {
|
|
1653
|
+
margin-block: calc(var(--card-padding) * -1);
|
|
1654
|
+
margin-inline: 0;
|
|
1655
|
+
}
|
|
1656
|
+
|
|
1657
|
+
.m_4fcecd28:where([data-orientation='horizontal']):first-child {
|
|
1658
|
+
margin-inline-start: calc(var(--card-padding) * -1);
|
|
1659
|
+
border-inline-start: none !important;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
.m_4fcecd28:where([data-orientation='horizontal']):last-child {
|
|
1663
|
+
margin-inline-end: calc(var(--card-padding) * -1);
|
|
1664
|
+
border-inline-end: none !important;
|
|
1665
|
+
}
|
|
1666
|
+
|
|
1667
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-inherit-padding] {
|
|
1668
|
+
padding-block: var(--card-padding);
|
|
1669
|
+
}
|
|
1670
|
+
|
|
1671
|
+
.m_4fcecd28:where([data-orientation='horizontal'])[data-with-border] {
|
|
1672
|
+
border-inline-start: 1px solid var(--border-color);
|
|
1673
|
+
border-inline-end: 1px solid var(--border-color);
|
|
1674
|
+
}
|
|
1675
|
+
|
|
1676
|
+
.m_4fcecd28:where([data-orientation='horizontal']) + .m_4fcecd28:where([data-orientation='horizontal']) {
|
|
1677
|
+
border-inline-start: none !important;
|
|
1678
|
+
}
|
|
1679
|
+
|
|
1590
1680
|
.m_e0e8435a {
|
|
1591
1681
|
display: flex;
|
|
1592
1682
|
align-items: center;
|