From 7e915f943a9c552c66f140a855980eb89f89d312 Mon Sep 17 00:00:00 2001 From: Mathieu Puech Date: Thu, 15 Oct 2020 16:13:36 -0400 Subject: [PATCH] fix(combobox): inherit background for native input --- .changeset/slow-laws-trade.md | 5 +++++ packages/combobox/src/LionCombobox.js | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/slow-laws-trade.md diff --git a/.changeset/slow-laws-trade.md b/.changeset/slow-laws-trade.md new file mode 100644 index 000000000..b6bd5e67e --- /dev/null +++ b/.changeset/slow-laws-trade.md @@ -0,0 +1,5 @@ +--- +'@lion/combobox': patch +--- + +Allow background customization of native input diff --git a/packages/combobox/src/LionCombobox.js b/packages/combobox/src/LionCombobox.js index d66e33750..55cd4a42b 100644 --- a/packages/combobox/src/LionCombobox.js +++ b/packages/combobox/src/LionCombobox.js @@ -138,6 +138,7 @@ export class LionCombobox extends OverlayMixin(LionListbox) { width: 100%; height: 100%; font: inherit; + background: inherit; color: inherit; border-radius: inherit; box-sizing: border-box;