| OLD | NEW |
| 1 <link rel="import" href="chrome://md-user-manager/shared_styles.html"> | 1 <link rel="import" href="/shared_styles.html"> |
| 2 <link rel="import" href="chrome://md-user-manager/user_manager_dialog.html"> | 2 <link rel="import" href="/user_manager_dialog.html"> |
| 3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 4 | 4 |
| 5 <dom-module id="error-dialog"> | 5 <dom-module id="error-dialog"> |
| 6 <template> | 6 <template> |
| 7 <style include="shared-styles"> | 7 <style include="shared-styles"> |
| 8 #dialog { | 8 #dialog { |
| 9 --user-manager-dialog-title-bar: { | 9 --user-manager-dialog-title-bar: { |
| 10 border-bottom-width: 0; | 10 border-bottom-width: 0; |
| 11 }; | 11 }; |
| 12 } | 12 } |
| 13 #message { | 13 #message { |
| 14 white-space: pre-wrap; | 14 white-space: pre-wrap; |
| 15 word-wrap: break-word; | 15 word-wrap: break-word; |
| 16 margin-bottom: 52px; | 16 margin-bottom: 52px; |
| 17 } | 17 } |
| 18 </style> | 18 </style> |
| 19 <user-manager-dialog id="dialog"> | 19 <user-manager-dialog id="dialog"> |
| 20 <div class="body"> | 20 <div class="body"> |
| 21 <div id="message">[[message_]]</div> | 21 <div id="message">[[message_]]</div> |
| 22 </div> | 22 </div> |
| 23 </user-manager-dialog> | 23 </user-manager-dialog> |
| 24 </template> | 24 </template> |
| 25 <!-- TODO(mahmadi): change these Urls to relative ones. e.g., | 25 <script src="error_dialog.js"></script> |
| 26 chrome://md-user-manager/error_dialog.js -> error_dialog.js --> | |
| 27 <script src="chrome://md-user-manager/error_dialog.js"></script> | |
| 28 </dom-module> | 26 </dom-module> |
| OLD | NEW |