| <link rel="import" href="chrome://resources/html/polymer.html"> |
| |
| <link rel="import" href="settings_page/main_page_behavior.html"> |
| |
| <dom-module id="settings-page-styles"> |
| <template> |
| <style> |
| :host { |
| @apply --cr-centered-card-container; |
| } |
| |
| :host(.showing-subpage), |
| :host(.showing-subpage) #basicPage, |
| :host(.showing-subpage) #advancedPage { |
| /* The subpage container should extend to the bottom of the page. */ |
| height: 100%; |
| } |
| |
| :host(.showing-subpage) settings-section:not(.expanded) { |
| display: none; |
| } |
| |
| :host > div > :not(.expanded) { |
| /* The margin and padding here are doing two things: make the total |
| * separation 24px; and make scrollIntoView align the section header |
| * with the top item in the side nav menu. Both things are desired |
| * by Alan (bettes@). */ |
| margin-bottom: 3px; |
| } |
| |
| .expanded { |
| min-height: 100%; |
| } |
| </style> |
| </template> |
| </dom-module> |