mirror of
https://github.com/nasa/openmct.git
synced 2024-12-24 23:36:41 +00:00
Closes #7936
- Remove `c-menu` from Tooltip. - Tooltip component tweaks.
This commit is contained in:
parent
638b03c17d
commit
8c72e4a062
@ -22,7 +22,7 @@ at runtime from the About dialog for additional information.
|
|||||||
<template>
|
<template>
|
||||||
<div
|
<div
|
||||||
ref="tooltip-wrapper"
|
ref="tooltip-wrapper"
|
||||||
class="c-menu c-tooltip-wrapper"
|
class="c-tooltip-wrapper"
|
||||||
:class="cssClasses"
|
:class="cssClasses"
|
||||||
:style="toolTipLocationStyle"
|
:style="toolTipLocationStyle"
|
||||||
role="tooltip"
|
role="tooltip"
|
||||||
|
@ -1,10 +1,13 @@
|
|||||||
.c-tooltip-wrapper {
|
.c-tooltip-wrapper {
|
||||||
|
@include menuOuter();
|
||||||
max-width: 200px;
|
max-width: 200px;
|
||||||
height: auto;
|
height: auto;
|
||||||
width: auto;
|
width: auto;
|
||||||
padding: $interiorMargin;
|
padding: $interiorMargin $interiorMarginLg;
|
||||||
overflow-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
|
position: absolute;
|
||||||
|
z-index: 100;
|
||||||
}
|
}
|
||||||
|
|
||||||
.c-tooltip {
|
.c-tooltip {
|
||||||
|
Loading…
Reference in New Issue
Block a user