chore: search input consistency
This commit is contained in:
parent
cf91650cc6
commit
c4fb9b6a19
4 changed files with 9 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "5.9.3",
|
"version": "5.9.4",
|
||||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -29,7 +29,7 @@ textarea {
|
||||||
|
|
||||||
input[type="text"]:focus,
|
input[type="text"]:focus,
|
||||||
input[type="email"]:focus,
|
input[type="email"]:focus,
|
||||||
input[type="search"],
|
input[type="search"]:focus,
|
||||||
textarea:focus {
|
textarea:focus {
|
||||||
border: 1px solid var(--accent-color-hover) !important;
|
border: 1px solid var(--accent-color-hover) !important;
|
||||||
}
|
}
|
|
@ -23,6 +23,7 @@
|
||||||
|
|
||||||
.pagefind-ui__form:before {
|
.pagefind-ui__form:before {
|
||||||
opacity: 1 !important;
|
opacity: 1 !important;
|
||||||
|
top: calc(19px * var(--pagefind-ui-scale)) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagefind-ui__result-title {
|
.pagefind-ui__result-title {
|
||||||
|
@ -45,6 +46,9 @@
|
||||||
|
|
||||||
:is(input[type="text"], input[type="search"]).pagefind-ui__search-input {
|
:is(input[type="text"], input[type="search"]).pagefind-ui__search-input {
|
||||||
padding-left: 2.375rem !important;
|
padding-left: 2.375rem !important;
|
||||||
|
padding-top: 0 !important;
|
||||||
|
padding-bottom: 0 !important;
|
||||||
|
height: calc(53px * var(--pagefind-ui-scale)) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.pagefind-ui__search-clear {
|
.pagefind-ui__search-clear {
|
||||||
|
|
|
@ -13,10 +13,10 @@ image: /assets/img/ogi/search.jpg
|
||||||
<style>{{ css }}</style>
|
<style>{{ css }}</style>
|
||||||
<pagefind-search _show_images="false">
|
<pagefind-search _show_images="false">
|
||||||
<form action="https://duckduckgo.com/" method="get" style="min-height: 3.2em;">
|
<form action="https://duckduckgo.com/" method="get" style="min-height: 3.2em;">
|
||||||
<label>
|
<label>
|
||||||
<input placeholder="Search" type="search" name="q" autocomplete="off" autofocus>
|
<input placeholder="Search" type="search" name="q" autocomplete="off" autofocus>
|
||||||
</label>
|
</label>
|
||||||
<input type="hidden" placeholder="Search" name="sites" value="coryd.dev">
|
<input type="hidden" placeholder="Search" name="sites" value="coryd.dev">
|
||||||
</form>
|
</form>
|
||||||
</pagefind-search>
|
</pagefind-search>
|
||||||
{% render "partials/popular-posts.liquid", posts: collections.posts, analytics: analytics %}
|
{% render "partials/popular-posts.liquid", posts: collections.posts, analytics: analytics %}
|
Reference in a new issue