Skip to content

Commit ab5ba94

Browse files
committed
[bug] fix default theme input colour
1 parent 4c354d4 commit ab5ba94

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

‎index.html‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
</div>
6161
<divclass="head-item mb-3 mb-xl-0">
6262
<formclass="theme">
63-
<inputid="accent-picker" type="color" class="theme-input" value="#000000" tabindex="1">
63+
<inputid="accent-picker" type="color" class="theme-input" value="#ffaa33" tabindex="1">
6464
<labelclass="button mb-0 theme-label" for="accent-picker">
6565
<spanclass="button-text">Accent</span>
6666
</label>

‎js/search.js‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,10 @@ var search = (function(){
2424
varsearchInput=helper.e(".search-input");
2525
varsearchClear=helper.e(".search-clear");
2626
if(searchInput.value!=""){
27-
console.log(1);
27+
// helper.removeClass(searchClear, "is-hidden");
2828
searchClear.removeAttribute("disabled");
2929
}else{
30+
// helper.addClass(searchClear, "is-hidden");
3031
searchClear.setAttribute("disabled","");
3132
};
3233
};

0 commit comments

Comments
(0)