diff --git a/packages/grafana-ui/src/components/TimePicker/TimePicker.tsx b/packages/grafana-ui/src/components/TimePicker/TimePicker.tsx index ebea926d9dc..5e16255a545 100644 --- a/packages/grafana-ui/src/components/TimePicker/TimePicker.tsx +++ b/packages/grafana-ui/src/components/TimePicker/TimePicker.tsx @@ -69,19 +69,6 @@ const getStyles = stylesFactory((theme: GrafanaTheme) => { font-size: ${theme.typography.size.md}; } `, - syncedTimePicker: css` - label: syncedTimePicker; - border-color: ${theme.colors.orangeDark}; - background-image: none; - background-color: transparent; - color: ${theme.colors.orangeDark}; - &:focus, - :hover { - color: ${theme.colors.orangeDark}; - background-image: none; - background-color: transparent; - } - `, noRightBorderStyle: css` label: noRightBorderStyle; border-right: 0; @@ -160,7 +147,7 @@ export class UnthemedTimePicker extends PureComponent { const timePickerIconClass = cx('fa fa-clock-o fa-fw', { ['icon-brand-gradient']: syncedTimePicker }); const timePickerButtonClass = cx('btn navbar-button navbar-button--tight', { [`btn--radius-right-0 ${styles.noRightBorderStyle}`]: !!timeSyncButton, - [`explore-active-button-glow ${styles.syncedTimePicker}`]: syncedTimePicker, + [`explore-active-button`]: syncedTimePicker, }); return ( diff --git a/public/app/features/explore/LiveTailButton.tsx b/public/app/features/explore/LiveTailButton.tsx index 80aeeb26820..0528a6e4b10 100644 --- a/public/app/features/explore/LiveTailButton.tsx +++ b/public/app/features/explore/LiveTailButton.tsx @@ -124,7 +124,7 @@ export function LiveTailButton(props: LiveTailButtonProps) {