Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: chrome/browser/resources/settings/settings_ui/settings_ui.html

Issue 1939373002: MD Settings: make the background color of the collapsed nav drawer white (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698