OLD | NEW |
| (Empty) |
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 | |
3 * found in the LICENSE file. */ | |
4 | |
5 :host { | |
6 @apply(--layout-vertical); | |
7 @apply(--layout-fit); | |
8 -webkit-user-select: none; | |
9 background-color: var(--paper-blue-grey-50); | |
10 } | |
11 | |
12 paper-toolbar { | |
13 @apply(--shadow-elevation-4dp); | |
14 background-color: rgb(52, 73, 94); | |
15 height: 56px; | |
16 position: relative; | |
17 z-index: 10; | |
18 } | |
19 | |
20 paper-drawer-panel { | |
21 @apply(--layout-center); | |
22 --paper-drawer-panel-left-drawer-container: { | |
23 background-color: rgb(236, 239, 241); | |
24 margin-top: 8px; | |
25 }; | |
26 position: relative; | |
27 } | |
28 | |
29 settings-main paper-icon-button { | |
30 z-index: 10; | |
31 } | |
OLD | NEW |