-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
53 lines (48 loc) · 1 KB
/
style.css
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
.clear-button-container {
position: relative;
}
.clear-button-container .hidden {
display: none;
}
.clear-button-container input {
width: 100%;
height: 100%;
padding-right: 18px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
}
.clear-button {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
-o-box-sizing: border-box;
box-sizing: border-box;
display: block;
height: 100%;
width: 20px;
margin: 0;
padding: 5px 3px;
position: absolute;
top: 0;
right: 0;
z-index: 100;
background: transparent;
border: none;
}
.clear-button > div {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
background: #a9a9a9;
border-radius: 10px;
}
.clear-button i {
display: block;
margin: 0;
font-style: normal;
color: white;
}