The CSS is from Eiji Kitamura's demo [1]. I'm inlining the CSS here
to avoid more dynamic-loading shenanigans like we needed for the
dialog polyfill. I don't expect this CSS will grow much larger
anyway.
[1]: http://demo.agektmr.com/dialog/#styling
dialogPolyfill.registerDialog(dialog);
}
+ dialog.style.border = '1px solid rgba(0, 0, 0, 0.3)';
+ dialog.style.borderRadius = '6px';
+ dialog.style.boxShadow = '0 3px 7px rgba(0, 0, 0, 0.3)';
+
var content = document.createElement('p');
content.innerHTML = 'Edit tags for ' + message_id;
dialog.appendChild(content);