| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright 2016 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 :host { |
| 8 white-space: nowrap; |
| 9 } |
| 10 |
| 11 .inline-breakpoint { |
| 12 position: relative; |
| 13 margin-left: 1px; |
| 14 margin-right: 2px; |
| 15 width: 10px; |
| 16 height: 10px; |
| 17 top: 1px; |
| 18 display: inline-block; |
| 19 -webkit-user-select: none; |
| 20 line-height: 10px; |
| 21 -webkit-clip-path: polygon(0% 0%, 60% 0%, 100% 50%, 60% 100%, 0% 100%); |
| 22 cursor: default; |
| 23 border-color: #4073f4; |
| 24 background-color: #698cfe; |
| 25 } |
| 26 |
| 27 .inline-condition-breakpoint { |
| 28 background-color: #ef9d0d; |
| 29 border-color: #a36c01; |
| 30 } |
| 31 |
| 32 :not(.inline-condition-breakpoint).breakpoint-disabled { |
| 33 border-color: #4073f4; |
| 34 background-color: #d1dafa; |
| 35 } |
| 36 |
| 37 .inline-condition-breakpoint.breakpoint-disabled { |
| 38 border-color: #a36c01; |
| 39 background-color: hsla(39, 87%, 90%, 1); |
| 40 } |
| OLD | NEW |