Refactor #6636 - For TreeSelect

pull/6620/head^2
tugcekucukoglu 2024-10-24 17:29:50 +03:00
parent b4164efec7
commit e439a1795d
1 changed files with 5 additions and 5 deletions

View File

@ -56,8 +56,8 @@ const theme = ({ dt }) => `
background: transparent; background: transparent;
color: ${dt('treeselect.dropdown.color')}; color: ${dt('treeselect.dropdown.color')};
width: ${dt('treeselect.dropdown.width')}; width: ${dt('treeselect.dropdown.width')};
border-top-right-radius: ${dt('border.radius.md')}; border-start-end-radius: ${dt('border.radius.md')};
border-bottom-right-radius: ${dt('border.radius.md')}; border-end-end-radius: ${dt('border.radius.md')};
} }
.p-treeselect-label-container { .p-treeselect-label-container {
@ -68,7 +68,7 @@ const theme = ({ dt }) => `
.p-treeselect-label { .p-treeselect-label {
display: flex; display: flex;
align-items-center; align-items: center;
gap: calc(${dt('treeselect.padding.y')} / 2); gap: calc(${dt('treeselect.padding.y')} / 2);
white-space: nowrap; white-space: nowrap;
cursor: pointer; cursor: pointer;
@ -129,8 +129,8 @@ const theme = ({ dt }) => `
} }
.p-treeselect-label .p-chip { .p-treeselect-label .p-chip {
padding-top: calc(${dt('treeselect.padding.y')} / 2); padding-block-start: calc(${dt('treeselect.padding.y')} / 2);
padding-bottom: calc(${dt('treeselect.padding.y')} / 2); padding-block-end: calc(${dt('treeselect.padding.y')} / 2);
border-radius: ${dt('treeselect.chip.border.radius')}; border-radius: ${dt('treeselect.chip.border.radius')};
} }