mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:30:57 +08:00
f736748853
* FIX: Make the arrow and tooltip background the same color * FIX: move position arrow
32 lines
595 B
SCSS
32 lines
595 B
SCSS
$d-popover-background: var(--secondary);
|
|
$d-popover-border: var(--primary-low);
|
|
|
|
.tippy-box {
|
|
color: var(--primary);
|
|
background: $d-popover-background;
|
|
border: 1px solid var(--primary-low);
|
|
box-shadow: var(--shadow-menu-panel);
|
|
|
|
> .tippy-svg-arrow {
|
|
color: $d-popover-background;
|
|
}
|
|
}
|
|
|
|
.tippy-box[data-placement^="top"] .tippy-svg-arrow > svg {
|
|
top: 12px;
|
|
}
|
|
.tippy-box[data-placement^="bottom"] .tippy-svg-arrow > svg {
|
|
top: -10px;
|
|
}
|
|
|
|
#tippy-rounded-arrow {
|
|
.svg-arrow {
|
|
fill: $d-popover-border;
|
|
}
|
|
}
|
|
|
|
[data-tooltip] > *,
|
|
[data-popover] > * {
|
|
pointer-events: none;
|
|
}
|