Chromium Code Reviews| 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/paper-drawer-panel/pape r-drawer-panel.html"> | 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-drawer-panel/pape r-drawer-panel.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-header-panel/pape r-header-panel.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-header-panel/pape r-header-panel.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> | 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> |
| 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-too lbar.html"> | 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-toolbar/paper-too lbar.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe s/iron-flex-layout.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> |
| 9 <link rel="import" href="chrome://md-settings/direction_delegate.html"> | 9 <link rel="import" href="chrome://md-settings/direction_delegate.html"> |
| 10 <link rel="import" href="chrome://md-settings/i18n_setup.html"> | 10 <link rel="import" href="chrome://md-settings/i18n_setup.html"> |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 28 @apply(--layout-center); | 28 @apply(--layout-center); |
| 29 --paper-drawer-panel-left-drawer-container: { | 29 --paper-drawer-panel-left-drawer-container: { |
| 30 background-color: var(--settings-background-color); | 30 background-color: var(--settings-background-color); |
| 31 }; | 31 }; |
| 32 --paper-drawer-panel-right-drawer-container: { | 32 --paper-drawer-panel-right-drawer-container: { |
| 33 background-color: var(--settings-background-color); | 33 background-color: var(--settings-background-color); |
| 34 }; | 34 }; |
| 35 position: relative; | 35 position: relative; |
| 36 } | 36 } |
| 37 | 37 |
| 38 paper-drawer-panel[narrow] { | |
| 39 --paper-drawer-panel-left-drawer-container: { | |
| 40 background-color: white; | |
|
dschuyler
2016/05/03 00:36:12
optional: maybe
background-color: var(--settings-
Dan Beam
2016/05/03 00:37:10
we shouldn't be adding variables if they're only u
| |
| 41 }; | |
| 42 } | |
| 43 | |
| 38 paper-icon-button { | 44 paper-icon-button { |
| 39 --iron-icon-fill-color: var(--settings-title-bar-color); | 45 --iron-icon-fill-color: var(--settings-title-bar-color); |
| 40 } | 46 } |
| 41 | 47 |
| 42 paper-icon-button[suffix] { | 48 paper-icon-button[suffix] { |
| 43 --iron-icon-fill-color: var(--settings-title-search-color); | 49 --iron-icon-fill-color: var(--settings-title-search-color); |
| 44 height: 32px; /* After padding, the icon size is 16px. */ | 50 height: 32px; /* After padding, the icon size is 16px. */ |
| 45 width: 32px; | 51 width: 32px; |
| 46 } | 52 } |
| 47 | 53 |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 144 </paper-input> | 150 </paper-input> |
| 145 </div> | 151 </div> |
| 146 </paper-toolbar> | 152 </paper-toolbar> |
| 147 <settings-main prefs="{{prefs}}" current-route="{{currentRoute}}"> | 153 <settings-main prefs="{{prefs}}" current-route="{{currentRoute}}"> |
| 148 </paper-icon-button> | 154 </paper-icon-button> |
| 149 </paper-header-panel> | 155 </paper-header-panel> |
| 150 </paper-drawer-panel> | 156 </paper-drawer-panel> |
| 151 </template> | 157 </template> |
| 152 <script src="settings_ui.js"></script> | 158 <script src="settings_ui.js"></script> |
| 153 </dom-module> | 159 </dom-module> |
| OLD | NEW |