| 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/neon-animation/neon-ani
mation-runner-behavior.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani
mation-runner-behavior.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/shadow.htm
l"> |
| 4 <link rel="import" href="/animation/animation.html"> |
| 4 | 5 |
| 5 <dom-module id="settings-section"> | 6 <dom-module id="settings-section"> |
| 6 <template> | 7 <template> |
| 7 <style> | 8 <style> |
| 8 :host { | 9 :host { |
| 9 display: flex; | 10 display: flex; |
| 10 flex-direction: column; | 11 flex-direction: column; |
| 11 position: relative; | 12 position: relative; |
| 12 } | 13 } |
| 13 | 14 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 44 </style> | 45 </style> |
| 45 <div id="header"> | 46 <div id="header"> |
| 46 <div class="title">{{pageTitle}}</div> | 47 <div class="title">{{pageTitle}}</div> |
| 47 </div> | 48 </div> |
| 48 <div id="card"> | 49 <div id="card"> |
| 49 <content id="content"></content> | 50 <content id="content"></content> |
| 50 </div> | 51 </div> |
| 51 </template> | 52 </template> |
| 52 <script src="settings_section.js"></script> | 53 <script src="settings_section.js"></script> |
| 53 </dom-module> | 54 </dom-module> |
| OLD | NEW |