blob: 5b9b51a16d35d31ed26a73334dcde778d9a010e8 (
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
56
57
58
59
60
61
62
|
.app-files .detailsView.disappear {
margin-right: -350px;
}
.app-files .detailsView {
position: absolute;
width: 350px;
top: 0;
right: 0;
left: auto;
min-height: 100%;
background-color: white;
-webkit-transition: margin-right 300ms;
-moz-transition: margin-right 300ms;
-o-transition: margin-right 300ms;
transition: margin-right 300ms;
}
.app-files .detailsView {
background: #eee;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
box-shadow: 0 2px 3px rgba(50, 50, 50, .4);
display: block;
z-index: 500;
}
.app-files .detailsView .detailFileInfoContainer {
min-height: 80px;
padding: 10px;
}
.app-files .detailsView .detailFileInfoContainer > div {
clear: both;
margin-left: 5px;
}
.app-files .detailsView .thumbnail {
width: 50px;
height: 50px;
float: left;
margin: 5px;
background-size: 50px;
}
.app-files .detailsView .fileName {
font-weight: bold;
font-size: 17px;
}
.app-files .detailsView .detailList {
float: left;
}
.app-files .detailsView .close {
position: absolute;
top: 0;
right: 0;
margin: 10px;
}
|