@byline/ui 1.10.1 → 1.10.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/dist/components/accordion/accordion.js +5 -5
- package/dist/components/accordion/accordion_module.css +6 -6
- package/dist/components/avatar/avatar.js +4 -4
- package/dist/components/avatar/avatar_module.css +4 -4
- package/dist/components/badge/badge.js +1 -1
- package/dist/components/badge/badge_module.css +8 -8
- package/dist/components/button/button-group_module.css +2 -2
- package/dist/components/button/button.js +1 -1
- package/dist/components/button/button_module.css +46 -42
- package/dist/components/button/combo-button_module.css +6 -6
- package/dist/components/button/control-buttons.js +1 -1
- package/dist/components/button/control-buttons_module.css +1 -1
- package/dist/components/button/copy-button.js +2 -2
- package/dist/components/button/copy-button_module.css +7 -7
- package/dist/components/card/card.js +6 -6
- package/dist/components/card/card_module.css +9 -9
- package/dist/components/chips/chip.js +5 -5
- package/dist/components/chips/chip_module.css +41 -38
- package/dist/components/container/container.js +1 -1
- package/dist/components/container/container_module.css +4 -4
- package/dist/components/dropdown/dropdown.js +8 -8
- package/dist/components/dropdown/dropdown_module.css +8 -8
- package/dist/components/hamburger/hamburger.js +3 -3
- package/dist/components/hamburger/hamburger_module.css +16 -16
- package/dist/components/inputs/autocomplete.js +9 -9
- package/dist/components/inputs/autocomplete_module.css +36 -36
- package/dist/components/inputs/checkbox-group.js +1 -1
- package/dist/components/inputs/checkbox-group_module.css +1 -1
- package/dist/components/inputs/checkbox.js +5 -5
- package/dist/components/inputs/checkbox_module.css +31 -31
- package/dist/components/inputs/error-text_module.css +4 -4
- package/dist/components/inputs/help-text.js +1 -1
- package/dist/components/inputs/help-text_module.css +4 -4
- package/dist/components/inputs/input-adornment.js +1 -1
- package/dist/components/inputs/input-adornment_module.css +3 -3
- package/dist/components/inputs/input.js +5 -5
- package/dist/components/inputs/input_module.css +38 -38
- package/dist/components/inputs/label_module.css +2 -2
- package/dist/components/inputs/radio-group.js +1 -1
- package/dist/components/inputs/radio-group_module.css +18 -18
- package/dist/components/inputs/select.js +3 -3
- package/dist/components/inputs/select_module.css +8 -8
- package/dist/components/inputs/text-area.js +1 -1
- package/dist/components/inputs/text-area_module.css +3 -3
- package/dist/components/notifications/alert.js +10 -10
- package/dist/components/notifications/alert_module.css +16 -16
- package/dist/components/notifications/toast.js +7 -7
- package/dist/components/notifications/toast_module.css +25 -24
- package/dist/components/pager/pagination.js +2 -2
- package/dist/components/pager/pagination_module.css +6 -6
- package/dist/components/scroll-area/scroll-area.js +7 -7
- package/dist/components/scroll-area/scroll-area_module.css +9 -9
- package/dist/components/scroll-to-top/scroll-to-top.js +2 -2
- package/dist/components/scroll-to-top/scroll-to-top_module.css +9 -9
- package/dist/components/section/section.js +1 -1
- package/dist/components/section/section_module.css +1 -1
- package/dist/components/shimmer/shimmer_module.css +6 -6
- package/dist/components/table/table.js +8 -8
- package/dist/components/table/table_module.css +15 -15
- package/dist/components/tabs/tabs.js +4 -4
- package/dist/components/tabs/tabs_module.css +9 -9
- package/dist/components/tooltip/tooltip.js +2 -2
- package/dist/components/tooltip/tooltip_module.css +6 -6
- package/dist/fields/checkbox/checkbox-field.js +2 -1
- package/dist/fields/checkbox/checkbox-field.module.js +6 -0
- package/dist/fields/checkbox/checkbox-field_module.css +4 -0
- package/dist/forms/form-context.d.ts +1 -0
- package/dist/forms/form-context.js +3 -2
- package/dist/forms/form-renderer.js +19 -20
- package/dist/loaders/ellipses.js +2 -2
- package/dist/loaders/ellipses_module.css +2 -2
- package/dist/loaders/ring.js +2 -2
- package/dist/loaders/ring_module.css +2 -2
- package/dist/loaders/spinner.js +3 -3
- package/dist/loaders/spinner_module.css +3 -3
- package/dist/styles/styles.css +12 -0
- package/dist/widgets/datepicker/datepicker.js +11 -11
- package/dist/widgets/datepicker/datepicker_module.css +21 -21
- package/dist/widgets/drawer/drawer-container.js +1 -1
- package/dist/widgets/drawer/drawer-content.js +1 -1
- package/dist/widgets/drawer/drawer-header.js +1 -1
- package/dist/widgets/drawer/drawer-top-actions.js +1 -1
- package/dist/widgets/drawer/drawer.js +2 -2
- package/dist/widgets/drawer/drawer_module.css +11 -11
- package/dist/widgets/modal/modal-actions.js +1 -1
- package/dist/widgets/modal/modal-container.js +1 -1
- package/dist/widgets/modal/modal-content.js +1 -1
- package/dist/widgets/modal/modal-header.js +1 -1
- package/dist/widgets/modal/modal.js +2 -2
- package/dist/widgets/modal/modal_module.css +12 -12
- package/dist/widgets/search/search.js +6 -0
- package/dist/widgets/timeline/timeline_module.css +10 -10
- package/package.json +14 -14
- package/src/components/accordion/accordion.module.css +4 -4
- package/src/components/accordion/accordion.tsx +5 -5
- package/src/components/avatar/avatar.module.css +4 -4
- package/src/components/avatar/avatar.tsx +4 -4
- package/src/components/badge/badge.module.css +8 -8
- package/src/components/badge/badge.tsx +2 -2
- package/src/components/button/button-group.module.css +2 -2
- package/src/components/button/button.module.css +162 -86
- package/src/components/button/button.tsx +4 -4
- package/src/components/button/combo-button.module.css +7 -7
- package/src/components/button/control-buttons.module.css +5 -5
- package/src/components/button/control-buttons.tsx +1 -1
- package/src/components/button/copy-button.module.css +7 -7
- package/src/components/button/copy-button.tsx +5 -5
- package/src/components/card/card.module.css +9 -9
- package/src/components/card/card.tsx +6 -6
- package/src/components/chips/chip.module.css +126 -71
- package/src/components/chips/chip.tsx +8 -12
- package/src/components/container/container.module.css +4 -4
- package/src/components/container/container.tsx +1 -1
- package/src/components/dropdown/dropdown.module.css +7 -7
- package/src/components/dropdown/dropdown.tsx +8 -8
- package/src/components/hamburger/hamburger.module.css +16 -16
- package/src/components/hamburger/hamburger.tsx +3 -3
- package/src/components/inputs/autocomplete.module.css +42 -42
- package/src/components/inputs/autocomplete.tsx +12 -14
- package/src/components/inputs/checkbox-group.module.css +1 -1
- package/src/components/inputs/checkbox-group.tsx +1 -1
- package/src/components/inputs/checkbox.module.css +38 -34
- package/src/components/inputs/checkbox.tsx +8 -11
- package/src/components/inputs/error-text.module.css +4 -4
- package/src/components/inputs/help-text.module.css +4 -4
- package/src/components/inputs/help-text.tsx +1 -3
- package/src/components/inputs/input-adornment.module.css +3 -3
- package/src/components/inputs/input-adornment.tsx +2 -2
- package/src/components/inputs/input.module.css +45 -45
- package/src/components/inputs/input.tsx +8 -12
- package/src/components/inputs/label.module.css +2 -2
- package/src/components/inputs/radio-group.module.css +17 -17
- package/src/components/inputs/radio-group.tsx +1 -1
- package/src/components/inputs/select.module.css +8 -8
- package/src/components/inputs/select.tsx +3 -3
- package/src/components/inputs/text-area.module.css +4 -4
- package/src/components/inputs/text-area.tsx +3 -3
- package/src/components/notifications/alert.module.css +16 -16
- package/src/components/notifications/alert.tsx +11 -11
- package/src/components/notifications/toast.module.css +41 -28
- package/src/components/notifications/toast.tsx +7 -9
- package/src/components/pager/pagination.module.css +6 -6
- package/src/components/pager/pagination.tsx +2 -2
- package/src/components/scroll-area/scroll-area.module.css +5 -5
- package/src/components/scroll-area/scroll-area.tsx +7 -7
- package/src/components/scroll-to-top/scroll-to-top.module.css +9 -9
- package/src/components/scroll-to-top/scroll-to-top.tsx +2 -2
- package/src/components/section/section.module.css +1 -1
- package/src/components/section/section.tsx +1 -1
- package/src/components/shimmer/shimmer.module.css +18 -8
- package/src/components/table/table.module.css +15 -15
- package/src/components/table/table.tsx +8 -8
- package/src/components/tabs/tabs.module.css +4 -4
- package/src/components/tabs/tabs.tsx +4 -4
- package/src/components/tooltip/tooltip.module.css +2 -2
- package/src/components/tooltip/tooltip.tsx +2 -2
- package/src/fields/checkbox/checkbox-field.module.css +4 -0
- package/src/fields/checkbox/checkbox-field.tsx +2 -1
- package/src/forms/form-context.tsx +10 -2
- package/src/forms/form-renderer.tsx +44 -30
- package/src/icons/source/icon-infonomic.svg +2 -2
- package/src/loaders/ellipses.module.css +2 -2
- package/src/loaders/ellipses.tsx +2 -2
- package/src/loaders/ring.module.css +2 -2
- package/src/loaders/ring.tsx +2 -2
- package/src/loaders/spinner.module.css +3 -3
- package/src/loaders/spinner.tsx +3 -6
- package/src/styles/styles.css +12 -0
- package/src/widgets/datepicker/datepicker.module.css +15 -15
- package/src/widgets/datepicker/datepicker.tsx +11 -21
- package/src/widgets/drawer/drawer-container.tsx +1 -1
- package/src/widgets/drawer/drawer-content.tsx +1 -1
- package/src/widgets/drawer/drawer-header.tsx +1 -1
- package/src/widgets/drawer/drawer-top-actions.tsx +1 -1
- package/src/widgets/drawer/drawer.module.css +11 -11
- package/src/widgets/drawer/drawer.tsx +2 -2
- package/src/widgets/modal/modal-actions.tsx +1 -1
- package/src/widgets/modal/modal-container.tsx +1 -1
- package/src/widgets/modal/modal-content.tsx +1 -1
- package/src/widgets/modal/modal-header.tsx +1 -1
- package/src/widgets/modal/modal.module.css +12 -12
- package/src/widgets/modal/modal.tsx +2 -2
- package/src/widgets/search/search.tsx +2 -0
- package/src/widgets/timeline/timeline.module.css +10 -10
|
@@ -5,13 +5,13 @@ import classnames from "classnames";
|
|
|
5
5
|
import accordion_module from "./accordion.module.js";
|
|
6
6
|
const Root = ({ children, className, ref, ...props })=>/*#__PURE__*/ jsx(Accordion.Root, {
|
|
7
7
|
ref: ref,
|
|
8
|
-
className: classnames('
|
|
8
|
+
className: classnames('byline-accordion-root', className),
|
|
9
9
|
...props,
|
|
10
10
|
children: children
|
|
11
11
|
});
|
|
12
12
|
const Item = function({ ref, children, className, ...props }) {
|
|
13
13
|
return /*#__PURE__*/ jsx(Accordion.Item, {
|
|
14
|
-
className: classnames('
|
|
14
|
+
className: classnames('byline-accordion-item', className),
|
|
15
15
|
...props,
|
|
16
16
|
ref: ref,
|
|
17
17
|
children: children
|
|
@@ -19,7 +19,7 @@ const Item = function({ ref, children, className, ...props }) {
|
|
|
19
19
|
};
|
|
20
20
|
const Header = function({ ref, children, className, ...props }) {
|
|
21
21
|
return /*#__PURE__*/ jsx(Accordion.Header, {
|
|
22
|
-
className: classnames('
|
|
22
|
+
className: classnames('byline-accordion-header', className),
|
|
23
23
|
...props,
|
|
24
24
|
ref: ref,
|
|
25
25
|
children: children
|
|
@@ -28,14 +28,14 @@ const Header = function({ ref, children, className, ...props }) {
|
|
|
28
28
|
const Trigger = function({ ref, children, className, ...props }) {
|
|
29
29
|
return /*#__PURE__*/ jsx(Accordion.Trigger, {
|
|
30
30
|
ref: ref,
|
|
31
|
-
className: classnames('
|
|
31
|
+
className: classnames('byline-accordion-trigger', accordion_module.trigger, className),
|
|
32
32
|
...props,
|
|
33
33
|
children: children
|
|
34
34
|
});
|
|
35
35
|
};
|
|
36
36
|
const Panel = function({ ref, children, className, ...props }) {
|
|
37
37
|
return /*#__PURE__*/ jsx(Accordion.Panel, {
|
|
38
|
-
className: classnames('
|
|
38
|
+
className: classnames('byline-accordion-content', accordion_module.content, className),
|
|
39
39
|
...props,
|
|
40
40
|
ref: ref,
|
|
41
41
|
children: children
|
|
@@ -1,32 +1,32 @@
|
|
|
1
1
|
@layer base, byline-base, theme, byline-theme, byline-functional, byline-typography, components;
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
|
-
:is(.item-iZzmBc, .
|
|
4
|
+
:is(.item-iZzmBc, .byline-accordion-item) {
|
|
5
5
|
margin-top: 1px;
|
|
6
6
|
overflow: hidden;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
|
-
:is(.header-MBm53y, .
|
|
9
|
+
:is(.header-MBm53y, .byline-accordion-header) {
|
|
10
10
|
margin: 0;
|
|
11
11
|
display: flex;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
:is(.trigger-CJlwli, .
|
|
14
|
+
:is(.trigger-CJlwli, .byline-accordion-trigger) {
|
|
15
15
|
cursor: pointer;
|
|
16
16
|
align-items: center;
|
|
17
17
|
width: 100%;
|
|
18
18
|
display: flex;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
:is(.content-KoW8ID, .
|
|
21
|
+
:is(.content-KoW8ID, .byline-accordion-content) {
|
|
22
22
|
overflow: hidden;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
:is(.content-KoW8ID, .
|
|
25
|
+
:is(.content-KoW8ID, .byline-accordion-content)[data-open] {
|
|
26
26
|
animation: .3s cubic-bezier(.87, 0, .13, 1) accordionSlideDown-gllXUs;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
:is(.content-KoW8ID, .
|
|
29
|
+
:is(.content-KoW8ID, .byline-accordion-content)[data-ending-style] {
|
|
30
30
|
animation: .3s cubic-bezier(.87, 0, .13, 1) accordionSlideUp-mpDLB0;
|
|
31
31
|
}
|
|
32
32
|
|
|
@@ -5,18 +5,18 @@ import classnames from "classnames";
|
|
|
5
5
|
import avatar_module from "./avatar.module.js";
|
|
6
6
|
const url = 'https://picsum.photos/150';
|
|
7
7
|
const avatar_Avatar = ({ initials })=>/*#__PURE__*/ jsxs(Avatar.Root, {
|
|
8
|
-
className: classnames('
|
|
8
|
+
className: classnames('byline-avatar-root', avatar_module["avatar-root"]),
|
|
9
9
|
children: [
|
|
10
10
|
/*#__PURE__*/ jsx(Avatar.Image, {
|
|
11
11
|
src: url,
|
|
12
12
|
alt: "Avatar",
|
|
13
|
-
className: classnames('
|
|
13
|
+
className: classnames('byline-avatar-image', avatar_module["avatar-image"])
|
|
14
14
|
}),
|
|
15
15
|
/*#__PURE__*/ jsx(Avatar.Fallback, {
|
|
16
|
-
className: classnames('
|
|
16
|
+
className: classnames('byline-avatar-fallback', avatar_module["avatar-fallback"]),
|
|
17
17
|
delay: 600,
|
|
18
18
|
children: /*#__PURE__*/ jsx("span", {
|
|
19
|
-
className: classnames('
|
|
19
|
+
className: classnames('byline-avatar-text', avatar_module["avatar-text"]),
|
|
20
20
|
children: initials
|
|
21
21
|
})
|
|
22
22
|
})
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@layer base, byline-base, theme, byline-theme, byline-functional, byline-typography, components;
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
|
-
:is(.avatar-root-WYOuF_, .
|
|
4
|
+
:is(.avatar-root-WYOuF_, .byline-avatar-root) {
|
|
5
5
|
border-radius: 50%;
|
|
6
6
|
width: 100%;
|
|
7
7
|
height: 100%;
|
|
@@ -9,14 +9,14 @@
|
|
|
9
9
|
position: relative;
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
:is(.avatar-image-eGBbhF, .
|
|
12
|
+
:is(.avatar-image-eGBbhF, .byline-avatar-image) {
|
|
13
13
|
object-fit: cover;
|
|
14
14
|
border-radius: 50%;
|
|
15
15
|
width: 100%;
|
|
16
16
|
height: 100%;
|
|
17
17
|
}
|
|
18
18
|
|
|
19
|
-
:is(.avatar-fallback-LnFLNm, .
|
|
19
|
+
:is(.avatar-fallback-LnFLNm, .byline-avatar-fallback) {
|
|
20
20
|
background-color: var(--surface-panel-elevated);
|
|
21
21
|
border-radius: 50%;
|
|
22
22
|
justify-content: center;
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
display: flex;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
:is(.avatar-text-Xf0G6q, .
|
|
29
|
+
:is(.avatar-text-Xf0G6q, .byline-avatar-text) {
|
|
30
30
|
font-size: var(--font-size-sm);
|
|
31
31
|
font-weight: var(--font-weight-medium);
|
|
32
32
|
text-transform: uppercase;
|
|
@@ -8,7 +8,7 @@ const Badge = ({ className, intent = 'primary', children, render, ref, ...rest }
|
|
|
8
8
|
ref,
|
|
9
9
|
props: {
|
|
10
10
|
...rest,
|
|
11
|
-
className: classnames('
|
|
11
|
+
className: classnames('byline-badge', `byline-badge-${intent}`, badge_module.badge, badge_module[intent], className),
|
|
12
12
|
children
|
|
13
13
|
}
|
|
14
14
|
});
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@layer base, byline-base, theme, byline-theme, byline-functional, byline-typography, components;
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
|
-
:is(.badge-8xVidp, .
|
|
4
|
+
:is(.badge-8xVidp, .byline-badge) {
|
|
5
5
|
font-size: var(--font-size-sm);
|
|
6
6
|
text-align: center;
|
|
7
7
|
white-space: nowrap;
|
|
@@ -13,37 +13,37 @@
|
|
|
13
13
|
display: inline-block;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
:is(.primary-oZyR_M, .
|
|
16
|
+
:is(.primary-oZyR_M, .byline-badge-primary) {
|
|
17
17
|
color: var(--text-on-primary-strong);
|
|
18
18
|
background-color: var(--fill-primary-strong);
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
:is(.secondary-VsqJTm, .
|
|
21
|
+
:is(.secondary-VsqJTm, .byline-badge-secondary) {
|
|
22
22
|
color: var(--text-on-secondary-strong);
|
|
23
23
|
background-color: var(--fill-secondary-strong);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
:is(.noeffect-R8eJtO, .
|
|
26
|
+
:is(.noeffect-R8eJtO, .byline-badge-noeffect) {
|
|
27
27
|
color: var(--text-on-noeffect-strong);
|
|
28
28
|
background-color: var(--fill-noeffect-strong);
|
|
29
29
|
}
|
|
30
30
|
|
|
31
|
-
:is(.success-h2otET, .
|
|
31
|
+
:is(.success-h2otET, .byline-badge-success) {
|
|
32
32
|
color: var(--text-on-success-strong);
|
|
33
33
|
background-color: var(--fill-success-strong);
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
:is(.info-OG3F3u, .
|
|
36
|
+
:is(.info-OG3F3u, .byline-badge-info) {
|
|
37
37
|
color: var(--text-on-info-strong);
|
|
38
38
|
background-color: var(--fill-info-strong);
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
:is(.warning-zTXksZ, .
|
|
41
|
+
:is(.warning-zTXksZ, .byline-badge-warning) {
|
|
42
42
|
color: var(--text-on-warning-strong);
|
|
43
43
|
background-color: var(--fill-warning-strong);
|
|
44
44
|
}
|
|
45
45
|
|
|
46
|
-
:is(.danger-hKF7l_, .
|
|
46
|
+
:is(.danger-hKF7l_, .byline-badge-danger) {
|
|
47
47
|
color: var(--text-on-danger-strong);
|
|
48
48
|
background-color: var(--fill-danger-strong);
|
|
49
49
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@layer base, byline-base, theme, byline-theme, byline-functional, byline-typography, components;
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
|
-
:is(.button-group-uqvOi8, .
|
|
4
|
+
:is(.button-group-uqvOi8, .byline-button-group) {
|
|
5
5
|
place-items: center;
|
|
6
6
|
gap: var(--gap-2);
|
|
7
7
|
flex-direction: column;
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
@media screen and (min-width: 40rem) {
|
|
12
|
-
:is(.button-group-uqvOi8, .
|
|
12
|
+
:is(.button-group-uqvOi8, .byline-button-group) {
|
|
13
13
|
flex-direction: row;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
@@ -7,7 +7,7 @@ import button_module from "./button.module.js";
|
|
|
7
7
|
const Button = ({ variant = 'filled', size = 'md', type = 'button', intent = 'primary', fullWidth = false, ripple = true, className, children, render, ref, ...rest })=>{
|
|
8
8
|
const defaultProps = {
|
|
9
9
|
type,
|
|
10
|
-
className: classnames('
|
|
10
|
+
className: classnames('byline-button', `byline-button-${intent}`, `byline-button-${variant}`, `byline-button-${size}`, button_module.button, button_module[variant], button_module[size], button_module[intent], {
|
|
11
11
|
[button_module.fullWidth]: true === fullWidth
|
|
12
12
|
}, className),
|
|
13
13
|
children
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@layer base, byline-base, theme, byline-theme, byline-functional, byline-typography, components;
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
|
-
:is(.button-IjDhC0, .
|
|
4
|
+
:is(.button-IjDhC0, .byline-button) {
|
|
5
5
|
cursor: pointer;
|
|
6
6
|
text-align: center;
|
|
7
7
|
gap: var(--gap-2);
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
display: inline-flex;
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
:is(.button-IjDhC0:disabled, .button-IjDhC0[disabled], .
|
|
22
|
+
:is(.button-IjDhC0:disabled, .button-IjDhC0[disabled], .byline-button:disabled, .byline-button[disabled]) {
|
|
23
23
|
pointer-events: none;
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
:is(.button-IjDhC0:focus, .button-IjDhC0:active, .
|
|
26
|
+
:is(.button-IjDhC0:focus, .button-IjDhC0:active, .byline-button:focus, .byline-button:active) {
|
|
27
27
|
outline-color: var(--ring-color);
|
|
28
28
|
}
|
|
29
29
|
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
padding: 0;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.
|
|
36
|
+
.byline-button-square {
|
|
37
37
|
aspect-ratio: 1;
|
|
38
38
|
border-radius: var(--border-radius-sm);
|
|
39
39
|
padding: 0;
|
|
@@ -45,139 +45,143 @@
|
|
|
45
45
|
padding: 0;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
.
|
|
48
|
+
.byline-button-round {
|
|
49
49
|
aspect-ratio: 1;
|
|
50
50
|
border-radius: var(--border-radius-full);
|
|
51
51
|
padding: 0;
|
|
52
52
|
}
|
|
53
53
|
|
|
54
|
-
:is(.xs-jxTd5R, .
|
|
54
|
+
:is(.xs-jxTd5R, .byline-button-xs) {
|
|
55
55
|
min-height: 26px;
|
|
56
56
|
padding: .2rem .4rem;
|
|
57
57
|
font-size: .7rem;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
:is(.sm-uD_Ugt, .
|
|
60
|
+
:is(.sm-uD_Ugt, .byline-button-sm) {
|
|
61
61
|
min-height: 32px;
|
|
62
62
|
padding: .25rem .5rem;
|
|
63
63
|
font-size: .775rem;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
:is(.md-Qp9ad6, .
|
|
66
|
+
:is(.md-Qp9ad6, .byline-button-md) {
|
|
67
67
|
min-height: 38px;
|
|
68
68
|
padding: .625rem 1.25rem;
|
|
69
69
|
font-size: .95rem;
|
|
70
70
|
}
|
|
71
71
|
|
|
72
|
-
:is(.lg-FAYTen, .
|
|
72
|
+
:is(.lg-FAYTen, .byline-button-lg) {
|
|
73
73
|
min-height: 46px;
|
|
74
74
|
padding: .75rem 1.5rem;
|
|
75
75
|
font-size: 1.1rem;
|
|
76
76
|
}
|
|
77
77
|
|
|
78
|
-
:is(.xl-Gwvhl4, .
|
|
78
|
+
:is(.xl-Gwvhl4, .byline-button-xl) {
|
|
79
79
|
min-height: 54px;
|
|
80
80
|
padding: .75rem 1.5rem;
|
|
81
81
|
font-size: 1.2rem;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
:is(.filled-CwGsrO, .
|
|
84
|
+
:is(.filled-CwGsrO, .byline-button-filled) {
|
|
85
85
|
color: var(--button-variant-filled-foreground);
|
|
86
86
|
background-color: var(--button-variant-filled);
|
|
87
87
|
}
|
|
88
88
|
|
|
89
|
-
:is(.filled-CwGsrO:hover, .
|
|
89
|
+
:is(.filled-CwGsrO:hover, .byline-button-filled:hover) {
|
|
90
90
|
background-color: var(--button-variant-filled-hover);
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
-
:is(.filled-CwGsrO:focus, .filled-CwGsrO:active, .
|
|
93
|
+
:is(.filled-CwGsrO:focus, .filled-CwGsrO:active, .byline-button-filled:focus, .byline-button-filled:active) {
|
|
94
94
|
--ring-color: var(--button-ring-color);
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
:is(.filled-CwGsrO:disabled, .filled-CwGsrO[disabled], .
|
|
97
|
+
:is(.filled-CwGsrO:disabled, .filled-CwGsrO[disabled], .byline-button-filled:disabled, .byline-button-filled[disabled]) {
|
|
98
98
|
background-color: var(--button-variant-filled-disabled, oklch(from var(--button-variant-filled) calc(l * 1.1) calc(c * .85) h));
|
|
99
|
-
color: var(--button-variant-filled-foreground-disabled, oklch(from var(--button-variant-filled-foreground) calc(l * .9)
|
|
99
|
+
color: var(--button-variant-filled-foreground-disabled, oklch(from var(--button-variant-filled-foreground) calc(l * .9)
|
|
100
|
+
calc(c * .85) h));
|
|
100
101
|
}
|
|
101
102
|
|
|
102
|
-
:is(.filled-weak-QLU8bA, .
|
|
103
|
+
:is(.filled-weak-QLU8bA, .byline-button-filled-weak) {
|
|
103
104
|
color: var(--button-variant-filled-weak-foreground);
|
|
104
105
|
background-color: var(--button-variant-filled-weak);
|
|
105
106
|
}
|
|
106
107
|
|
|
107
|
-
:is(.filled-weak-QLU8bA:hover, .
|
|
108
|
+
:is(.filled-weak-QLU8bA:hover, .byline-button-filled-weak:hover) {
|
|
108
109
|
background-color: var(--button-variant-filled-weak-hover);
|
|
109
110
|
}
|
|
110
111
|
|
|
111
|
-
:is(.filled-weak-QLU8bA:focus, .filled-weak-QLU8bA:active, .
|
|
112
|
+
:is(.filled-weak-QLU8bA:focus, .filled-weak-QLU8bA:active, .byline-button-filled-weak:focus, .byline-button-filled-weak:active) {
|
|
112
113
|
--ring-color: var(--button-ring-color);
|
|
113
114
|
}
|
|
114
115
|
|
|
115
|
-
:is(.filled-weak-QLU8bA:disabled, .filled-weak-QLU8bA[disabled], .
|
|
116
|
+
:is(.filled-weak-QLU8bA:disabled, .filled-weak-QLU8bA[disabled], .byline-button-filled-weak:disabled, .byline-button-filled-weak[disabled]) {
|
|
116
117
|
background-color: var(--button-variant-filled-weak-disabled, oklch(from var(--button-variant-filled-weak) calc(l * 1.1) calc(c * .85) h));
|
|
117
|
-
color: var(--button-variant-filled-weak-foreground-disabled, oklch(from var(--button-variant-filled-weak-foreground) calc(l * .9)
|
|
118
|
+
color: var(--button-variant-filled-weak-foreground-disabled, oklch(from var(--button-variant-filled-weak-foreground) calc(l * .9)
|
|
119
|
+
calc(c * .85) h));
|
|
118
120
|
}
|
|
119
121
|
|
|
120
|
-
:is(.outlined-nZGbxu, .
|
|
122
|
+
:is(.outlined-nZGbxu, .byline-button-outlined) {
|
|
121
123
|
border: 1px solid var(--button-variant-outlined-border);
|
|
122
124
|
color: var(--button-variant-outlined-foreground);
|
|
123
125
|
background-color: var(--button-variant-outlined);
|
|
124
126
|
}
|
|
125
127
|
|
|
126
|
-
:is(.outlined-nZGbxu:disabled, .outlined-nZGbxu[disabled], .
|
|
128
|
+
:is(.outlined-nZGbxu:disabled, .outlined-nZGbxu[disabled], .byline-button-outlined:disabled, .byline-button-outlined[disabled]) {
|
|
127
129
|
border-color: var(--button-variant-outlined-border-disabled, oklch(from var(--button-variant-outlined-border) calc(l * 1.5) calc(c * .8) h));
|
|
128
|
-
color: var(--button-variant-outlined-foreground-disabled, oklch(from var(--button-variant-outlined-foreground) calc(l * 1.1)
|
|
130
|
+
color: var(--button-variant-outlined-foreground-disabled, oklch(from var(--button-variant-outlined-foreground) calc(l * 1.1)
|
|
131
|
+
calc(c * .7) h));
|
|
129
132
|
}
|
|
130
133
|
|
|
131
|
-
:is(.outlined-nZGbxu:hover, .
|
|
134
|
+
:is(.outlined-nZGbxu:hover, .byline-button-outlined:hover) {
|
|
132
135
|
background-color: var(--button-variant-outlined-hover);
|
|
133
136
|
}
|
|
134
137
|
|
|
135
|
-
:is(.outlined-nZGbxu:focus, .outlined-nZGbxu:active, .
|
|
138
|
+
:is(.outlined-nZGbxu:focus, .outlined-nZGbxu:active, .byline-button-outlined:focus, .byline-button-outlined:active) {
|
|
136
139
|
--ring-color: var(--button-ring-color);
|
|
137
140
|
}
|
|
138
141
|
|
|
139
|
-
:is(.gradient-ySC3O3, .
|
|
142
|
+
:is(.gradient-ySC3O3, .byline-button-gradient) {
|
|
140
143
|
color: var(--button-variant-gradient-foreground);
|
|
141
144
|
background: linear-gradient(45deg,
|
|
142
145
|
var(--button-variant-gradient-start),
|
|
143
146
|
var(--button-variant-gradient-end));
|
|
144
147
|
}
|
|
145
148
|
|
|
146
|
-
:is(.gradient-ySC3O3:disabled, .gradient-ySC3O3[disabled], .
|
|
149
|
+
:is(.gradient-ySC3O3:disabled, .gradient-ySC3O3[disabled], .byline-button-gradient:disabled, .byline-button-gradient[disabled]) {
|
|
147
150
|
background: unset;
|
|
148
151
|
background-color: var(--button-variant-gradient-disabled, oklch(from var(--button-variant-gradient-end) calc(l * 1.2) calc(c * .85) h));
|
|
149
|
-
color: var(--button-variant-gradient-foreground-disabled, oklch(from var(--button-variant-gradient-foreground) calc(l * .9)
|
|
152
|
+
color: var(--button-variant-gradient-foreground-disabled, oklch(from var(--button-variant-gradient-foreground) calc(l * .9)
|
|
153
|
+
calc(c * .85) h));
|
|
150
154
|
}
|
|
151
155
|
|
|
152
|
-
:is(.gradient-ySC3O3:hover, .
|
|
156
|
+
:is(.gradient-ySC3O3:hover, .byline-button-gradient:hover) {
|
|
153
157
|
color: var(--button-variant-gradient-foreground);
|
|
154
158
|
background: linear-gradient(45deg,
|
|
155
159
|
var(--button-variant-gradient-start),
|
|
156
160
|
var(--button-variant-gradient-end));
|
|
157
161
|
}
|
|
158
162
|
|
|
159
|
-
:is(.gradient-ySC3O3:focus, .gradient-ySC3O3:active, .
|
|
163
|
+
:is(.gradient-ySC3O3:focus, .gradient-ySC3O3:active, .byline-button-gradient:focus, .byline-button-gradient:active) {
|
|
160
164
|
--ring-color: var(--button-ring-color);
|
|
161
165
|
}
|
|
162
166
|
|
|
163
|
-
:is(.text-GaxlcE, .
|
|
167
|
+
:is(.text-GaxlcE, .byline-button-text) {
|
|
164
168
|
background-color: var(--button-variant-text);
|
|
165
169
|
color: var(--button-variant-text-foreground);
|
|
166
170
|
}
|
|
167
171
|
|
|
168
|
-
:is(.text-GaxlcE:disabled, .text-GaxlcE[disabled], .
|
|
172
|
+
:is(.text-GaxlcE:disabled, .text-GaxlcE[disabled], .byline-button-text:disabled, .byline-button-text[disabled]) {
|
|
169
173
|
color: oklch(from var(--button-variant-text-foreground) calc(l * 1.5) calc(c * .5) h);
|
|
170
174
|
}
|
|
171
175
|
|
|
172
|
-
:is(.text-GaxlcE:hover, .
|
|
176
|
+
:is(.text-GaxlcE:hover, .byline-button-text:hover) {
|
|
173
177
|
background-color: var(--button-variant-text-hover);
|
|
174
178
|
}
|
|
175
179
|
|
|
176
|
-
:is(.text-GaxlcE:focus, .text-GaxlcE:active, .
|
|
180
|
+
:is(.text-GaxlcE:focus, .text-GaxlcE:active, .byline-button-text:focus, .byline-button-text:active) {
|
|
177
181
|
--ring-color: var(--button-ring-color);
|
|
178
182
|
}
|
|
179
183
|
|
|
180
|
-
:is(.primary-tUmczz, .
|
|
184
|
+
:is(.primary-tUmczz, .byline-button-primary) {
|
|
181
185
|
--button-ring-color: var(--ring-primary);
|
|
182
186
|
--button-variant-filled: var(--fill-primary-strong);
|
|
183
187
|
--button-variant-filled-hover: var(--fill-primary-strong-hover);
|
|
@@ -205,7 +209,7 @@
|
|
|
205
209
|
--button-variant-gradient-foreground-disabled: var(--text-on-primary-strong-disabled);
|
|
206
210
|
}
|
|
207
211
|
|
|
208
|
-
:is(.secondary-UqT2AY, .
|
|
212
|
+
:is(.secondary-UqT2AY, .byline-button-secondary) {
|
|
209
213
|
--button-ring-color: var(--ring-secondary);
|
|
210
214
|
--button-variant-filled: var(--fill-secondary-strong);
|
|
211
215
|
--button-variant-filled-hover: var(--fill-secondary-strong-hover);
|
|
@@ -233,7 +237,7 @@
|
|
|
233
237
|
--button-variant-gradient-foreground-disabled: var(--text-on-secondary-strong-disabled);
|
|
234
238
|
}
|
|
235
239
|
|
|
236
|
-
:is(.noeffect-fpxSgg, .
|
|
240
|
+
:is(.noeffect-fpxSgg, .byline-button-noeffect) {
|
|
237
241
|
--button-ring-color: var(--ring-noeffect);
|
|
238
242
|
--button-variant-filled: var(--fill-noeffect-strong);
|
|
239
243
|
--button-variant-filled-hover: var(--fill-noeffect-strong-hover);
|
|
@@ -262,7 +266,7 @@
|
|
|
262
266
|
--button-variant-gradient-foreground-disabled: var(--text-on-noeffect-strong-disabled);
|
|
263
267
|
}
|
|
264
268
|
|
|
265
|
-
:is(.success-fTNDEn, .
|
|
269
|
+
:is(.success-fTNDEn, .byline-button-success) {
|
|
266
270
|
--button-ring-color: var(--ring-success);
|
|
267
271
|
--button-variant-filled: var(--fill-success-strong);
|
|
268
272
|
--button-variant-filled-hover: var(--fill-success-strong-hover);
|
|
@@ -290,7 +294,7 @@
|
|
|
290
294
|
--button-variant-gradient-foreground-disabled: var(--text-on-success-strong-disabled);
|
|
291
295
|
}
|
|
292
296
|
|
|
293
|
-
:is(.info-qrdXQD, .
|
|
297
|
+
:is(.info-qrdXQD, .byline-button-info) {
|
|
294
298
|
--button-ring-color: var(--ring-info);
|
|
295
299
|
--button-variant-filled: var(--fill-info-strong);
|
|
296
300
|
--button-variant-filled-hover: var(--fill-info-strong-hover);
|
|
@@ -318,7 +322,7 @@
|
|
|
318
322
|
--button-variant-gradient-foreground-disabled: var(--text-on-info-strong-disabled);
|
|
319
323
|
}
|
|
320
324
|
|
|
321
|
-
:is(.warning-a00T3A, .
|
|
325
|
+
:is(.warning-a00T3A, .byline-button-warning) {
|
|
322
326
|
--button-ring-color: var(--ring-warning);
|
|
323
327
|
--button-variant-filled: var(--fill-warning-strong);
|
|
324
328
|
--button-variant-filled-hover: var(--fill-warning-strong-hover);
|
|
@@ -346,7 +350,7 @@
|
|
|
346
350
|
--button-variant-gradient-foreground-disabled: var(--text-on-warning-strong-disabled);
|
|
347
351
|
}
|
|
348
352
|
|
|
349
|
-
:is(.danger-rwIV_i, .
|
|
353
|
+
:is(.danger-rwIV_i, .byline-button-danger) {
|
|
350
354
|
--button-ring-color: var(--ring-danger);
|
|
351
355
|
--button-variant-filled: var(--fill-danger-strong);
|
|
352
356
|
--button-variant-filled-hover: var(--fill-danger-strong-hover);
|
|
@@ -374,7 +378,7 @@
|
|
|
374
378
|
--button-variant-gradient-foreground-disabled: var(--text-on-danger-strong-disabled);
|
|
375
379
|
}
|
|
376
380
|
|
|
377
|
-
:is(.fullWidth-wXvP0v, .
|
|
381
|
+
:is(.fullWidth-wXvP0v, .byline-button-full-width) {
|
|
378
382
|
width: 100%;
|
|
379
383
|
display: flex;
|
|
380
384
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@layer base, byline-base, theme, byline-theme, byline-functional, byline-typography, components;
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
|
-
:is(.combo-button-wrapper-nRtH6j, .
|
|
4
|
+
:is(.combo-button-wrapper-nRtH6j, .byline-combo-button-wrapper) {
|
|
5
5
|
border-radius: var(--border-radius-sm);
|
|
6
6
|
outline-offset: 2px;
|
|
7
7
|
transition: outline-color var(--transition-normal);
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
outline-color: var(--ring-color);
|
|
20
20
|
}
|
|
21
21
|
|
|
22
|
-
.
|
|
22
|
+
.byline-combo-button-wrapper:focus-within {
|
|
23
23
|
outline-color: var(--ring-color);
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
.
|
|
26
|
+
.byline-combo-button-wrapper:has([data-popup-open]) {
|
|
27
27
|
outline-color: var(--ring-color);
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
-
:is(.combo-button-button-Cb8qgF, .
|
|
30
|
+
:is(.combo-button-button-Cb8qgF, .byline-combo-button-button) {
|
|
31
31
|
border-top-right-radius: 0;
|
|
32
32
|
border-bottom-right-radius: 0;
|
|
33
33
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
outline-color: #0000;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
:is(.combo-button-trigger-mVb2fy, .
|
|
39
|
+
:is(.combo-button-trigger-mVb2fy, .byline-combo-button-trigger) {
|
|
40
40
|
border-top-left-radius: 0;
|
|
41
41
|
border-bottom-left-radius: 0;
|
|
42
42
|
}
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
outline-color: #0000;
|
|
46
46
|
}
|
|
47
47
|
|
|
48
|
-
:is(.combo-button-options-T9vVC9, .
|
|
48
|
+
:is(.combo-button-options-T9vVC9, .byline-combo-button-options) {
|
|
49
49
|
min-width: 120px;
|
|
50
50
|
}
|
|
51
51
|
}
|
|
@@ -12,7 +12,7 @@ const DirectionalButton = ({ size = 'md', direction, className, onClick, ref, ..
|
|
|
12
12
|
onClick: handleClick,
|
|
13
13
|
type: "button",
|
|
14
14
|
"aria-label": direction,
|
|
15
|
-
className: classnames('
|
|
15
|
+
className: classnames('byline-control-button', direction, size, control_buttons_module["directional-button"], control_buttons_module[direction], control_buttons_module[size], className),
|
|
16
16
|
children: /*#__PURE__*/ jsx("span", {
|
|
17
17
|
children: /*#__PURE__*/ jsx("svg", {
|
|
18
18
|
className: "icon",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@layer base, byline-base, theme, byline-theme, byline-functional, byline-typography, components;
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
|
-
:is(.stop-button-krMTsl, .play-button-GfHYHO, .directional-button-kGS8rA, .
|
|
4
|
+
:is(.stop-button-krMTsl, .play-button-GfHYHO, .directional-button-kGS8rA, .byline-stop-button, .byline-play-button, .byline-directional-button) {
|
|
5
5
|
color: #fff;
|
|
6
6
|
background-color: var(--fill-primary-strong);
|
|
7
7
|
cursor: pointer;
|
|
@@ -31,7 +31,7 @@ function CopyButton({ text, hoverText = 'Copy', copiedText = 'Copied!', variant,
|
|
|
31
31
|
]);
|
|
32
32
|
const tooltipText = copied ? copiedText : hoverText;
|
|
33
33
|
return /*#__PURE__*/ jsx("div", {
|
|
34
|
-
className: classnames('
|
|
34
|
+
className: classnames('byline-copy-button-container', copy_button_module["copy-button-container"], containerClassName),
|
|
35
35
|
children: /*#__PURE__*/ jsx(Tooltip, {
|
|
36
36
|
side: "top",
|
|
37
37
|
sideOffset: 2,
|
|
@@ -47,7 +47,7 @@ function CopyButton({ text, hoverText = 'Copy', copiedText = 'Copied!', variant,
|
|
|
47
47
|
intent: intent,
|
|
48
48
|
fullWidth: fullWidth,
|
|
49
49
|
ripple: ripple,
|
|
50
|
-
className: classnames('
|
|
50
|
+
className: classnames('byline-copy-button', `byline-copy-button-${variant}`, `byline-copy-button-${size}`, `byline-copy-button-${intent}`, copy_button_module[size], className),
|
|
51
51
|
onClick: handleCopied,
|
|
52
52
|
...rest,
|
|
53
53
|
children: /*#__PURE__*/ jsx("svg", {
|
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
@layer base, byline-base, theme, byline-theme, byline-functional, byline-typography, components;
|
|
2
2
|
|
|
3
3
|
@layer byline-components {
|
|
4
|
-
:is(.copy-button-container-vCNz8o, .
|
|
4
|
+
:is(.copy-button-container-vCNz8o, .byline-copy-button-container) {
|
|
5
5
|
display: inline-block;
|
|
6
6
|
}
|
|
7
7
|
|
|
8
|
-
:is(.copy-button-oa4bdj svg, .
|
|
8
|
+
:is(.copy-button-oa4bdj svg, .byline-copy-button svg) {
|
|
9
9
|
width: 90%;
|
|
10
10
|
height: 90%;
|
|
11
11
|
display: block;
|
|
12
12
|
}
|
|
13
13
|
|
|
14
|
-
:is(.xs-lZmf78, .
|
|
14
|
+
:is(.xs-lZmf78, .byline-copy-button-xs) {
|
|
15
15
|
width: 26px;
|
|
16
16
|
height: 26px;
|
|
17
17
|
min-height: 26px;
|
|
18
18
|
padding: .25rem;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
|
-
:is(.sm-KNN1e5, .
|
|
21
|
+
:is(.sm-KNN1e5, .byline-copy-button-sm) {
|
|
22
22
|
width: 32px;
|
|
23
23
|
height: 32px;
|
|
24
24
|
min-height: 32px;
|
|
25
25
|
padding: .35rem;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
:is(.md-OoH0l4, .
|
|
28
|
+
:is(.md-OoH0l4, .byline-copy-button-md) {
|
|
29
29
|
width: 38px;
|
|
30
30
|
height: 38px;
|
|
31
31
|
min-height: 38px;
|
|
32
32
|
padding: .45rem;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
:is(.lg-uu5ujz, .
|
|
35
|
+
:is(.lg-uu5ujz, .byline-copy-button-lg) {
|
|
36
36
|
width: 46px;
|
|
37
37
|
height: 46px;
|
|
38
38
|
min-height: 46px;
|
|
39
39
|
padding: .55rem;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
:is(.xl-pFYyrS, .
|
|
42
|
+
:is(.xl-pFYyrS, .byline-copy-button-xl) {
|
|
43
43
|
width: 54px;
|
|
44
44
|
height: 54px;
|
|
45
45
|
min-height: 54px;
|