Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit fb74e2b

Browse files
committed
fix for summary tooltip layering problem
Fixes #872
1 parent b18b9f1 commit fb74e2b

File tree

1 file changed

+6
-1
lines changed
  • app/plugins/modules/activation-visualizations/web/css

1 file changed

+6
-1
lines changed

app/plugins/modules/activation-visualizations/web/css/table.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,12 @@
272272
/*.activation-viz-plugin .data-table td.cell-stats .stat-median-dot:hover, .activation-viz-plugin.show-outliers .outlier-dot:hover {
273273
background: #0A8EF6;
274274
}*/
275-
.activation-viz-plugin .data-table td.cell-stats:hover .stat-median-dot, .activation-viz-plugin .data-table td.cell-stats:hover .stat-indicator, .activation-viz-plugin .data-table td.cell-stats .stat-median-dot:hover, .activation-viz-plugin td.cell-stats:hover .outlier-dot, .activation-viz-plugin .data-table td.cell-stats .stat-bar:hover {
275+
.activation-viz-plugin .data-table td.cell-stats:hover .stat-median-dot,
276+
.activation-viz-plugin .data-table td.cell-stats .stat-median-dot:hover {
277+
cursor: pointer;
278+
z-index: 3 !important;
279+
}
280+
.activation-viz-plugin .data-table td.cell-stats:hover .stat-indicator, .activation-viz-plugin td.cell-stats:hover .outlier-dot, .activation-viz-plugin .data-table td.cell-stats .stat-bar:hover {
276281
cursor: pointer;
277282
z-index: 2 !important; /* see z-index: 1 above; make sure the tooltip floats above the range indicators */
278283
}

0 commit comments

Comments
 (0)