09c29219b4
* Refactor editor css, fix editor button highlight - Avoid using webview.css - Move more buttons css into button_mixins * Fix DropdownItem appearance * Fix the visuals of tags * Make dropdown font slightly smaller * Give SelectOption a background color * Move some css from deck-options-base to CardStateCustomizer * Avoid using core.scss for CardStats * Avoid using sass/core in congrats package * Inline core.scss into webview.scss * Include fusion-vars for base.scss * need to keep core.scss around for now (dae)
26 lines
668 B
SCSS
26 lines
668 B
SCSS
/* Copyright: Ankitects Pty Ltd and contributors
|
|
* License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html */
|
|
|
|
$tooltip-padding-y: 0.45rem;
|
|
$tooltip-padding-x: 0.65rem;
|
|
$tooltip-max-width: 300px;
|
|
|
|
@import "sass/bootstrap/scss/tooltip";
|
|
|
|
.tooltip-inner {
|
|
text-align: start;
|
|
|
|
// marked transpiles tooltips into multiple paragraphs
|
|
// where trailing <p>s cause a bottom margin
|
|
> p:last-child {
|
|
display: inline;
|
|
}
|
|
|
|
// the default code color in tooltips is difficult to read; we'll probably
|
|
// want to add more of our own styling in the future
|
|
code {
|
|
color: #ffaaaa;
|
|
direction: inherit;
|
|
}
|
|
}
|