parent
540a827ae4
commit
b266a8a440
|
@ -6,5 +6,13 @@ export default {
|
||||||
borderRadius: '{form.field.border.radius}',
|
borderRadius: '{form.field.border.radius}',
|
||||||
padding: '0.75rem',
|
padding: '0.75rem',
|
||||||
minWidth: '3rem'
|
minWidth: '3rem'
|
||||||
}
|
},
|
||||||
|
css: ({ dt }) => `
|
||||||
|
.p-inputgroup:has(.p-variant-filled) .p-inputgroupaddon {
|
||||||
|
border-block-start-color: ${dt('inputtext.filled.background')};
|
||||||
|
border-inline-color: ${dt('inputtext.filled.background')};
|
||||||
|
background: ${dt('inputtext.filled.background')} no-repeat;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
`
|
||||||
};
|
};
|
||||||
|
|
|
@ -41,5 +41,25 @@ export default {
|
||||||
right: 2px;
|
right: 2px;
|
||||||
height: calc(100% - 4px);
|
height: calc(100% - 4px);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.p-inputnumber-horizontal:has(.p-variant-filled) .p-inputnumber-button {
|
||||||
|
border-block-start-color: ${dt('inputtext.filled.background')};
|
||||||
|
border-inline-color: ${dt('inputtext.filled.background')};
|
||||||
|
background: ${dt('inputtext.filled.background')} no-repeat;
|
||||||
|
border-bottom-left-radius: 0;
|
||||||
|
border-bottom-right-radius: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-inputnumber-vertical:has(.p-variant-filled) .p-inputnumber-button {
|
||||||
|
border-block-color: ${dt('inputtext.filled.background')};
|
||||||
|
border-inline-color: ${dt('inputtext.filled.background')};
|
||||||
|
background: ${dt('inputtext.filled.background')} no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
.p-inputnumber-vertical:has(.p-variant-filled) .p-inputnumber-increment-button {
|
||||||
|
border-block-end: 1px solid ${dt('inputtext.border.color')}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
`
|
`
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue