| 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 margin-top: 30px; | |
| 7 white-space: nowrap; | |
| 8 } | |
| 9 | |
| 10 #section-menu, | |
| 11 .section-item { | |
| 12 -webkit-margin-start: 20px; | |
| 13 } | |
| 14 | |
| 15 #section-menu { | |
| 16 --paper-menu-background-color: transparent; | |
| 17 --paper-menu-selected-item: { | |
| 18 background-color: transparent; | |
| 19 color: rgb(66, 133, 244); | |
| 20 font-weight: normal; | |
| 21 } | |
| 22 padding: 0; | |
| 23 } | |
| 24 | |
| 25 #more-extensions { | |
| 26 display: flex; | |
| 27 text-decoration: none; | |
| 28 } | |
| 29 | |
| 30 paper-item { | |
| 31 color: #5A5A5A; | |
| 32 cursor: pointer; | |
| 33 font-size: 88%; | |
| 34 padding: 0; | |
| 35 } | |
| 36 | |
| 37 .section-menu-item iron-icon, | |
| 38 .section-item iron-icon { | |
| 39 -webkit-margin-end: 15px; | |
| 40 } | |
| 41 | |
| 42 #developer-mode-checkbox { | |
| 43 --paper-checkbox-checked-color: rgb(66, 133, 244); | |
| 44 --primary-text-color: #5A5A5A; | |
| 45 } | |
| 46 | |
| 47 #developer-mode { | |
| 48 display: flex; | |
| 49 } | |
| 50 | |
| 51 #developer-mode span { | |
| 52 flex-grow: 1; | |
| 53 } | |
| 54 | |
| 55 #devtools-controls { | |
| 56 border-top: 1px solid grey; | |
| 57 } | |
| OLD | NEW |