| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/html/promise_resolver.html"> | 3 <link rel="import" href="chrome://resources/html/promise_resolver.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm
l"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt
on.html"> |
| 6 <link rel="import" href="../about_page/about_page.html"> | 6 <link rel="import" href="../about_page/about_page.html"> |
| 7 <link rel="import" href="../basic_page/basic_page.html"> | 7 <link rel="import" href="../basic_page/basic_page.html"> |
| 8 <link rel="import" href="../route.html"> | 8 <link rel="import" href="../route.html"> |
| 9 <link rel="import" href="../settings_vars_css.html"> | 9 <link rel="import" href="../settings_vars_css.html"> |
| 10 | 10 |
| 11 <dom-module id="settings-main"> | 11 <dom-module id="settings-main"> |
| 12 <template> | 12 <template> |
| 13 <style> | 13 <style> |
| 14 #overscroll { | 14 #overscroll { |
| 15 margin-top: 64px; | 15 margin-top: 64px; |
| 16 } | 16 } |
| 17 | 17 |
| 18 .showing-subpage ~ #overscroll { |
| 19 display: none; |
| 20 } |
| 21 |
| 18 #noSearchResults { | 22 #noSearchResults { |
| 19 align-items: center; | 23 align-items: center; |
| 20 display: flex; | 24 display: flex; |
| 21 flex-direction: column; | 25 flex-direction: column; |
| 22 margin-top: 80px; | 26 margin-top: 80px; |
| 23 } | 27 } |
| 24 | 28 |
| 25 #noSearchResults div:first-child { | 29 #noSearchResults div:first-child { |
| 26 font-size: 120%; | 30 font-size: 120%; |
| 27 margin-bottom: 10px; | 31 margin-bottom: 10px; |
| (...skipping 15 matching lines...) Expand all Loading... |
| 43 </template> | 47 </template> |
| 44 <template is="dom-if" if="[[showPages_.about]]"> | 48 <template is="dom-if" if="[[showPages_.about]]"> |
| 45 <settings-about-page in-search-mode="[[inSearchMode_]]"> | 49 <settings-about-page in-search-mode="[[inSearchMode_]]"> |
| 46 </settings-about-page> | 50 </settings-about-page> |
| 47 </template> | 51 </template> |
| 48 <div id="overscroll" style="padding-bottom: [[overscroll_]]px"></div> | 52 <div id="overscroll" style="padding-bottom: [[overscroll_]]px"></div> |
| 49 </template> | 53 </template> |
| 50 <script src="settings_main.js"></script> | 54 <script src="settings_main.js"></script> |
| 51 <script src="../search_settings.js"></script> | 55 <script src="../search_settings.js"></script> |
| 52 </dom-module> | 56 </dom-module> |
| OLD | NEW |