| 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 .dom-breakpoint > div { | 
|  | 12     overflow: hidden; | 
|  | 13     text-overflow: ellipsis; | 
|  | 14 } | 
|  | 15 | 
|  | 16 .breakpoint-entry { | 
|  | 17     display: flex; | 
|  | 18     white-space: nowrap; | 
|  | 19     text-overflow: ellipsis; | 
|  | 20     overflow: hidden; | 
|  | 21     padding: 2px 0; | 
|  | 22 } | 
|  | 23 | 
|  | 24 .breakpoint-list .breakpoint-entry:hover { | 
|  | 25     background-color: #eee; | 
|  | 26 } | 
|  | 27 | 
|  | 28 .breakpoint-hit { | 
|  | 29     background-color: rgb(255, 255, 194); | 
|  | 30 } | 
|  | 31 | 
|  | 32 :host-context(.-theme-with-dark-background) .breakpoint-hit { | 
|  | 33     background-color: hsl(46, 98%, 22%); | 
|  | 34     color: #ccc; | 
|  | 35 } | 
| OLD | NEW | 
|---|