diff --git a/frontend/app/components/Session_/OverviewPanel/OverviewPanel.tsx b/frontend/app/components/Session_/OverviewPanel/OverviewPanel.tsx index 4cadd1fad..8c72dd51a 100644 --- a/frontend/app/components/Session_/OverviewPanel/OverviewPanel.tsx +++ b/frontend/app/components/Session_/OverviewPanel/OverviewPanel.tsx @@ -12,6 +12,7 @@ import VerticalPointerLine from './components/VerticalPointerLine'; import cn from 'classnames'; // import VerticalLine from './components/VerticalLine'; import OverviewPanelContainer from './components/OverviewPanelContainer'; +import { NoContent, Icon } from 'UI'; interface Props { resourceList: any[]; @@ -62,19 +63,25 @@ function OverviewPanel(props: Props) {
- - {selectedFeatures.map((feature: any, index: number) => ( -
- } - endTime={props.endTime} - /> -
- ))} + + + Select a debug option to visualize on timeline. +
}> + + {selectedFeatures.map((feature: any, index: number) => ( +
+ } + endTime={props.endTime} + /> +
+ ))} +
diff --git a/frontend/app/components/shared/XRayButton/xrayButton.module.css b/frontend/app/components/shared/XRayButton/xrayButton.module.css index 3b3f76ca4..f602c7a3f 100644 --- a/frontend/app/components/shared/XRayButton/xrayButton.module.css +++ b/frontend/app/components/shared/XRayButton/xrayButton.module.css @@ -8,6 +8,10 @@ &.default { color: white; background: linear-gradient(90deg, rgba(57, 78, 255, 0.87) 0%, rgba(62, 170, 175, 0.87) 100%); + &:hover { + /* color: $teal; */ + background: linear-gradient(90deg, rgba(57, 78, 255, 0.87) 100%, rgba(62, 170, 175, 0.87) 100%); + } } &.active {