Blame view
sources/apps/files_versions/css/versions.css
950 Bytes
|
31b7f2792
|
1 2 |
#dropdown.drop-versions {
width:24em;
|
|
03e52840d
|
3 |
} |
|
31b7f2792
|
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 |
#found_versions li {
width: 100%;
cursor: default;
height: 56px;
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 > a,
#found_versions li > span {
padding: 17px 7px;
}
#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 img.preview {
cursor: default;
opacity: 1;
}
#found_versions .versionDate {
min-width: 100px;
vertical-align: text-bottom;
|
|
03e52840d
|
49 |
} |
|
31b7f2792
|
50 51 52 |
#found_versions .revertVersion {
cursor: pointer;
float: right;
|
|
03e52840d
|
53 |
} |