notion-enhancer/api/components/tooltip.css

29 lines
679 B
CSS

/*
* notion-enhancer core: api
* (c) 2021 dragonwocky <thedragonring.bod@gmail.com> (https://dragonwocky.me/)
* (https://notion-enhancer.github.io/) under the MIT license
*/
#enhancer--tooltip {
background: var(--theme--ui_tooltip);
border-radius: 3px;
box-shadow: var(--theme--ui_shadow) 0px 1px 4px;
color: var(--theme--ui_tooltip-description);
display: none;
font-size: 12px;
font-weight: 500;
line-height: 1.4;
max-width: 20rem;
overflow: hidden;
padding: 4px 8px;
position: absolute;
}
#enhancer--tooltip p {
margin: 0.25rem 0;
}
#enhancer--tooltip b,
#enhancer--tooltip strong {
font-weight: 500;
color: var(--theme--ui_tooltip-title);
}