pull/6188/merge
Cagatay Civici 2024-11-21 18:16:32 +03:00
parent 540a827ae4
commit b266a8a440
2 changed files with 29 additions and 1 deletions

View File

@ -6,5 +6,13 @@ export default {
borderRadius: '{form.field.border.radius}',
padding: '0.75rem',
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;
`
};

View File

@ -41,5 +41,25 @@ export default {
right: 2px;
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')}
}
`
};