Skip to content
This repository was archived by the owner on Apr 23, 2026. It is now read-only.

Commit b375ba1

Browse files
authored
Merge pull request #192 from raintank/tooltip-reversion
Reverted the tooltips back to bs-tooltip
2 parents cdc37b8 + e9f1d4e commit b375ba1

8 files changed

Lines changed: 20 additions & 20 deletions

File tree

dist/components/endpoint/partials/dnsForm.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ <h3 class="inline-header">Monitoring</h3>
5151
<div class="gf-form">
5252
<label class="gf-form-label width-9">Timeout (s)</label>
5353
<input class="gf-form-input max-width-5" type="number" ng-model="ctrl.checks['dns'].settings.timeout" min="1" max="10">
54-
<info-popover offset="0px -95px">The timeout, in seconds, is the amount of time our probe will wait for a response.</info-popover>
54+
<i class="fa fa-info-circle" bs-tooltip="'The timeout, in seconds, is the amount of time our probe will wait for a response.'" />
5555
</div>
5656
<div class="gf-form gf-form--v-stretch">
5757
<label class="gf-form-label width-9">DNS Servers</label>
5858
<textarea class="gf-form-input max-width-30" type="textarea" ng-model="ctrl.checks['dns'].settings.server"></textarea>
59-
<info-popover offset="0px -95px">Comma separated list of servers to try until a successful result is received.</info-popover>
59+
<i class="fa fa-info-circle" bs-tooltip="'Comma separated list of servers to try until a successful result is received.'" />
6060
</div>
6161
</div>
6262
<div class="gf-form-group">

dist/components/endpoint/partials/httpForm.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h3 class="inline-header">Monitoring</h3>
5555
<div class="gf-form">
5656
<label class="gf-form-label width-9">Timeout (s)</label>
5757
<input class="gf-form-input width-11" type="number" ng-model="ctrl.checks['http'].settings.timeout" min="1" max="10">
58-
<info-popover>The timeout, in seconds, is the amount of time our probe will wait for a response.</info-popover>
58+
<i class="fa fa-info-circle" bs-tooltip="'The timeout, in seconds, is the amount of time our probe will wait for a response.'" />
5959
</div>
6060
</div>
6161
</div>
@@ -76,14 +76,14 @@ <h3 class="inline-header">Monitoring</h3>
7676
<div class="gf-form">
7777
<label class="gf-form-label width-9">Download Limit</label>
7878
<input class="gf-form-input width-8" type="text" ng-model="ctrl.checks['http'].settings.downloadLimit">
79-
<info-popover>The maximum amount of data the probe will attempt to download (in bytes, max {{ctrl.formatSize(ctrl.quotas.downloadLimit.limit || 102400)}}).</info-popover>
79+
<i class="fa fa-info-circle" bs-tooltip="'The maximum amount of data the probe will attempt to download (in bytes, max {{ctrl.formatSize(ctrl.quotas.downloadLimit.limit || 102400)}}).'" />
8080
</div>
8181
</div>
8282
<div class="gf-form-inline">
8383
<div class="gf-form">
8484
<label class="gf-form-label width-9">Content Match</label>
8585
<input class="gf-form-input width-25" type="text" ng-model="ctrl.checks['http'].settings.expectRegex">
86-
<info-popover>Content Match checks to see if your string occurs in the first 100KB of the page download. Pro-tip: Regex is supported.</info-popover>
86+
<i class="fa fa-info-circle" bs-tooltip="'Content Match checks to see if your string occurs in the first 100KB of the page download. Pro-tip: Regex is supported.'" />
8787
</div>
8888
</div>
8989
<div class="gf-form gf-form--v-stretch">

dist/components/endpoint/partials/httpsForm.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h3 class="inline-header">Monitoring</h3>
5555
<div class="gf-form">
5656
<label class="gf-form-label width-9">Timeout (s)</label>
5757
<input class="gf-form-input width-11" type="number" ng-model="ctrl.checks['https'].settings.timeout" min="1" max="10">
58-
<info-popover mode="right-absolute">The timeout, in seconds, is the amount of time our probe will wait for a response.</info-popover>
58+
<i class="fa fa-info-circle" bs-tooltip="'The timeout, in seconds, is the amount of time our probe will wait for a response.'" />
5959
</div>
6060
</div>
6161
</div>
@@ -76,14 +76,14 @@ <h3 class="inline-header">Monitoring</h3>
7676
<div class="gf-form">
7777
<label class="gf-form-label width-9">Download Limit</label>
7878
<input class="gf-form-input width-8" type="text" ng-model="ctrl.checks['https'].settings.downloadLimit">
79-
<info-popover>The maximum amount of data the probe will attempt to download (in bytes, max {{ctrl.formatSize(ctrl.quotas.downloadLimit.limit || 102400)}}).</info-popover>
79+
<i class="fa fa-info-circle" bs-tooltip="'The maximum amount of data the probe will attempt to download (in bytes, max {{ctrl.formatSize(ctrl.quotas.downloadLimit.limit || 102400)}}).'" />
8080
</div>
8181
</div>
8282
<div class="gf-form-inline">
8383
<div class="gf-form">
8484
<label class="gf-form-label width-9">Content Match</label>
85-
<input class="gf-form-input width-16" type="text" ng-model="ctrl.checks['https'].settings.expectRegex">
86-
<info-popover>Content Match checks to see if your string occurs in the first 100KB of the page download. Pro-tip: Regex is supported.</info-popover>
85+
<input class="gf-form-input width-25" type="text" ng-model="ctrl.checks['https'].settings.expectRegex">
86+
<i class="fa fa-info-circle" bs-tooltip="'Content Match checks to see if your string occurs in the first 100KB of the page download. Pro-tip: Regex is supported.'" />
8787
</div>
8888
</div>
8989
<div class="gf-form gf-form--v-stretch">

dist/components/endpoint/partials/pingForm.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h3 class="inline-header">Monitoring</h3>
4949
<div class="gf-form">
5050
<label class="gf-form-label width-9">Timeout (s)</label>
5151
<input class="gf-form-input max-width-5" type="number" ng-model="ctrl.checks['ping'].settings.timeout" min="1" max="10">
52-
<info-popover offset="0px -95px">The timeout, in seconds, is the amount of time our probe will wait for a response.</info-popover>
52+
<i class="fa fa-info-circle" bs-tooltip="'The timeout, in seconds, is the amount of time our probe will wait for a response.'" />
5353
</div>
5454
</div>
5555
<div class="gf-form-group" ng-show="ctrl.checks['ping'].enabled">

src/components/endpoint/partials/dnsForm.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ <h3 class="inline-header">Monitoring</h3>
5151
<div class="gf-form">
5252
<label class="gf-form-label width-9">Timeout (s)</label>
5353
<input class="gf-form-input max-width-5" type="number" ng-model="ctrl.checks['dns'].settings.timeout" min="1" max="10">
54-
<info-popover offset="0px -95px">The timeout, in seconds, is the amount of time our probe will wait for a response.</info-popover>
54+
<i class="fa fa-info-circle" bs-tooltip="'The timeout, in seconds, is the amount of time our probe will wait for a response.'" />
5555
</div>
5656
<div class="gf-form gf-form--v-stretch">
5757
<label class="gf-form-label width-9">DNS Servers</label>
5858
<textarea class="gf-form-input max-width-30" type="textarea" ng-model="ctrl.checks['dns'].settings.server"></textarea>
59-
<info-popover offset="0px -95px">Comma separated list of servers to try until a successful result is received.</info-popover>
59+
<i class="fa fa-info-circle" bs-tooltip="'Comma separated list of servers to try until a successful result is received.'" />
6060
</div>
6161
</div>
6262
<div class="gf-form-group">

src/components/endpoint/partials/httpForm.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h3 class="inline-header">Monitoring</h3>
5555
<div class="gf-form">
5656
<label class="gf-form-label width-9">Timeout (s)</label>
5757
<input class="gf-form-input width-11" type="number" ng-model="ctrl.checks['http'].settings.timeout" min="1" max="10">
58-
<info-popover>The timeout, in seconds, is the amount of time our probe will wait for a response.</info-popover>
58+
<i class="fa fa-info-circle" bs-tooltip="'The timeout, in seconds, is the amount of time our probe will wait for a response.'" />
5959
</div>
6060
</div>
6161
</div>
@@ -76,14 +76,14 @@ <h3 class="inline-header">Monitoring</h3>
7676
<div class="gf-form">
7777
<label class="gf-form-label width-9">Download Limit</label>
7878
<input class="gf-form-input width-8" type="text" ng-model="ctrl.checks['http'].settings.downloadLimit">
79-
<info-popover>The maximum amount of data the probe will attempt to download (in bytes, max {{ctrl.formatSize(ctrl.quotas.downloadLimit.limit || 102400)}}).</info-popover>
79+
<i class="fa fa-info-circle" bs-tooltip="'The maximum amount of data the probe will attempt to download (in bytes, max {{ctrl.formatSize(ctrl.quotas.downloadLimit.limit || 102400)}}).'" />
8080
</div>
8181
</div>
8282
<div class="gf-form-inline">
8383
<div class="gf-form">
8484
<label class="gf-form-label width-9">Content Match</label>
8585
<input class="gf-form-input width-25" type="text" ng-model="ctrl.checks['http'].settings.expectRegex">
86-
<info-popover>Content Match checks to see if your string occurs in the first 100KB of the page download. Pro-tip: Regex is supported.</info-popover>
86+
<i class="fa fa-info-circle" bs-tooltip="'Content Match checks to see if your string occurs in the first 100KB of the page download. Pro-tip: Regex is supported.'" />
8787
</div>
8888
</div>
8989
<div class="gf-form gf-form--v-stretch">

src/components/endpoint/partials/httpsForm.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ <h3 class="inline-header">Monitoring</h3>
5555
<div class="gf-form">
5656
<label class="gf-form-label width-9">Timeout (s)</label>
5757
<input class="gf-form-input width-11" type="number" ng-model="ctrl.checks['https'].settings.timeout" min="1" max="10">
58-
<info-popover mode="right-absolute">The timeout, in seconds, is the amount of time our probe will wait for a response.</info-popover>
58+
<i class="fa fa-info-circle" bs-tooltip="'The timeout, in seconds, is the amount of time our probe will wait for a response.'" />
5959
</div>
6060
</div>
6161
</div>
@@ -76,14 +76,14 @@ <h3 class="inline-header">Monitoring</h3>
7676
<div class="gf-form">
7777
<label class="gf-form-label width-9">Download Limit</label>
7878
<input class="gf-form-input width-8" type="text" ng-model="ctrl.checks['https'].settings.downloadLimit">
79-
<info-popover mode="right-absolute">The maximum amount of data the probe will attempt to download (in bytes, max {{ctrl.formatSize(ctrl.quotas.downloadLimit.limit || 102400)}}).</info-popover>
79+
<i class="fa fa-info-circle" bs-tooltip="'The maximum amount of data the probe will attempt to download (in bytes, max {{ctrl.formatSize(ctrl.quotas.downloadLimit.limit || 102400)}}).'" />
8080
</div>
8181
</div>
8282
<div class="gf-form-inline">
8383
<div class="gf-form">
8484
<label class="gf-form-label width-9">Content Match</label>
85-
<input class="gf-form-input width-16" type="text" ng-model="ctrl.checks['https'].settings.expectRegex">
86-
<info-popover mode="right-absolute">Content Match checks to see if your string occurs in the first 100KB of the page download. Pro-tip: Regex is supported.</info-popover>
85+
<input class="gf-form-input width-25" type="text" ng-model="ctrl.checks['https'].settings.expectRegex">
86+
<i class="fa fa-info-circle" bs-tooltip="'Content Match checks to see if your string occurs in the first 100KB of the page download. Pro-tip: Regex is supported.'" />
8787
</div>
8888
</div>
8989
<div class="gf-form gf-form--v-stretch">

src/components/endpoint/partials/pingForm.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ <h3 class="inline-header">Monitoring</h3>
4949
<div class="gf-form">
5050
<label class="gf-form-label width-9">Timeout (s)</label>
5151
<input class="gf-form-input max-width-5" type="number" ng-model="ctrl.checks['ping'].settings.timeout" min="1" max="10">
52-
<info-popover offset="0px -95px">The timeout, in seconds, is the amount of time our probe will wait for a response.</info-popover>
52+
<i class="fa fa-info-circle" bs-tooltip="'The timeout, in seconds, is the amount of time our probe will wait for a response.'" />
5353
</div>
5454
</div>
5555
<div class="gf-form-group" ng-show="ctrl.checks['ping'].enabled">

0 commit comments

Comments
 (0)