Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_search.scss « scss « assets - github.com/google/docsy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6fb9631c68a73aaebefd79a36940503d3cb07df8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Search

.td-search-input {
    background: transparent;
    max-width: 90%;

    &.form-control:focus {
        border-color: lighten($primary, 60%);
        box-shadow: 0 0 0 2px lighten($primary, 30%);
        color: inherit;
    }

    @if $enable-rounded {
        border-radius: 1rem;
    }

    font-family: "Font Awesome 5 Free", $font-family-base;
}

.popover.offline-search-result {
    // Override bootstrap default style (max-width: $popover-max-width;)
    max-width: 90%;

    .card {
        margin-bottom: $spacer * .5;

        .card-header {
            font-weight: bold;
        }
    }
}