app-bar.css
667 Bytes
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
41
42
43
44
45
46
47
48
49
50
51
:host * {
box-sizing: border-box;
}
:host(.search-on) {
left: 0;
background: inherit;
z-index: 1001;
}
:host ::content iron-icon {
margin-right: 15px;
cursor: pointer;
}
#search {
position: relative;
}
#search iron-icon {
margin-right: 0;
}
#search[show] {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
padding: 0 16px;
background: #fff;
}
#search input {
display: none;
font-family: var(--primary-font-family);
font-size: 15px;
width: 100%;
padding: 10px;
border: 0;
border-radius: 2px;
-webkit-appearance: none;
}
#search[show] input {
display: block;
}
#search input:focus {
outline: 0;
}