| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 :host { | 7 :host { |
| 8 position: absolute !important; | 8 position: absolute !important; |
| 9 top: 0; | 9 top: 0; |
| 10 bottom: 0; | 10 bottom: 0; |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 .widget { | 26 .widget { |
| 27 display: flex; | 27 display: flex; |
| 28 background-color: transparent; | 28 background-color: transparent; |
| 29 pointer-events: auto; | 29 pointer-events: auto; |
| 30 flex: none; | 30 flex: none; |
| 31 } | 31 } |
| 32 | 32 |
| 33 .arrow-top { | 33 .arrow-top { |
| 34 margin-top: -19px; | 34 margin-top: -19px; |
| 35 margin-left: -10px; | 35 margin-left: -9px; |
| 36 } | 36 } |
| 37 | 37 |
| 38 .arrow-bottom { | 38 .arrow-bottom { |
| 39 margin-left: -10px; | 39 margin-left: -9px; |
| 40 } | 40 } |
| 41 | 41 |
| 42 .arrow-left { | 42 .arrow-left { |
| 43 margin-left: -19px; | 43 margin-left: -19px; |
| 44 margin-top: -10px; | 44 margin-top: -9px; |
| 45 } | 45 } |
| 46 | 46 |
| 47 .arrow-right { | 47 .arrow-right { |
| 48 margin-top: -10px; | 48 margin-top: -9px; |
| 49 } | 49 } |
| 50 | 50 |
| 51 .arrow-none { | 51 .arrow-none { |
| 52 display: none; | 52 display: none; |
| 53 } | 53 } |
| 54 | 54 |
| 55 :host-context(.-theme-with-dark-background) .arrow { | 55 :host-context(.-theme-with-dark-background) .arrow { |
| 56 -webkit-filter: invert(80%); | 56 -webkit-filter: invert(80%); |
| 57 } | 57 } |
| OLD | NEW |