-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathstyle.css
77 lines (77 loc) · 1.48 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
#closeAllFolders{
background:#333;
display: inline-block;
font-size: 15px;
border-radius: 3px;
padding: 0 5px;
position: absolute;
top: 8px;
right: 8px;
}
#search-files-button{
background: url('magnifier.png') center center no-repeat #333;
display: inline-block;
border-radius: 3px;
position: absolute;
top: 8px;
right: 28px;
width: 18px;
height: 18px;
}
#search-files-button:hover,
#closeAllFolders:hover{
background-color:#000;
cursor:pointer;
}
#project-files-header{
position:relative;
}
.search-files-extension{
background: #555;
color: #FFF;
padding: 2px 9px 4px 10px;
border-radius: 3px;
line-height: 12px;
font-size: 11px;
display: inline-block;
margin: 0 0 0 5px;
}
.search-files-extension:hover{
background: #333;
cursor:pointer;
}
#search-files-input{
margin: 0 0 0 10px;
width: 160px;
}
.search-files-result.selected td,
.search-files-result:hover td{
background-color: #e0f0fa!important;
cursor:pointer;
}
.search-files-table_container{
position:relative;
}
#no-find-file{
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
height: 20px;
width: 100%;
margin: auto;
text-align: center;
font-size: 20px;
display:none;
}
#number-found-files{
font-size: 12px;
color: #555;
display: inline-block;
padding: 0 0 0 10px;
margin: 0 0 0 10px;
line-height: 10px;
vertical-align: middle;
border-left: 1px solid #999;
}