| 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-entry { | 
|  | 8     padding: 3px 8px 3px 8px; | 
|  | 9     min-height: 18px; | 
|  | 10     line-height: 15px; | 
|  | 11     border-top: 1px solid #efefef; | 
|  | 12 } | 
|  | 13 | 
|  | 14 .breakpoint-entry [is=dt-checkbox] { | 
|  | 15     max-width: 100%; | 
|  | 16     white-space: nowrap; | 
|  | 17 } | 
|  | 18 | 
|  | 19 :not(.breakpoints-list-deactivated) > .breakpoint-entry:hover { | 
|  | 20     background-color: #eee; | 
|  | 21 } | 
|  | 22 | 
|  | 23 .breakpoint-entry > .source-text { | 
|  | 24     cursor: pointer; | 
|  | 25     text-overflow: ellipsis; | 
|  | 26     overflow: hidden; | 
|  | 27     white-space: nowrap; | 
|  | 28 } | 
|  | 29 | 
|  | 30 .breakpoints-list-deactivated { | 
|  | 31     background-color: #eee; | 
|  | 32     opacity: 0.3; | 
|  | 33 } | 
|  | 34 | 
|  | 35 .breakpoint-hit { | 
|  | 36     background-color: rgb(255, 255, 194); | 
|  | 37 } | 
|  | 38 | 
|  | 39 :host-context(.-theme-with-dark-background) .breakpoint-hit { | 
|  | 40     background-color: hsl(46, 98%, 22%); | 
|  | 41     color: #ccc; | 
|  | 42 } | 
| OLD | NEW | 
|---|