Project

General

Profile

1

    
2
.fixed-headers {
3
  width: 100%;
4
  table-layout: fixed;
5
  border-collapse: collapse;
6
}
7
.fixed-headers th {
8
  text-decoration: none;
9
}
10
.fixed-headers th,
11
.fixed-headers td {
12
  padding: 5px;
13
  text-align: left;
14
}
15
.fixed-headers th:nth-child(1) { min-width: 36px; width: 2%; }
16
.fixed-headers td:nth-child(1) { min-width: 32px; width: 2%; }
17

    
18
.fixed-headers th:nth-child(2) { min-width: 36px; width: 2%; }
19
.fixed-headers td:nth-child(2) { min-width: 32px; width: 2%; }
20

    
21
.fixed-headers th:nth-child(3) { min-width: 36px; width: 2%; }
22
.fixed-headers td:nth-child(3) { min-width: 32px; width: 2%; }
23

    
24
.fixed-headers th:nth-child(4) { min-width: 36px; width: 2%; }
25
.fixed-headers td:nth-child(4) { min-width: 32px; width: 3%; }
26

    
27
.fixed-headers th:nth-child(5) { min-width: 150px; width: 15%; }
28
.fixed-headers td:nth-child(5) { min-width: 150px; width: 15%; }
29

    
30
.fixed-headers th:nth-child(6) { min-width: 300px; width: 62%; }
31
.fixed-headers td:nth-child(6) { min-width: 250px; width: 58%; }
32

    
33
.fixed-headers th:nth-child(7) { min-width: 100px; width: 25%; }
34
.fixed-headers td:nth-child(7) { min-width: 100px; width: 20%; }
35

    
36
.fixed-headers th:nth-child(8) { min-width: 36px; width: 3%; }
37
.fixed-headers td:nth-child(8) { min-width: 32px; width: 3%; }
38

    
39
.fixed-headers th:nth-child(9) { min-width: 36px; width: 3%; }
40
.fixed-headers td:nth-child(9) { min-width: 32px; width: 3%; }
41

    
42
.fixed-headers th:nth-child(10) { min-width: 72px; }
43
.fixed-headers td:nth-child(10) { min-width: 32px; width: 3%; }
44

    
45
.fixed-headers thead {
46
  background-color: #333;
47
  color: #FDFDFD;
48
}
49
.fixed-headers thead tr { display: block; position: relative; }
50
.fixed-headers tbody {
51
  display: block;
52
  overflow-y: scroll;
53
  overflow-x: hidden;
54
  width: 100%;
55
  height: 24em;
56
}
57
.fixed-headers tbody tr:nth-child(even) { background-color: #DDD; }
58
.old_ie_wrapper {
59
  height: 300px;
60
  width: 750px;
61
  overflow-x: hidden;
62
  overflow-y: auto;
63
}
64
.old_ie_wrapper tbody {
65
  height: auto;
66
}
67

    
68
span.truncate {
69
  display: block;
70
  /* Fallback for non-webkit */
71
  display: -webkit-box;
72
  max-width: 100%;
73
  /* Fallback for non-webkit */
74
  margin: 0 auto;
75
  -webkit-line-clamp: 3;
76
  -webkit-box-orient: vertical;
77
  overflow: hidden;
78
  text-overflow: ellipsis;
79
}
(1-1/11)