| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright 2017 The Chromium Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 |
| 7 .breakpoint-list { |
| 8 padding-bottom: 3px; |
| 9 } |
| 10 |
| 11 .breakpoint-list .editing.being-edited { |
| 12 overflow: hidden; |
| 13 white-space: nowrap; |
| 14 } |
| 15 |
| 16 .breakpoint-condition { |
| 17 display: block; |
| 18 margin-top: 4px; |
| 19 margin-bottom: 4px; |
| 20 margin-left: 23px; |
| 21 margin-right: 8px; |
| 22 } |
| 23 |
| 24 .breakpoint-condition-input { |
| 25 display: block; |
| 26 margin-left: 0; |
| 27 margin-right: 0; |
| 28 outline: none !important; |
| 29 border: 1px solid rgb(66%, 66%, 66%); |
| 30 } |
| 31 |
| 32 .breakpoint-entry { |
| 33 white-space: nowrap; |
| 34 padding: 2px 0; |
| 35 } |
| 36 |
| 37 .breakpoint-list .breakpoint-entry:hover { |
| 38 background-color: #eee; |
| 39 } |
| 40 |
| 41 .breakpoint-entry [is=dt-checkbox] { |
| 42 max-width: 100%; |
| 43 } |
| 44 |
| 45 .breakpoint-hit { |
| 46 background-color: rgb(255, 255, 194); |
| 47 } |
| 48 |
| 49 :host-context(.-theme-with-dark-background) .breakpoint-hit { |
| 50 background-color: hsl(46, 98%, 22%); |
| 51 color: #ccc; |
| 52 } |
| OLD | NEW |