blob: 697c674d31edb94903885257f16e4fdbb95dc926 [file] [log] [blame]
/*
* Copyright (c) 2015 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
.tooltip {
background: hsl(0deg 0% 95%);
border-radius: 2px;
color: hsl(0deg 0% 20%);
padding: 5px 8px;
line-height: 14px;
display: flex;
align-items: center;
filter: drop-shadow(0 1px 2px hsl(0deg 0% 0% / 30%));
border: 1px solid hsl(0deg 0% 0% / 10%);
background-clip: padding-box;
box-sizing: border-box;
position: absolute;
visibility: hidden;
transition: visibility 0s 100ms, opacity 150ms cubic-bezier(0, 0, 0.2, 1);
z-index: 20001;
top: 0;
left: 0;
opacity: 0%;
text-overflow: ellipsis;
overflow: hidden;
pointer-events: none;
}
.tooltip-breakword {
word-break: break-word;
}
.tooltip.shown {
visibility: visible;
transition-delay: 600ms;
opacity: 100%;
}
.tooltip.shown.instant {
transition-delay: 0s;
}
.tooltip-shortcut {
color: hsl(0deg 0% 45%);
display: inline-block;
margin-left: 8px;
flex: 0 0 auto;
}