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

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

Issue 1690463002: [MD settings] change color values to --paper-variable colors (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
OLDNEW
1 /* Copyright 2015 The Chromium Authors. All rights reserved. 1 /* Copyright 2015 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 :host { 5 :host {
6 @apply(--layout-vertical); 6 @apply(--layout-vertical);
7 @apply(--layout-fit); 7 @apply(--layout-fit);
8 @apply(--paper-font-body1); 8 @apply(--paper-font-body1);
9 -webkit-user-select: none; 9 -webkit-user-select: none;
10 background-color: #eceff1; 10 background-color: var(--paper-blue-grey-50);
11 } 11 }
12 12
13 paper-toolbar { 13 paper-toolbar {
14 @apply(--shadow-elevation-4dp); 14 @apply(--shadow-elevation-4dp);
15 background-color: rgb(52, 73, 94); 15 background-color: rgb(52, 73, 94);
16 height: 56px; 16 height: 56px;
17 position: relative; 17 position: relative;
18 z-index: 10; 18 z-index: 10;
19 } 19 }
20 20
21 paper-drawer-panel { 21 paper-drawer-panel {
22 @apply(--layout-center); 22 @apply(--layout-center);
23 --paper-drawer-panel-left-drawer-container: { 23 --paper-drawer-panel-left-drawer-container: {
24 background-color: rgb(236, 239, 241); 24 background-color: rgb(236, 239, 241);
25 margin-top: 8px; 25 margin-top: 8px;
26 }; 26 };
27 position: relative; 27 position: relative;
28 } 28 }
29 29
30 settings-main paper-icon-button { 30 settings-main paper-icon-button {
31 z-index: 10; 31 z-index: 10;
32 } 32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698