Skip to content
Snippets Groups Projects
Commit c8ae33fe authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Merge branch '486-use-html5-in-search-frontend' into 'master'

Resolve "Use HTML5 in search frontend"

Closes #486

See merge request !685
parents 63f616d1 b52fe957
No related branches found
No related tags found
1 merge request!685Resolve "Use HTML5 in search frontend"
Pipeline #23429 passed
Pipeline: AlekSIS

#23433

    ......@@ -179,11 +179,14 @@ ul.sidenav li.logo > a:hover {
    box-shadow: none;
    }
    .sidenav li.search .search-wrapper > i.material-icons {
    .sidenav li.search .search-wrapper > button.search-button {
    position: absolute;
    top: 21px;
    top: calc(50% - 18px);
    right: 10px;
    cursor: pointer;
    }
    button.btn-flat.search-button:hover {
    background-color: $button-disabled-background;
    }
    a.collection-item.search-item {
    ......
    ......@@ -80,8 +80,10 @@
    <li class="search">
    <form method="get" action="{% url "haystack_search" %}" id="search-form" class="autocomplete">
    <div class="search-wrapper">
    <input id="search" name="q" placeholder="{% trans "Search" %}">
    <i class="material-icons">search</i>
    <input id="search" name="q" type="search" enterkeyhint="search" placeholder="{% trans "Search" %}">
    <button class="btn btn-flat search-button" type="submit" aria-label="{% trans "Search" %}">
    <i class="material-icons">search</i>
    </button>
    </div>
    </form>
    </li>
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment