Reputation: 28137
Is it possible to style the new Chrome alert
boxes, added in version 29?
Run this javaScript in Chrome's console:
alert("This is new")
I ask this because the new window actually looks more like a dialog.
It also displays a tooltip with the coordinates while being dragged.
Upvotes: 12
Views: 8153
Reputation: 6655
No, you cannot style dialog boxes (including the newly designed one). Use a JS/HTML modal if you need to style a popup instead.
Upvotes: 15