| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/html/assert.html"> | 1 <link rel="import" href="chrome://resources/html/assert.html"> |
| 2 <link rel="import" href="chrome://resources/html/cr.html"> | 2 <link rel="import" href="chrome://resources/html/cr.html"> |
| 3 <link rel="import" href="chrome://resources/html/cr/ui.html"> | 3 <link rel="import" href="chrome://resources/html/cr/ui.html"> |
| 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_outline_manager.htm
l"> | 4 <link rel="import" href="chrome://resources/html/cr/ui/focus_outline_manager.htm
l"> |
| 5 <link rel="import" href="chrome://resources/html/polymer.html"> | 5 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-in-animation.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/fade-out-animation.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-left-animation.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-left-animation.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-right-animation.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-from-right-animation.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-left-animation.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/animatio
ns/slide-left-animation.html"> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 display: block; | 21 display: block; |
| 22 } | 22 } |
| 23 | 23 |
| 24 neon-animated-pages { | 24 neon-animated-pages { |
| 25 position: static; | 25 position: static; |
| 26 } | 26 } |
| 27 | 27 |
| 28 neon-animated-pages ::content > .iron-selected { | 28 neon-animated-pages ::content > .iron-selected { |
| 29 position: static; | 29 position: static; |
| 30 } | 30 } |
| 31 |
| 32 neon-animated-pages ::content > settings-subpage { |
| 33 /* Ensure sub-pages are clipped when a section is collapsing. */ |
| 34 overflow: hidden; |
| 35 } |
| 31 </style> | 36 </style> |
| 32 <neon-animated-pages id="animatedPages" attr-for-selected="route-path" | 37 <neon-animated-pages id="animatedPages" attr-for-selected="route-path" |
| 33 on-iron-select="onIronSelect_"> | 38 on-iron-select="onIronSelect_"> |
| 34 <content select="*"></content> | 39 <content select="*"></content> |
| 35 </neon-animated-pages> | 40 </neon-animated-pages> |
| 36 </template> | 41 </template> |
| 37 <script src="settings_animated_pages.js"></script> | 42 <script src="settings_animated_pages.js"></script> |
| 38 </dom-module> | 43 </dom-module> |
| OLD | NEW |