-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.less
More file actions
57 lines (50 loc) · 898 Bytes
/
styles.less
File metadata and controls
57 lines (50 loc) · 898 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
52
53
54
55
56
57
.search-palette {
position: relative;
padding: 6px 12px 7px 34px;
& > i {
position: absolute;
top: 10px;
left: 10px;
color: gray;
font-size: 18px;
}
& > input {
width: 100%;
color: gray;
padding: 0;
border: 0;
font-size: 18px;
margin-top: 2px;
&:focus {
outline: 0;
}
}
.search-palette-results {
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
z-index: 1000;
background: #fff;
position: absolute;
top: 33px;
left: 0;
width: 100%;
border: 1px solid #ccc;
border-top: 0;
&>div {
padding: 10px;
color: #555;
border-top: 1px solid #ddd;
cursor: pointer;
i {
width: 20px;
text-align: center;
}
&.selected {
color: #DCE8F7;
background: #5292E6;
i {
color: #fff;
}
}
}
}
}