| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2015 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2015 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 .tooltip { | 7 .tooltip { |
| 8 background: hsl(0, 0%, 95%); | 8 background: hsl(0, 0%, 95%); |
| 9 border-radius: 2px; | 9 border-radius: 2px; |
| 10 color: hsl(0, 0%, 20%); | 10 color: hsl(0, 0%, 20%); |
| 11 padding: 5px 8px; | 11 padding: 5px 8px; |
| 12 font-size: 11px; | |
| 13 line-height: 14px; | 12 line-height: 14px; |
| 14 display: flex; | 13 display: flex; |
| 15 align-items: center; | 14 align-items: center; |
| 16 -webkit-filter: drop-shadow(0 1px 2px hsla(0, 0%, 0%, 0.3)); | 15 -webkit-filter: drop-shadow(0 1px 2px hsla(0, 0%, 0%, 0.3)); |
| 17 border: 1px solid hsla(0, 0%, 0%, 0.1); | 16 border: 1px solid hsla(0, 0%, 0%, 0.1); |
| 18 background-clip: padding-box; | 17 background-clip: padding-box; |
| 19 box-sizing: border-box; | 18 box-sizing: border-box; |
| 20 position: absolute; | 19 position: absolute; |
| 21 visibility: hidden; | 20 visibility: hidden; |
| 22 transition: visibility 0s 100ms, opacity 150ms cubic-bezier(0, 0, .2, 1); | 21 transition: visibility 0s 100ms, opacity 150ms cubic-bezier(0, 0, .2, 1); |
| (...skipping 18 matching lines...) Expand all Loading... |
| 41 .tooltip.shown.instant { | 40 .tooltip.shown.instant { |
| 42 transition-delay: 0s; | 41 transition-delay: 0s; |
| 43 } | 42 } |
| 44 | 43 |
| 45 .tooltip-shortcut { | 44 .tooltip-shortcut { |
| 46 color: hsl(0, 0%, 45%); | 45 color: hsl(0, 0%, 45%); |
| 47 display: inline-block; | 46 display: inline-block; |
| 48 margin-left: 8px; | 47 margin-left: 8px; |
| 49 flex: 0 0 auto; | 48 flex: 0 0 auto; |
| 50 } | 49 } |
| OLD | NEW |