2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-03-12 08:19:23 +00:00
|
|
|
css: ({ dt }) => `
|
2024-02-19 22:53:42 +00:00
|
|
|
.p-selectbutton {
|
|
|
|
display: inline-flex;
|
|
|
|
user-select: none;
|
|
|
|
vertical-align: bottom;
|
|
|
|
border: 1px solid transparent;
|
2024-03-13 18:50:24 +00:00
|
|
|
background: ${dt('selectbutton.background')};
|
2024-03-12 08:19:23 +00:00
|
|
|
border-radius: ${dt('rounded.base')};
|
2024-02-19 22:53:42 +00:00
|
|
|
outline-color: transparent;
|
2024-03-12 08:19:23 +00:00
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton .p-button {
|
|
|
|
flex: 1 1 auto;
|
|
|
|
background: transparent;
|
|
|
|
border: 0 none;
|
2024-03-13 18:50:24 +00:00
|
|
|
color: ${dt('selectbutton.item.color')};
|
2024-03-12 08:19:23 +00:00
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
2024-02-19 22:53:42 +00:00
|
|
|
outline-color: transparent;
|
|
|
|
padding: 0.5rem 1rem;
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2024-03-12 08:19:23 +00:00
|
|
|
border-radius: ${dt('rounded.base')};
|
2024-02-19 22:53:42 +00:00
|
|
|
gap: 0.5rem;
|
|
|
|
position: relative;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton .p-button::before {
|
|
|
|
content: "";
|
|
|
|
background: transparent;
|
2024-03-12 08:19:23 +00:00
|
|
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
2024-02-19 22:53:42 +00:00
|
|
|
position: absolute;
|
|
|
|
left: 0.25rem;
|
|
|
|
top: 0.25rem;
|
|
|
|
width: calc(100% - 0.5rem);
|
|
|
|
height: calc(100% - 0.5rem);
|
2024-03-13 18:50:24 +00:00
|
|
|
border-radius: ${dt('rounded.sm')};
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton .p-button .p-button-label {
|
|
|
|
position: relative;
|
|
|
|
transition: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton .p-button:not(.p-disabled):not(.p-highlight):hover {
|
2024-03-13 18:50:24 +00:00
|
|
|
color: ${dt('selectbutton.item.hover.color')};
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton .p-button.p-highlight {
|
2024-03-13 18:50:24 +00:00
|
|
|
color: ${dt('selectbutton.item.checked.color')};
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton .p-button.p-highlight::before {
|
2024-03-13 18:50:24 +00:00
|
|
|
background: ${dt('selectbutton.item.checked.background')};
|
2024-02-19 22:53:42 +00:00
|
|
|
box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.02), 0px 1px 2px 0px rgba(0, 0, 0, 0.04);
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton .p-button:focus-visible {
|
2024-03-12 08:19:23 +00:00
|
|
|
outline: ${dt('focus.ring.width')} ${dt('focus.ring.style')} ${dt('focus.ring.color')};
|
|
|
|
outline-offset: ${dt('focus.ring.offset')};
|
2024-02-19 22:53:42 +00:00
|
|
|
--p-focus-ring-offset: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton.p-invalid {
|
2024-03-13 18:50:24 +00:00
|
|
|
border-color: ${dt('selectbutton.invalid.border.color')};
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton.p-disabled {
|
|
|
|
opacity: 1;
|
2024-03-13 18:50:24 +00:00
|
|
|
background: ${dt('selectbutton.disabled.background')};
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.p-selectbutton.p-disabled .p-button,
|
|
|
|
.p-selectbutton .p-button.p-disabled {
|
2024-03-13 18:50:24 +00:00
|
|
|
background: ${dt('selectbutton.disabled.background')};
|
|
|
|
color: ${dt('selectbutton.item.disabled.color')};
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
`
|
|
|
|
};
|