blob: 76629cb790f33d6c978fac8fc789b38f9447f86a (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
#app-sidebar .detailFileInfoContainer {
min-height: 50px;
padding: 15px;
}
#app-sidebar .detailFileInfoContainer > div {
clear: both;
}
#app-sidebar .mainFileInfoView {
margin-right: 20px; /* accomodate for close icon */
}
#app-sidebar .thumbnail {
width: 50px;
height: 50px;
float: left;
margin-right: 10px;
background-size: 50px;
}
#app-sidebar .ellipsis {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
#app-sidebar .fileName {
font-size: 16px;
padding-top: 3px;
}
#app-sidebar .file-details {
margin-top: 3px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
opacity: .5;
}
#app-sidebar .action-favorite {
vertical-align: text-bottom;
padding: 10px;
margin: -10px;
}
#app-sidebar .detailList {
float: left;
}
#app-sidebar .close {
position: absolute;
top: 0;
right: 0;
padding: 15px;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
opacity: .5;
}
|