Search close focus color

This commit is contained in:
Alexander Agnarson 2024-04-18 19:38:08 +02:00
parent cc4f7a04e4
commit 09b65e471e
2 changed files with 2 additions and 2 deletions

View file

@ -51,7 +51,7 @@ body:where(.dark) .search-expand .themeform.searchform div:after { color: rgba(2
body:where(.dark) .toggle-search .svg-icon { fill: #fff; } body:where(.dark) .toggle-search .svg-icon { fill: #fff; }
body:where(.dark) .toggle-search:focus #svg-search { fill: rgba(255,255,255,0.5); } body:where(.dark) .toggle-search:focus #svg-search { fill: rgba(255,255,255,0.5); }
body:where(.dark) .toggle-search #svg-close { fill: #fff; } body:where(.dark) .toggle-search #svg-close { fill: #fff; }
body:where(.dark) .toggle-search:focus #svg-close { fill: rgba(255,255,255,0.75); } body:where(.dark) .toggle-search:focus #svg-close { fill: rgba(255,255,255,0.5); }
body:where(.dark) #footer { background: rgba(255,255,255,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); } body:where(.dark) #footer { background: rgba(255,255,255,0.08); box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); }

View file

@ -575,7 +575,7 @@ body.dark #theme-toggle-btn:before { border-color: #fff; top: 2px; left: 2px; }
.toggle-search .svg-icon { fill: #000; } .toggle-search .svg-icon { fill: #000; }
.toggle-search:focus #svg-search { fill: rgba(0,0,0,0.5); } .toggle-search:focus #svg-search { fill: rgba(0,0,0,0.5); }
.toggle-search #svg-close { fill: #000; } .toggle-search #svg-close { fill: #000; }
.toggle-search:focus #svg-close { fill: rgba(0,0,0,0.75); } .toggle-search:focus #svg-close { fill: rgba(0,0,0,0.5); }
body.header-search-active .header-search-overlay { position: fixed; background: rgba(0,0,0,0.4); top: 0; left: 0; right: 0; bottom: 0; } body.header-search-active .header-search-overlay { position: fixed; background: rgba(0,0,0,0.4); top: 0; left: 0; right: 0; bottom: 0; }
body.header-search-active .search-expand { display: block; } body.header-search-active .search-expand { display: block; }