Refactor #6680 - For SplitButton
parent
4645de417c
commit
55b67efb77
|
@ -8,9 +8,9 @@ const theme = ({ dt }) => `
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-splitbutton-button {
|
.p-splitbutton-button {
|
||||||
border-top-right-radius: 0;
|
border-start-end-radius: 0;
|
||||||
border-bottom-right-radius: 0;
|
border-end-end-radius: 0;
|
||||||
border-right: 0 none;
|
border-inline-end: 0 none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-splitbutton-button:focus-visible,
|
.p-splitbutton-button:focus-visible,
|
||||||
|
@ -20,12 +20,12 @@ const theme = ({ dt }) => `
|
||||||
|
|
||||||
.p-splitbutton-button:not(:disabled):hover,
|
.p-splitbutton-button:not(:disabled):hover,
|
||||||
.p-splitbutton-button:not(:disabled):active {
|
.p-splitbutton-button:not(:disabled):active {
|
||||||
border-right: 0 none;
|
border-inline-end: 0 none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-splitbutton-dropdown {
|
.p-splitbutton-dropdown {
|
||||||
border-top-left-radius: 0;
|
border-start-start-radius: 0;
|
||||||
border-bottom-left-radius: 0;
|
border-end-start-radius: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-splitbutton .p-menu {
|
.p-splitbutton .p-menu {
|
||||||
|
@ -37,13 +37,13 @@ const theme = ({ dt }) => `
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-splitbutton-rounded .p-splitbutton-dropdown {
|
.p-splitbutton-rounded .p-splitbutton-dropdown {
|
||||||
border-top-right-radius: ${dt('splitbutton.rounded.border.radius')};
|
border-start-end-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||||
border-bottom-right-radius: ${dt('splitbutton.rounded.border.radius')};
|
border-end-end-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-splitbutton-rounded .p-splitbutton-button {
|
.p-splitbutton-rounded .p-splitbutton-button {
|
||||||
border-top-left-radius: ${dt('splitbutton.rounded.border.radius')};
|
border-start-start-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||||
border-bottom-left-radius: ${dt('splitbutton.rounded.border.radius')};
|
border-end-start-radius: ${dt('splitbutton.rounded.border.radius')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-splitbutton-raised {
|
.p-splitbutton-raised {
|
||||||
|
|
Loading…
Reference in New Issue