| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | 1 <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"> | 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> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 align-items: center; | 29 align-items: center; |
| 30 border-bottom: 1px solid var(--paper-grey-300); | 30 border-bottom: 1px solid var(--paper-grey-300); |
| 31 display: flex; | 31 display: flex; |
| 32 padding-bottom: 5px; | 32 padding-bottom: 5px; |
| 33 padding-top: 5px; | 33 padding-top: 5px; |
| 34 } | 34 } |
| 35 | 35 |
| 36 :host { | 36 :host { |
| 37 max-width: 800px; | 37 max-width: 800px; |
| 38 min-width: 500px; | 38 min-width: 500px; |
| 39 overflow: auto; |
| 39 } | 40 } |
| 40 | 41 |
| 41 :host ::content .body { | 42 :host ::content .body { |
| 42 margin-bottom: 35px; | 43 margin-bottom: 35px; |
| 43 } | 44 } |
| 44 | 45 |
| 45 :host ::content .button-container { | 46 :host ::content .button-container { |
| 46 display: flex; | 47 display: flex; |
| 47 justify-content: flex-end; | 48 justify-content: flex-end; |
| 48 } | 49 } |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 <content select=".body"></content> | 90 <content select=".body"></content> |
| 90 <content select=".button-container"></content> | 91 <content select=".button-container"></content> |
| 91 </div> | 92 </div> |
| 92 </div> | 93 </div> |
| 93 <div class="footer-container"> | 94 <div class="footer-container"> |
| 94 <content select=".footer"></content> | 95 <content select=".footer"></content> |
| 95 </div> | 96 </div> |
| 96 </template> | 97 </template> |
| 97 <script src="settings_dialog.js"></script> | 98 <script src="settings_dialog.js"></script> |
| 98 </dom-module> | 99 </dom-module> |
| OLD | NEW |