| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons.h
tml"> | |
| 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 | 6 |
| 7 <dom-module id="settings-dialog"> | 7 <dom-module id="settings-dialog"> |
| 8 <template> | 8 <template> |
| 9 <style include="paper-dialog-shared-styles"></style> | 9 <style include="paper-dialog-shared-styles"></style> |
| 10 <style> | 10 <style> |
| 11 .body-content { | 11 .body-content { |
| 12 display: flex; | 12 display: flex; |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 93 :host ::content .body, | 93 :host ::content .body, |
| 94 :host ::content .title { | 94 :host ::content .title { |
| 95 -webkit-padding-end: 24px; | 95 -webkit-padding-end: 24px; |
| 96 -webkit-padding-start: 24px; | 96 -webkit-padding-start: 24px; |
| 97 flex: 1; | 97 flex: 1; |
| 98 } | 98 } |
| 99 </style> | 99 </style> |
| 100 <div class="dialog-content"> | 100 <div class="dialog-content"> |
| 101 <div class="top-row"> | 101 <div class="top-row"> |
| 102 <content select=".title"></content> | 102 <content select=".title"></content> |
| 103 <paper-icon-button icon="clear" on-tap="cancel" id="close"> | 103 <paper-icon-button icon="cr:clear" on-tap="cancel" id="close"> |
| 104 </paper-icon-button> | 104 </paper-icon-button> |
| 105 </div> | 105 </div> |
| 106 <div class="body-content"> | 106 <div class="body-content"> |
| 107 <content select=".body"></content> | 107 <content select=".body"></content> |
| 108 <content select=".button-container"></content> | 108 <content select=".button-container"></content> |
| 109 </div> | 109 </div> |
| 110 </div> | 110 </div> |
| 111 <div class="footer-container"> | 111 <div class="footer-container"> |
| 112 <content select=".footer"></content> | 112 <content select=".footer"></content> |
| 113 </div> | 113 </div> |
| 114 </template> | 114 </template> |
| 115 <script src="settings_dialog.js"></script> | 115 <script src="settings_dialog.js"></script> |
| 116 </dom-module> | 116 </dom-module> |
| OLD | NEW |