primevue-mirror/components/lib/themes/lara/stepper/index.js

68 lines
1.7 KiB
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
root: {
transitionDuration: '{transition.duration}'
},
2024-05-05 20:35:38 +00:00
separator: {
background: '{content.border.color}',
2024-05-11 20:33:50 +00:00
activeBackground: '{primary.color}',
orientation: {
vertical: {
margin: '0 0 0 1.625rem'
}
},
size: '2px'
},
item: {
padding: '0.5rem',
gap: '1rem'
},
itemHeader: {
padding: '0',
borderRadius: '{content.border.radius}',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
},
gap: '0.5rem'
2024-05-05 20:35:38 +00:00
},
itemTitle: {
2024-05-11 20:33:50 +00:00
color: '{text.muted.color}',
activeColor: '{primary.color}',
fontWeight: '500'
2024-05-05 20:35:38 +00:00
},
itemNumber: {
background: '{content.background}',
2024-05-11 20:33:50 +00:00
activeBackground: '{primary.color}',
2024-05-05 20:35:38 +00:00
borderColor: '{content.border.color}',
2024-05-25 10:13:17 +00:00
activeBorderColor: '{primary.color}',
2024-05-05 20:35:38 +00:00
color: '{text.muted.color}',
2024-05-14 11:04:59 +00:00
activeColor: '{primary.contrast.color}',
2024-05-11 20:33:50 +00:00
size: '2.25rem',
fontSize: '1.125rem',
fontWeight: '500',
borderRadius: '50%',
shadow: 'none'
},
verticalPanelContainer: {
paddingLeft: '1rem'
2024-05-05 20:35:38 +00:00
},
panelContent: {
background: '{content.background}',
2024-05-11 20:33:50 +00:00
color: '{content.color}',
orientation: {
horizontal: {
padding: '0.875rem 0.5rem 1.125rem 0.5rem'
},
vertical: {
padding: '0 0 0 1rem',
last: {
padding: '0 0 0 3rem'
}
}
}
2024-05-05 20:35:38 +00:00
}
};