-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5091 from open-formulieren/bug/5088-metadata-fiel…
…dset-in-json-registration-options-is-not-visible-when-lots-of-variables-are-selected Fix bug with collapsed metadata fieldset being hidden in JSON dump plugin
- Loading branch information
Showing
3 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
/** | ||
* The django admin `.collapsed` styling on fieldset elements sets `overflow: hidden;`. | ||
* Seeing how we already hide the fieldset content in the javascript code, | ||
* the `overflow: hidden;` only hides the fieldset toggle (which we want to keep visible) | ||
*/ | ||
.openforms-fieldset.collapsed { | ||
overflow: visible !important; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters