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

35 lines
1014 B
JavaScript
Raw Normal View History

2024-05-05 20:35:38 +00:00
export default {
root: {
2024-05-15 08:42:09 +00:00
padding: '0.5rem 1rem',
gap: '0.25rem',
borderRadius: '{content.border.radius}',
2024-05-05 20:35:38 +00:00
background: '{content.background}',
color: '{content.color}',
transitionDuration: '{transition.duration}'
2024-05-05 20:35:38 +00:00
},
navButton: {
2024-05-25 23:45:26 +00:00
background: 'transparent',
2024-05-05 20:35:38 +00:00
hoverBackground: '{content.hover.background}',
2024-05-25 23:45:26 +00:00
selectedBackground: '{highlight.background}',
2024-05-05 20:35:38 +00:00
color: '{text.muted.color}',
2024-05-15 08:42:09 +00:00
hoverColor: '{text.hover.muted.color}',
2024-05-25 23:45:26 +00:00
selectedColor: '{highlight.color}',
2024-05-15 08:42:09 +00:00
width: '2.5rem',
height: '2.5rem',
borderRadius: '50%',
focusRing: {
width: '{focus.ring.width}',
style: '{focus.ring.style}',
color: '{focus.ring.color}',
offset: '{focus.ring.offset}',
shadow: '{focus.ring.shadow}'
}
2024-05-05 20:35:38 +00:00
},
currentPageReport: {
color: '{text.muted.color}'
2024-05-15 08:42:09 +00:00
},
jumpToPageInput: {
maxWidth: '2.5rem'
2024-05-05 20:35:38 +00:00
}
};