summaryrefslogtreecommitdiff
blob: 204e3c8a60057f06c5a1334c5be8d5d21b6f361d (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
32
33
34
35
36
37
38
39
40
.typeahead-field input,
.typeahead-select {
    display:block;
    width:100%;
    font-size:13px;
    color:#555;
    background:0 0;
    border-radius:2px 0 0 2px;
    -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s
}
.typeahead-field input {
    -webkit-appearance:none;
    background:0 0
}
.typeahead-field input:last-child,
.typeahead-hint {
    background:#fff
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    color: grey;
}
.separator::before, .separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid lightgrey;
}
.separator::before {
    margin-right: .25em;
}
.separator::after {
    margin-left: .25em;
}