| 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 [hidden] { | |
| 6 display: none !important; | |
| 7 } | |
| 8 | |
| 9 :host { | |
| 10 height: 100%; | |
| 11 } | |
| 12 | |
| 13 #panel { | |
| 14 --paper-header-panel-standard-container: { | |
| 15 display: flex; | |
| 16 }; | |
| 17 } | |
| 18 | |
| 19 #pages { | |
| 20 -webkit-margin-start: 30px; | |
| 21 overflow-y: auto; | |
| 22 padding-bottom: 30px; | |
| 23 width: 100%; | |
| 24 } | |
| 25 | |
| 26 extensions-item { | |
| 27 display: inline-block; | |
| 28 } | |
| 29 | |
| 30 .paper-header { | |
| 31 align-items: center; | |
| 32 background: rgb(63, 85, 102); | |
| 33 color: white; | |
| 34 display: flex; | |
| 35 height: 56px; | |
| 36 } | |
| 37 | |
| 38 .paper-header cr-search-field { | |
| 39 -webkit-padding-end: 10px; | |
| 40 } | |
| 41 | |
| 42 .paper-header h1 { | |
| 43 -webkit-margin-start: 24px; | |
| 44 flex: 1; | |
| 45 font-size: 107.7%; | |
| 46 font-weight: normal; | |
| 47 margin-bottom: 0; | |
| 48 margin-top: 0; | |
| 49 } | |
| OLD | NEW |