diff --git a/ui/src/dashboards/components/GraphOptionsTimeFormat.tsx b/ui/src/dashboards/components/GraphOptionsTimeFormat.tsx index 5db309afc9..59a643cc7b 100644 --- a/ui/src/dashboards/components/GraphOptionsTimeFormat.tsx +++ b/ui/src/dashboards/components/GraphOptionsTimeFormat.tsx @@ -52,7 +52,7 @@ class GraphOptionsTimeFormat extends PureComponent { public render() { const {format, customFormat} = this.state const tipUrl = 'http://momentjs.com/docs/#/parsing/string-format/' - const tipContent = `For information on formatting, see ${tipUrl}` + const tipContent = `For information on formatting, see
${tipUrl}` const formatOption = FORMAT_OPTIONS.find(op => op.text === format) const showCustom = !formatOption || customFormat diff --git a/ui/src/style/components/react-tooltips.scss b/ui/src/style/components/react-tooltips.scss index a0ff355518..03066235ac 100644 --- a/ui/src/style/components/react-tooltips.scss +++ b/ui/src/style/components/react-tooltips.scss @@ -128,3 +128,7 @@ $qmark-tooltip-size: 15px; background-color: $c-pool; } } + +a > .question-mark-tooltip:hover { + cursor: pointer; +}