New tokens for Textarea
parent
18ecd1af94
commit
bc71f9f402
|
@ -7,11 +7,11 @@ const theme = ({ dt }) => `
|
||||||
font-size: 1rem;
|
font-size: 1rem;
|
||||||
color: ${dt('textarea.color')};
|
color: ${dt('textarea.color')};
|
||||||
background: ${dt('textarea.background')};
|
background: ${dt('textarea.background')};
|
||||||
padding: 0.5rem 0.75rem;
|
padding: ${dt('textarea.padding.y')} ${dt('textarea.padding.x')};
|
||||||
border: 1px solid ${dt('textarea.border.color')};
|
border: 1px solid ${dt('textarea.border.color')};
|
||||||
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')};
|
transition: background-color ${dt('transition.duration')}, color ${dt('transition.duration')}, border-color ${dt('transition.duration')}, outline-color ${dt('transition.duration')}, box-shadow ${dt('transition.duration')};
|
||||||
appearance: none;
|
appearance: none;
|
||||||
border-radius: ${dt('border.radius.md')};
|
border-radius: ${dt('textarea.border.radius')};
|
||||||
outline-color: transparent;
|
outline-color: transparent;
|
||||||
box-shadow: ${dt('textarea.shadow')};
|
box-shadow: ${dt('textarea.shadow')};
|
||||||
}
|
}
|
||||||
|
@ -22,6 +22,7 @@ const theme = ({ dt }) => `
|
||||||
|
|
||||||
.p-inputtextarea:enabled:focus {
|
.p-inputtextarea:enabled:focus {
|
||||||
border-color: ${dt('textarea.focus.border.color')};
|
border-color: ${dt('textarea.focus.border.color')};
|
||||||
|
box-shadow: ${dt('textarea.focus.shadow')};
|
||||||
outline: 0 none;
|
outline: 0 none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,10 @@ export default {
|
||||||
color: '{form.field.color}',
|
color: '{form.field.color}',
|
||||||
disabledColor: '{form.field.disabled.color}',
|
disabledColor: '{form.field.disabled.color}',
|
||||||
placeholderColor: '{form.field.placeholder.color}',
|
placeholderColor: '{form.field.placeholder.color}',
|
||||||
shadow: '{form.field.shadow}'
|
shadow: '{form.field.shadow}',
|
||||||
|
focusShadow: '{form.field.focus.shadow}',
|
||||||
|
paddingX: '{form.field.padding.x}',
|
||||||
|
paddingY: '{form.field.padding.y}',
|
||||||
|
borderRadius: '{form.field.border.radius}'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
|
@ -11,6 +11,10 @@ export default {
|
||||||
color: '{form.field.color}',
|
color: '{form.field.color}',
|
||||||
disabledColor: '{form.field.disabled.color}',
|
disabledColor: '{form.field.disabled.color}',
|
||||||
placeholderColor: '{form.field.placeholder.color}',
|
placeholderColor: '{form.field.placeholder.color}',
|
||||||
shadow: '{form.field.shadow}'
|
shadow: '{form.field.shadow}',
|
||||||
|
focusShadow: '{form.field.focus.shadow}',
|
||||||
|
paddingX: '{form.field.padding.x}',
|
||||||
|
paddingY: '{form.field.padding.y}',
|
||||||
|
borderRadius: '{form.field.border.radius}'
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue