OLD | NEW |
1 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_toolbar/cr_toolbar.ht
ml"> |
2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 2 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
3 <link rel="import" href="chrome://resources/html/polymer.html"> | 3 <link rel="import" href="chrome://resources/html/polymer.html"> |
4 <link rel="import" href="chrome://resources/polymer/v1_0/app-layout/app-drawer/a
pp-drawer.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/app-layout/app-drawer/a
pp-drawer.html"> |
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/iron-f
lex-layout.html"> |
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-header-panel/pape
r-header-panel.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-header-panel/pape
r-header-panel.html"> |
7 <link rel="import" href="/direction_delegate.html"> | 7 <link rel="import" href="/direction_delegate.html"> |
8 <link rel="import" href="/i18n_setup.html"> | 8 <link rel="import" href="/i18n_setup.html"> |
9 <link rel="import" href="/icons.html"> | 9 <link rel="import" href="/icons.html"> |
10 <link rel="import" href="/settings_main/settings_main.html"> | 10 <link rel="import" href="/settings_main/settings_main.html"> |
(...skipping 14 matching lines...) Expand all Loading... |
25 flex-direction: column; | 25 flex-direction: column; |
26 } | 26 } |
27 | 27 |
28 paper-header-panel { | 28 paper-header-panel { |
29 --paper-header-panel-shadow: { | 29 --paper-header-panel-shadow: { |
30 z-index: 3; | 30 z-index: 3; |
31 }; | 31 }; |
32 flex: 1; | 32 flex: 1; |
33 } | 33 } |
34 | 34 |
35 .heading { | |
36 -webkit-margin-start: 8px; | |
37 } | |
38 | |
39 .paper-header { | 35 .paper-header { |
40 -webkit-padding-start: 24px; | 36 -webkit-padding-start: 24px; |
41 align-items: center; | 37 align-items: center; |
42 border-bottom: var(--settings-separator-line); | 38 border-bottom: var(--settings-separator-line); |
43 display: flex; | 39 display: flex; |
44 font-size: 123.08%; /* go to 16px from 13px */ | 40 font-size: 123.08%; /* go to 16px from 13px */ |
45 min-height: 56px; | 41 min-height: 56px; |
46 } | 42 } |
47 | 43 |
48 .last { | 44 .last { |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 </app-drawer> | 97 </app-drawer> |
102 <paper-header-panel mode="waterfall"> | 98 <paper-header-panel mode="waterfall"> |
103 <settings-main prefs="{{prefs}}" | 99 <settings-main prefs="{{prefs}}" |
104 toolbar-spinner-active="{{toolbarSpinnerActive_}}" | 100 toolbar-spinner-active="{{toolbarSpinnerActive_}}" |
105 page-visibility="[[pageVisibility_]]"> | 101 page-visibility="[[pageVisibility_]]"> |
106 </settings-main> | 102 </settings-main> |
107 </paper-header-panel> | 103 </paper-header-panel> |
108 </template> | 104 </template> |
109 <script src="settings_ui.js"></script> | 105 <script src="settings_ui.js"></script> |
110 </dom-module> | 106 </dom-module> |
OLD | NEW |