[refactor] prevent colour input autosuggest and spellcheck

This commit is contained in:
zombieFox 2019-09-01 08:32:32 +01:00
parent 4ce25d1dc3
commit f090dc7699
4 changed files with 5 additions and 5 deletions

View File

@ -1,6 +1,6 @@
{
"name": "nighttab",
"version": "3.78.0",
"version": "3.79.0",
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"main": "index.js",
"scripts": {

View File

@ -972,7 +972,7 @@
<label for="control-theme-accent-current-picker">Colour</label>
<div class="input-wrap"><div class="form-group mb-0">
<input id="control-theme-accent-current-picker" class="form-group-item-half control-theme-accent-current-picker mb-0" type="color" value="#000000" tabindex="1">
<input id="control-theme-accent-current-hex" class="form-group-item-half control-theme-accent-current-hex mb-0" type="text" placeholder="Hex code" value="#000000" tabindex="1" maxlength="7">
<input id="control-theme-accent-current-hex" class="form-group-item-half control-theme-accent-current-hex mb-0" type="text" placeholder="Hex code" value="#000000" tabindex="1" maxlength="7" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
</div>
</div>
<p class="control-theme-style-light-helper form-helper small">Accent Colour can also be changed from the Header area.</p>
@ -1053,7 +1053,7 @@
<div class="input-wrap">
<div class="form-group mb-0">
<input id="control-background-color-custom-current-picker" class="form-group-item-half control-background-color-custom-current-picker mb-0" type="color" value="#000000" tabindex="1">
<input id="control-background-color-custom-current-hex" class="form-group-item-half control-background-color-custom-current-hex mb-0" type="text" placeholder="Hex code" value="#000000" tabindex="1" maxlength="7">
<input id="control-background-color-custom-current-hex" class="form-group-item-half control-background-color-custom-current-hex mb-0" type="text" placeholder="Hex code" value="#000000" tabindex="1" maxlength="7" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false">
</div>
</div>
<p class="control-background-color-theme-helper form-helper small">Take care as some colours may make the Clock, Date and other text unreadable.</p>

View File

@ -1,6 +1,6 @@
var version = (function() {
var current = "3.78.0";
var current = "3.79.0";
var compare = function(a, b) {
var pa = a.split(".");

View File

@ -2,7 +2,7 @@
"name": "nightTab",
"short_name": "nightTab",
"description": "A neutral new tab page accented with a chosen colour. Customise the layout, style, background and bookmarks in nightTab.",
"version": "3.78.0",
"version": "3.79.0",
"manifest_version": 2,
"chrome_url_overrides": {
"newtab": "index.html"