DrDroid
DrDroid
For the exemple in the video I simply added the code to the default YAML (edit: on a fresh GRAV + Admin) ``` extends@: default form: fields: tabs: fields: advanced:...
In the production site it's nested in a tab (but I have the exact same behavior): ``` title: Article "@extends": type: xyz context: blueprints://pages form: fields: tabs: type: tabs fields:...
I corrected this issue by adding a simple `overflow: scroll;` to `mediapicker-scroll` in `themes/grav/scss/template/_media.scss` ``` .mediapicker-scroll { position: absolute; top: 55px; bottom: 30px; height: inherit; overflow: scroll; } ``` See...