Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,10 +140,6 @@ button::-moz-focus-inner {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.tooltip:after {
background-color: $extensions-primary;
}

.coming-soon-tooltip {
background-color: $data-primary !important;
}
Expand All @@ -158,6 +154,7 @@ button::-moz-focus-inner {
box-shadow: 0 0 .5rem hsla(0, 0%, 0%, .25) !important;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
z-index: $z-index-tooltip !important;
--tooltip-arrow-color: $extensions-primary;
}

$arrow-size: 0.5rem;
Expand Down Expand Up @@ -197,4 +194,4 @@ $arrow-rounding: 0.125rem;
margin-left: $arrow-inset !important;
top: $arrow-inset !important;
transform: rotate(-45deg) !important;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ class ActionMenu extends React.Component {
effect="solid"
id={this.mainTooltipId}
place={tooltipPlace || 'left'}
arrowColor="var(--tooltip-arrow-color)"
/>
<div className={styles.moreButtonsOuter}>
<div className={styles.moreButtons}>
Expand Down Expand Up @@ -179,6 +180,7 @@ class ActionMenu extends React.Component {
effect="solid"
id={tooltipId}
place={tooltipPlace || 'left'}
arrowColor="var(--tooltip-arrow-color)"
/>
</div>
);
Expand Down
Loading