| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p
aper-dialog-behavior.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p
aper-dialog-behavior.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p
aper-dialog-shared-styles.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-dialog-behavior/p
aper-dialog-shared-styles.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 6 <link rel="import" href="/settings_root_css.html"> |
| 6 | 7 |
| 7 <dom-module id="settings-dialog"> | 8 <dom-module id="settings-dialog"> |
| 8 <template> | 9 <template> |
| 9 <style include="paper-dialog-shared-styles"> | 10 <style include="paper-dialog-shared-styles"> |
| 10 :host { | 11 :host { |
| 11 border-radius: 2px; | 12 border-radius: 2px; |
| 12 } | 13 } |
| 13 | 14 |
| 14 :host ::content > * { | 15 :host ::content > * { |
| 15 /* Overrides paper-dialog-shared-styles. */ | 16 /* Overrides paper-dialog-shared-styles. */ |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 </paper-icon-button> | 97 </paper-icon-button> |
| 97 </div> | 98 </div> |
| 98 <div class="body-container"> | 99 <div class="body-container"> |
| 99 <content select=".body"></content> | 100 <content select=".body"></content> |
| 100 </div> | 101 </div> |
| 101 <content select=".button-container"></content> | 102 <content select=".button-container"></content> |
| 102 <content select=".footer"></content> | 103 <content select=".footer"></content> |
| 103 </template> | 104 </template> |
| 104 <script src="settings_dialog.js"></script> | 105 <script src="settings_dialog.js"></script> |
| 105 </dom-module> | 106 </dom-module> |
| OLD | NEW |