forked from ACTom/kityminder-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchBox.less
59 lines (48 loc) · 963 Bytes
/
searchBox.less
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
58
59
.search-box {
float: right;
background-color: #fff;
border: 1px solid #dbdbdb;
position: relative;
top: 0;
z-index: 3;
width: 360px;
height: 40px;
padding: 3px 6px;
opacity: 1;
.search-input-wrap, .prev-and-next-btn {
float: left;
}
.close-search {
float: right;
height: 16px;
width: 16px;
padding: 1px;
border-radius: 100%;
margin-top: 6px;
margin-right: 10px;
.glyphicon {
top: -1px
}
&:hover {
background-color: #efefef;
}
&:active {
background-color: #999;
}
}
.search-input-wrap {
width: 240px;
}
.prev-and-next-btn {
margin-left: 5px;
.btn:focus {
outline: none;
}
}
.search-input {
//border-right: none;
}
.search-addon {
background-color: #fff;
}
}