aboutsummaryrefslogtreecommitdiffhomepage
path: root/share/tools
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2016-01-09 18:06:34 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2016-01-14 22:34:25 -0800
commita77ce393ba9610dfb48fc43f83caa439f255779f (patch)
tree9887e12ad180707d4ee426dcd9e7835f1cb90e75 /share/tools
parentf8ed1d182e9c1615c2a433e9a235da9ac4d99e8b (diff)
respond to feedback
Diffstat (limited to 'share/tools')
-rw-r--r--share/tools/web_config/fishconfig.css4
-rw-r--r--share/tools/web_config/js/controllers.js4
-rw-r--r--share/tools/web_config/partials/colors.html13
3 files changed, 6 insertions, 15 deletions
diff --git a/share/tools/web_config/fishconfig.css b/share/tools/web_config/fishconfig.css
index 63cd69b4..bba26b41 100644
--- a/share/tools/web_config/fishconfig.css
+++ b/share/tools/web_config/fishconfig.css
@@ -312,10 +312,6 @@ body {
height: 12px;
}
-.colorpicker_text_notice {
- margin: 0px 20px 10px 20px; /* top right bottom left */
-}
-
.colorpicker_text_sample, .colorpicker_text_sample_tight {
font-size: 12pt;
padding: 25px;
diff --git a/share/tools/web_config/js/controllers.js b/share/tools/web_config/js/controllers.js
index 73985b7a..8b3895b5 100644
--- a/share/tools/web_config/js/controllers.js
+++ b/share/tools/web_config/js/controllers.js
@@ -92,10 +92,10 @@ controllers.controller("colorsController", function($scope, $http) {
$scope.changeSelectedColorScheme(currentScheme);
})};
- $scope.saveThemeButtonTitle = "Set Theme";
+ $scope.saveThemeButtonTitle = "Set Theme w/o Background Color";
$scope.noteThemeChanged = function() {
- $scope.saveThemeButtonTitle = "Set Theme";
+ $scope.saveThemeButtonTitle = "Set Theme w/o Background Color";
}
$scope.setTheme = function() {
diff --git a/share/tools/web_config/partials/colors.html b/share/tools/web_config/partials/colors.html
index 1db8c896..5edc7b70 100644
--- a/share/tools/web_config/partials/colors.html
+++ b/share/tools/web_config/partials/colors.html
@@ -1,16 +1,11 @@
-<div>
+<div title="Background color for illustration only.
+
+fish cannot change the background color of your terminal and it will not be saved. Refer to your terminal documentation to set its background color.">
<!-- ko with: color_picker -->
- <div class="colorpicker_text_notice">
- The background color in the theme preview box below is for
- illustration only. The displayed background color is not part of the
- theme and will not be saved. Fish is not able to change the terminal
- window background color. See your terminal documentation for how to
- set its background color.
- </div>
<div class="colorpicker_text_sample" ng-style="{'background-color': terminalBackgroundColor}">
<span style="position: absolute; left: 10px; top: 3px;" data-ng-style="{'color': text_color_for_color(terminalBackgroundColor || 'white')}">{{ selectedColorScheme.name }}</span><br>
<div class="color_picker_background_cells">
- <span data-ng-style="{'color': text_color_for_color(terminalBackgroundColor || 'white')}">Background: </span>
+ <span data-ng-style="{'color': text_color_for_color(terminalBackgroundColor || 'white')}">Background Color (illustration only): </span>
<div ng-style="{'background-color': color}" ng-repeat="color in sampleTerminalBackgroundColors" ng-click="changeTerminalBackgroundColor(color)" title="Preview with this background color.
fish cannot change the background color of your terminal. Refer to your terminal documentation to set its background color."></div>