blob: db4b2fca21add7baf93551dee484cb728e9f66a4 (
plain)
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
|
#found_versions li {
width: 100%;
cursor: default;
height: 36px;
float: left;
border-bottom: 1px solid rgba(100,100,100,.1);
}
#found_versions li:last-child {
border-bottom: none;
}
#found_versions li > * {
padding: 7px;
float: left;
vertical-align: top;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
filter: alpha(opacity=50);
opacity: .5;
}
#found_versions li > *:hover,
#found_versions li > *:focus {
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: alpha(opacity=100);
opacity: 1;
}
#found_versions img {
cursor: pointer;
padding-right: 4px;
}
#found_versions .versionDate {
min-width: 100px;
vertical-align: text-bottom;
}
#found_versions .revertVersion {
cursor: pointer;
float: right;
}
|