blob: 0bbdfe94903227a95451153bb9c203d2ec1c1024 (
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
|
#app-content-files .detailsView.disappear {
margin-right: -300px;
}
#app-content-files .detailsView {
position: absolute;
width: 300px;
top: 44px;
bottom: 0;
right: 0;
left: auto;
background-color: white;
border: 1px solid black;
-webkit-transition: margin-right 300ms;
-moz-transition: margin-right 300ms;
-o-transition: margin-right 300ms;
transition: margin-right 300ms;
}
#app-content-files .detailsView .detailFileInfoContainer {
min-height: 200px;
padding: 10px;
}
#app-content-files .detailsView .detailFileInfoContainer > div{
clear: both;
margin-left: 5px;
}
#app-content-files .detailsView .thumbnail {
width: 50px;
height: 50px;
float: left;
margin: 5px;
background-size: 50px;
}
#app-content-files .detailsView .fileName {
font-weight: bold;
font-size: 17px;
}
#app-content-files .detailsView .detailList {
float: left;
}
|