Blame view

sources/apps/files_versions/css/versions.css 1016 Bytes
31b7f2792   Kload   Upgrade to ownclo...
1
  #dropdown.drop-versions {
6d9380f96   Cédric Dupont   Update sources OC...
2
  	width: 360px;
03e52840d   Kload   Init
3
  }
31b7f2792   Kload   Upgrade to ownclo...
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   Kload   Init
49
  }
31b7f2792   Kload   Upgrade to ownclo...
50
51
52
  #found_versions .revertVersion {
  	cursor: pointer;
  	float: right;
6d9380f96   Cédric Dupont   Update sources OC...
53
54
55
  	max-width: 130px;
  	text-overflow: ellipsis;
  	overflow: hidden;
03e52840d   Kload   Init
56
  }