blob: e92564e265c90b7822f5b5c601300cca81288c75 [file] [log] [blame]
<link rel="import" href="/shared_styles.html">
<link rel="import" href="/user_manager_dialog.html">
<link rel="import" href="chrome://resources/html/polymer.html">
<dom-module id="error-dialog">
<template>
<style include="shared-styles">
#dialog {
--user-manager-dialog-title-bar: {
border-bottom-width: 0;
};
}
#message {
white-space: pre-wrap;
word-wrap: break-word;
margin-bottom: 52px;
}
</style>
<user-manager-dialog id="dialog">
<div class="body">
<div id="message">[[message_]]</div>
</div>
</user-manager-dialog>
</template>
<script src="error_dialog.js"></script>
</dom-module>