mirror of
https://github.com/zombieFox/nightTab.git
synced 2025-03-15 23:28:11 +01:00
[bug] fix default theme input colour
This commit is contained in:
parent
4c354d47c4
commit
ab5ba94a7d
@ -60,7 +60,7 @@
|
||||
</div>
|
||||
<div class="head-item mb-3 mb-xl-0">
|
||||
<form class="theme">
|
||||
<input id="accent-picker" type="color" class="theme-input" value="#000000" tabindex="1">
|
||||
<input id="accent-picker" type="color" class="theme-input" value="#ffaa33" tabindex="1">
|
||||
<label class="button mb-0 theme-label" for="accent-picker">
|
||||
<span class="button-text">Accent</span>
|
||||
</label>
|
||||
|
@ -24,9 +24,10 @@ var search = (function() {
|
||||
var searchInput = helper.e(".search-input");
|
||||
var searchClear = helper.e(".search-clear");
|
||||
if (searchInput.value != "") {
|
||||
console.log(1);
|
||||
// helper.removeClass(searchClear, "is-hidden");
|
||||
searchClear.removeAttribute("disabled");
|
||||
} else {
|
||||
// helper.addClass(searchClear, "is-hidden");
|
||||
searchClear.setAttribute("disabled", "");
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user