diff --git a/ui/src/kapacitor/components/RuleGraph.js b/ui/src/kapacitor/components/RuleGraph.js
index 136c196225..464897b212 100644
--- a/ui/src/kapacitor/components/RuleGraph.js
+++ b/ui/src/kapacitor/components/RuleGraph.js
@@ -34,7 +34,7 @@ export const RuleGraph = React.createClass({
if (!queryText) {
return (
Send Alert where
-
{query.fields.length ? query.fields[0].field : 'Select a Metric'}
+
{query.fields.length ? query.fields[0].field : 'Select a Time-Series'}
is
this.valueInput = r} defaultValue={value} onKeyUp={this.handleInputChange} />
diff --git a/ui/src/style/theme/bootstrap-theme.scss b/ui/src/style/theme/bootstrap-theme.scss
index 7df064cc43..8a77f88416 100755
--- a/ui/src/style/theme/bootstrap-theme.scss
+++ b/ui/src/style/theme/bootstrap-theme.scss
@@ -454,17 +454,17 @@ a:active.link-warning {
}
::-moz-selection {
color: #fff;
- background-color: #757888;
+ background-color: #22ADF6;
/* WebKit/Blink Browsers */
}
::selection {
color: #fff;
- background-color: #757888;
+ background-color: #22ADF6;
/* WebKit/Blink Browsers */
}
::-moz-selection {
color: #fff;
- background-color: #757888;
+ background-color: #22ADF6;
/* Gecko Browsers */
}
.btn {
diff --git a/ui/src/style/theme/theme-dark.scss b/ui/src/style/theme/theme-dark.scss
index e1e00fa3f7..bfd042d7b9 100644
--- a/ui/src/style/theme/theme-dark.scss
+++ b/ui/src/style/theme/theme-dark.scss
@@ -105,20 +105,6 @@
border-color: $g5-pepper !important;
color: $g15-platinum !important;
- &::-webkit-input-placeholder { color: $g10-wolf; }
- &::-moz-placeholder { color: $g10-wolf; }
- &:-ms-input-placeholder { color: $g10-wolf; }
- &:-moz-placeholder { color: $g10-wolf; }
-
- &::selection {
- background-color: $c-laser;
- color: $g20-white;
- }
- &::-moz-selection {
- background-color: $c-laser;
- color: $g20-white;
- }
-
&:hover {
border-color: $g6-smoke !important;
}
@@ -143,20 +129,25 @@
.form-group-submit {
margin-top: 30px;
}
-textarea {
+
+/* Placeholder Text */
+.form-control,
+textarea,
+input {
&::-webkit-input-placeholder { color: $g10-wolf; }
&::-moz-placeholder { color: $g10-wolf; }
&:-ms-input-placeholder { color: $g10-wolf; }
&:-moz-placeholder { color: $g10-wolf; }
+}
- &::selection {
- background-color: $c-laser;
- color: $g20-white;
- }
- &::-moz-selection {
- background-color: $c-laser;
- color: $g20-white;
- }
+/* Text Selection Styling */
+::selection {
+ background-color: $c-pool !important;
+ color: $g20-white !important;
+}
+::-moz-selection {
+ background-color: $c-pool !important;
+ color: $g20-white !important;
}
diff --git a/ui/webpack/devConfig.js b/ui/webpack/devConfig.js
index 278032e3ba..0cd3dece7b 100644
--- a/ui/webpack/devConfig.js
+++ b/ui/webpack/devConfig.js
@@ -72,7 +72,7 @@ module.exports = {
$: "jquery",
jQuery: "jquery",
}),
- new ExtractTextPlugin("style.css"),
+ new ExtractTextPlugin("chronograf.css"),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, '..', 'src', 'index.template.html'),
inject: 'body',
diff --git a/ui/webpack/prodConfig.js b/ui/webpack/prodConfig.js
index f57e7e3da4..cdb90b0905 100644
--- a/ui/webpack/prodConfig.js
+++ b/ui/webpack/prodConfig.js
@@ -77,7 +77,7 @@ var config = {
$: "jquery",
jQuery: "jquery",
}),
- new ExtractTextPlugin("style.css"),
+ new ExtractTextPlugin("chronograf.css"),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, '..', 'src', 'index.template.html'),
inject: 'body',