diff --git a/Elements with ID lister.user.js b/Elements with ID lister.user.js index 8831be2..12d2b6b 100644 --- a/Elements with ID lister.user.js +++ b/Elements with ID lister.user.js @@ -6,7 +6,7 @@ // @grant GM_getResourceURL // @require https://cdn.jsdelivr.net/npm/dialog-polyfill@0.5.6/dist/dialog-polyfill.min.js#sha256-cec1a2e320aab77e28bad4ad6bc5e532a6ef5757345c19bb5158aa880b7162a6 // @resource dialogPolyfillCSS https://cdn.jsdelivr.net/npm/dialog-polyfill@0.5.6/dist/dialog-polyfill.min.css#sha256-4dcb3ab62e545f30bf06a4824c253641ee889ca85ca28d5447590557922496ab -// @version 1.0.7 +// @version 1.0.8 // @author blankie // @description A userscript that adds a "Show elements popup" option to the Monkey Menu which lists all elements with an ID // @inject-into content @@ -29,10 +29,12 @@ dialog { position: fixed; min-width: 25em; max-height: 90%; + max-width: 90%; font-size: 11pt; text-align: left; color-scheme: dark; overflow-y: auto; + overflow-wrap: break-word; } dialog, dialog.polyfilled button { color: white; @@ -50,6 +52,10 @@ dialog::backdrop, dialog + .backdrop { .align-right { text-align: right; } +button { + /* https://stackoverflow.com/a/27722954 */ + display: inline; +} a { color: ${ACCENT_COLOR};