| OLD | NEW |
| 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 } |
| OLD | NEW |