| 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/paper-styles/shadow.htm
l"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 3 <link rel="import" href="/animation/animation.html"> | 3 <link rel="import" href="../animation/animation.html"> |
| 4 | 4 |
| 5 <dom-module id="settings-section"> | 5 <dom-module id="settings-section"> |
| 6 <template> | 6 <template> |
| 7 <style> | 7 <style> |
| 8 :host { | 8 :host { |
| 9 -webkit-margin-end: 3px; | 9 -webkit-margin-end: 3px; |
| 10 -webkit-margin-start: 3px; | 10 -webkit-margin-start: 3px; |
| 11 display: flex; | 11 display: flex; |
| 12 flex-direction: column; | 12 flex-direction: column; |
| 13 /* Margin so the box-shadow isn't clipped during animations. */ | 13 /* Margin so the box-shadow isn't clipped during animations. */ |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 </style> | 61 </style> |
| 62 <div id="header"> | 62 <div id="header"> |
| 63 <h2 class="title">{{pageTitle}}</h2> | 63 <h2 class="title">{{pageTitle}}</h2> |
| 64 </div> | 64 </div> |
| 65 <div id="card"> | 65 <div id="card"> |
| 66 <content id="content"></content> | 66 <content id="content"></content> |
| 67 </div> | 67 </div> |
| 68 </template> | 68 </template> |
| 69 <script src="settings_section.js"></script> | 69 <script src="settings_section.js"></script> |
| 70 </dom-module> | 70 </dom-module> |
| OLD | NEW |