Skip to content

Commit

Permalink
Fix: User-agent styles of HTML select elements should not be override…
Browse files Browse the repository at this point in the history
…n by the inspector.
  • Loading branch information
oleq committed Mar 27, 2020
1 parent baf5293 commit 2622b0f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/ui.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

/* Reset first */
.ck-inspector,
.ck-inspector * {
.ck-inspector *:not(select) {
box-sizing: border-box;
width: auto;
height: auto;
Expand Down Expand Up @@ -93,6 +93,10 @@
.ck-inspector .ck-inspector-editor-selector {
margin-left: auto;
margin-right: 1em;

& select {
margin-left: 1em;
}
}

.ck-inspector .ck-inspector-code {
Expand Down

0 comments on commit 2622b0f

Please sign in to comment.