2024-02-19 22:53:42 +00:00
|
|
|
export default {
|
2024-03-12 08:19:23 +00:00
|
|
|
css: ({ dt }) => `
|
2024-02-19 22:53:42 +00:00
|
|
|
.p-icon-field {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2024-03-25 18:57:56 +00:00
|
|
|
.p-input-icon {
|
2024-02-19 22:53:42 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
margin-top: -.5rem;
|
2024-03-25 18:57:56 +00:00
|
|
|
color: ${dt('iconfield.color')};
|
2024-02-19 22:53:42 +00:00
|
|
|
}
|
|
|
|
|
2024-04-07 09:53:01 +00:00
|
|
|
.p-icon-field .p-input-icon:first-child {
|
2024-02-19 22:53:42 +00:00
|
|
|
left: 0.75rem;
|
|
|
|
}
|
|
|
|
|
2024-04-07 09:53:01 +00:00
|
|
|
.p-icon-field .p-input-icon:last-child {
|
2024-02-19 22:53:42 +00:00
|
|
|
right: 0.75rem;
|
|
|
|
}
|
|
|
|
|
2024-04-07 09:53:01 +00:00
|
|
|
.p-icon-field .p-inputtext:last-child {
|
2024-02-19 22:53:42 +00:00
|
|
|
padding-left: 2.5rem;
|
|
|
|
}
|
|
|
|
|
2024-04-07 09:53:01 +00:00
|
|
|
.p-icon-field .p-inputtext:first-child {
|
2024-02-19 22:53:42 +00:00
|
|
|
padding-right: 2.5rem;
|
|
|
|
}
|
|
|
|
`
|
|
|
|
};
|