Fixed InputNumber border-radius
parent
9645b2a4dc
commit
284e61245b
|
@ -559,9 +559,9 @@ export default {
|
||||||
return ['p-inputnumber p-component', {
|
return ['p-inputnumber p-component', {
|
||||||
'p-inputwrapper-filled': this.filled,
|
'p-inputwrapper-filled': this.filled,
|
||||||
'p-inputwrapper-focus': this.focused,
|
'p-inputwrapper-focus': this.focused,
|
||||||
'p-inputnumber-buttons-stacked': this.buttonLayout === 'stacked',
|
'p-inputnumber-buttons-stacked': this.showButtons && this.buttonLayout === 'stacked',
|
||||||
'p-inputnumber-buttons-horizontal': this.buttonLayout === 'horizontal',
|
'p-inputnumber-buttons-horizontal': this.showButtons && this.buttonLayout === 'horizontal',
|
||||||
'p-inputnumber-buttons-vertical': this.buttonLayout === 'vertical'
|
'p-inputnumber-buttons-vertical': this.showButtons && this.buttonLayout === 'vertical'
|
||||||
}];
|
}];
|
||||||
},
|
},
|
||||||
upButtonClass() {
|
upButtonClass() {
|
||||||
|
|
Loading…
Reference in New Issue