New tokens for Slider
parent
f6ecb972f9
commit
82bc6a1bf1
|
@ -4,7 +4,7 @@ const theme = ({ dt }) => `
|
||||||
.p-slider {
|
.p-slider {
|
||||||
position: relative;
|
position: relative;
|
||||||
background: ${dt('slider.track.background')};
|
background: ${dt('slider.track.background')};
|
||||||
border-radius: ${dt('border.radius.md')};
|
border-radius: ${dt('slider.border.radius')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider-handle {
|
.p-slider-handle {
|
||||||
|
@ -13,43 +13,48 @@ const theme = ({ dt }) => `
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
height: 20px;
|
height: ${dt('slider.handle.height')};
|
||||||
width: 20px;
|
width: ${dt('slider.handle.width')};
|
||||||
background: ${dt('slider.handle.background')};
|
background: ${dt('slider.handle.background')};
|
||||||
border: 0 none;
|
border-radius: ${dt('slider.handle.border.radius')};
|
||||||
border-radius: 50%;
|
|
||||||
transition: background ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider-handle::before {
|
.p-slider-handle::before {
|
||||||
content: "";
|
content: "";
|
||||||
width: 16px;
|
width: ${dt('slider.handle.content.width')};
|
||||||
height: 16px;
|
height: ${dt('slider.handle.content.height')};
|
||||||
display: block;
|
display: block;
|
||||||
background-color: ${dt('slider.handle.content.background')};
|
background: ${dt('slider.handle.content.background')};
|
||||||
border-radius: 50%;
|
border-radius: ${dt('slider.handle.content.border.radius')};
|
||||||
box-shadow: 0px 0.5px 0px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.14);
|
box-shadow: ${dt('slider.handle.content.shadow')};
|
||||||
|
transition: background ${dt('transition.duration')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider:not(.p-disabled) .p-slider-handle:hover {
|
.p-slider:not(.p-disabled) .p-slider-handle:hover {
|
||||||
background: ${dt('slider.handle.hover.background')};
|
background: ${dt('slider.handle.hover.background')};
|
||||||
border-color: transparent;
|
}
|
||||||
|
|
||||||
|
.p-slider:not(.p-disabled) .p-slider-handle:hover::before {
|
||||||
|
background: ${dt('slider.handle.content.hover.background')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider-handle:focus-visible {
|
.p-slider-handle:focus-visible {
|
||||||
outline: ${dt('focus.ring.width')} ${dt('focus.ring.style')} ${dt('focus.ring.color')};
|
border-color: ${dt('slider.handle.focus.border.color')};
|
||||||
outline-offset: 0;
|
box-shadow: ${dt('slider.handle.focus.ring.shadow')};
|
||||||
|
outline: ${dt('slider.handle.focus.ring.width')} ${dt('slider.handle.focus.ring.style')} ${dt('slider.handle.focus.ring.color')};
|
||||||
|
outline-offset: ${dt('slider.handle.focus.ring.offset')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider-range {
|
.p-slider-range {
|
||||||
display: block;
|
display: block;
|
||||||
background: ${dt('slider.range.background')};
|
background: ${dt('slider.range.background')};
|
||||||
border-radius: ${dt('border.radius.md')};
|
border-radius: ${dt('slider.border.radius')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider.p-slider-horizontal {
|
.p-slider.p-slider-horizontal {
|
||||||
height: 3px;
|
height: ${dt('slider.track.size')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider-horizontal .p-slider-range {
|
.p-slider-horizontal .p-slider-range {
|
||||||
|
@ -60,19 +65,19 @@ const theme = ({ dt }) => `
|
||||||
|
|
||||||
.p-slider-horizontal .p-slider-handle {
|
.p-slider-horizontal .p-slider-handle {
|
||||||
top: 50%;
|
top: 50%;
|
||||||
margin-top: -10px;
|
margin-top: calc(-1 * calc(${dt('slider.handle.height')} / 2));
|
||||||
margin-left: -10px;
|
margin-left: calc(-1 * calc(${dt('slider.handle.width')} / 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider-vertical {
|
.p-slider-vertical {
|
||||||
height: 100px;
|
min-height: 100px;
|
||||||
width: 3px;
|
height: ${dt('slider.track.size')};
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider-vertical .p-slider-handle {
|
.p-slider-vertical .p-slider-handle {
|
||||||
left: 50%;
|
left: 50%;
|
||||||
margin-left: -10px;
|
margin-left: calc(-1 * calc(${dt('slider.handle.width')} / 2));
|
||||||
margin-bottom: -10px;
|
margin-bottom: calc(-1 * calc(${dt('slider.handle.height')} / 2));
|
||||||
}
|
}
|
||||||
|
|
||||||
.p-slider-vertical .p-slider-range {
|
.p-slider-vertical .p-slider-range {
|
||||||
|
|
|
@ -1,13 +1,33 @@
|
||||||
export default {
|
export default {
|
||||||
track: {
|
track: {
|
||||||
background: '{content.border.color}'
|
background: '{content.border.color}',
|
||||||
|
borderRadius: '{border.radius.md}',
|
||||||
|
size: '3px'
|
||||||
},
|
},
|
||||||
range: {
|
range: {
|
||||||
background: '{primary.color}'
|
background: '{primary.color}'
|
||||||
},
|
},
|
||||||
handle: {
|
handle: {
|
||||||
|
width: '20px',
|
||||||
|
height: '20px',
|
||||||
|
borderRadius: '50%',
|
||||||
background: '{content.border.color}',
|
background: '{content.border.color}',
|
||||||
hoverBackground: '{content.border.color}'
|
hoverBackground: '{content.border.color}',
|
||||||
|
content: {
|
||||||
|
borderRadius: '50%',
|
||||||
|
background: '{content.background}',
|
||||||
|
hoverBackground: '{content.background}',
|
||||||
|
width: '16px',
|
||||||
|
height: '16px',
|
||||||
|
shadow: '0px 0.5px 0px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.14)'
|
||||||
|
},
|
||||||
|
focusRing: {
|
||||||
|
width: '{focus.ring.width}',
|
||||||
|
style: '{focus.ring.style}',
|
||||||
|
color: '{focus.ring.color}',
|
||||||
|
offset: '{focus.ring.offset}',
|
||||||
|
shadow: '{focus.ring.shadow}'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
colorScheme: {
|
colorScheme: {
|
||||||
light: {
|
light: {
|
||||||
|
|
|
@ -1,13 +1,33 @@
|
||||||
export default {
|
export default {
|
||||||
track: {
|
track: {
|
||||||
background: '{content.border.color}'
|
background: '{content.border.color}',
|
||||||
|
borderRadius: '{border.radius.sm}',
|
||||||
|
size: '3px'
|
||||||
},
|
},
|
||||||
range: {
|
range: {
|
||||||
background: '{primary.color}'
|
background: '{primary.color}'
|
||||||
},
|
},
|
||||||
handle: {
|
handle: {
|
||||||
background: '{content.border.color}',
|
width: '16px',
|
||||||
hoverBackground: '{content.border.color}'
|
height: '16px',
|
||||||
|
borderRadius: '50%',
|
||||||
|
background: '{primary.color}',
|
||||||
|
hoverBackground: '{primary.color}',
|
||||||
|
content: {
|
||||||
|
background: '{content.background}',
|
||||||
|
hoverBackground: '{primary.color}',
|
||||||
|
borderRadius: '50%',
|
||||||
|
width: '12px',
|
||||||
|
height: '12px',
|
||||||
|
shadow: 'none'
|
||||||
|
},
|
||||||
|
focusRing: {
|
||||||
|
width: '{form.field.focus.ring.width}',
|
||||||
|
style: '{form.field.focus.ring.style}',
|
||||||
|
color: '{form.field.focus.ring.color}',
|
||||||
|
offset: '{form.field.focus.ring.offset}',
|
||||||
|
shadow: '{form.field.focus.ring.shadow}'
|
||||||
|
}
|
||||||
},
|
},
|
||||||
colorScheme: {
|
colorScheme: {
|
||||||
light: {
|
light: {
|
||||||
|
|
Loading…
Reference in New Issue