139 lines
3.0 KiB
JavaScript
139 lines
3.0 KiB
JavaScript
import BaseStyle from 'primevue/base/style';
|
|
|
|
const theme = ({ dt }) => `
|
|
.p-steps {
|
|
position: relative;
|
|
}
|
|
|
|
.p-steps-list {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style-type: none;
|
|
display: flex;
|
|
}
|
|
|
|
.p-steps-item {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
flex: 1 1 auto;
|
|
}
|
|
|
|
.p-steps-item.p-disabled,
|
|
.p-steps-item.p-disabled * {
|
|
opacity: 1;
|
|
pointer-events: auto;
|
|
user-select: auto;
|
|
cursor: auto;
|
|
}
|
|
|
|
.p-steps-item:before {
|
|
content: " ";
|
|
border-top: 2px solid ${dt('steps.connector.border.color')};
|
|
width: 100%;
|
|
top: 50%;
|
|
left: 0;
|
|
display: block;
|
|
position: absolute;
|
|
margin-top: -1rem;
|
|
margin-top: calc(-1rem + 1px);
|
|
}
|
|
|
|
.p-steps-item:first-child::before {
|
|
width: calc(50% + 1rem);
|
|
transform: translateX(100%);
|
|
}
|
|
|
|
.p-steps-item:last-child::before {
|
|
width: 50%;
|
|
}
|
|
|
|
.p-steps-item-link {
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
transition: outline-color ${dt('transition.duration')};
|
|
border-radius: ${dt('rounded.base')};
|
|
outline-color: transparent;
|
|
}
|
|
|
|
.p-steps-item-link:not(.p-disabled):focus-visible {
|
|
outline: ${dt('focus.ring.width')} ${dt('focus.ring.style')} ${dt('focus.ring.color')};
|
|
outline-offset: ${dt('focus.ring.offset')};
|
|
}
|
|
|
|
.p-steps-item-label {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
max-width: 100%;
|
|
margin-top: 0.5rem;
|
|
color: ${dt('steps.item.color')};
|
|
display: block;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.p-steps-item-number {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: ${dt('steps.marker.color')};
|
|
border: 2px solid ${dt('steps.marker.border.color')};
|
|
background: ${dt('steps.marker.background')};
|
|
min-width: 2rem;
|
|
height: 2rem;
|
|
line-height: 2rem;
|
|
font-size: 1.143rem;
|
|
z-index: 1;
|
|
border-radius: 50%;
|
|
position: relative;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.p-steps-item-number::after {
|
|
content: " ";
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 50%;
|
|
box-shadow: 0px 0.5px 0px 0px rgba(0, 0, 0, 0.06), 0px 1px 1px 0px rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.p-steps:not(.p-readonly) .p-steps-item {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.p-steps-item-active .p-steps-item-number {
|
|
background: ${dt('steps.marker.active.background')};
|
|
color: ${dt('steps.marker.active.color')};
|
|
}
|
|
|
|
.p-steps-item-active .p-steps-item-label {
|
|
font-weight: 500;
|
|
color: ${dt('steps.item.active.color')};
|
|
}
|
|
`;
|
|
|
|
const classes = {
|
|
root: ({ props }) => ['p-steps p-component', { 'p-readonly': props.readonly }],
|
|
list: 'p-steps-list',
|
|
item: ({ instance, item, index }) => [
|
|
'p-steps-item',
|
|
{
|
|
'p-steps-item-active': instance.isActive(index),
|
|
'p-disabled': instance.isItemDisabled(item, index)
|
|
}
|
|
],
|
|
itemLink: 'p-steps-item-link',
|
|
itemNumber: 'p-steps-item-number',
|
|
itemLabel: 'p-steps-item-label'
|
|
};
|
|
|
|
export default BaseStyle.extend({
|
|
name: 'steps',
|
|
theme,
|
|
classes
|
|
});
|