Merge pull request #1011 from davidoff31/fix/combobox-styling-issues
add inherited styles in combobox to allow styling
This commit is contained in:
commit
c5aef75662
2 changed files with 8 additions and 1 deletions
5
.changeset/ten-moles-kneel.md
Normal file
5
.changeset/ten-moles-kneel.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
---
|
||||||
|
"@lion/combobox": patch
|
||||||
|
---
|
||||||
|
|
||||||
|
add inherited styles in combobox (aria 1.1) _inputNode to allow styling
|
||||||
|
|
@ -124,7 +124,9 @@ export class LionCombobox extends OverlayMixin(LionListbox) {
|
||||||
outline: none;
|
outline: none;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
font-size: inherit;
|
font: inherit;
|
||||||
|
color: inherit;
|
||||||
|
border-radius: inherit;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
padding: 0;`;
|
padding: 0;`;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue