Skip to content

Commit

Permalink
Resolve #780 (#785)
Browse files Browse the repository at this point in the history
* Attempt #1

* Remove console.log

* Update puppeteer screenshot
  • Loading branch information
jshjohnson authored Dec 3, 2019
1 parent b3b7b3f commit 44b4326
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
Binary file modified .github/actions-scripts/__snapshots__/puppeteer-darwin.png
100644 → 100755
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions public/assets/styles/choices.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
===============================*/
.choices {
position: relative;
overflow: hidden;
margin-bottom: 24px;
font-size: 16px;
}
Expand All @@ -15,6 +16,10 @@
margin-bottom: 0;
}

.choices.is-open {
overflow: initial;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
background-color: #eaeaea;
Expand Down
2 changes: 1 addition & 1 deletion public/assets/styles/choices.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions src/styles/choices.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ $choices-icon-cross-inverse: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiI

.#{$choices-selector} {
position: relative;
overflow: hidden;
margin-bottom: $choices-guttering;
font-size: $choices-font-size-lg;
&:focus {
Expand All @@ -32,6 +33,9 @@ $choices-icon-cross-inverse: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiI
&:last-child {
margin-bottom: 0;
}
&.is-open {
overflow: initial;
}
&.is-disabled {
.#{$choices-selector}__inner,
.#{$choices-selector}__input {
Expand Down

0 comments on commit 44b4326

Please sign in to comment.