Project

General

Profile

1
/*
2
.table-fixed { width: 100%; background-color: #f3f3f3;}
3
.table-fixed tbody { height: 200px; overflow-y: auto; width: 100%;}
4
.table-fixed thead, .table-fixed tbody, .table-fixed tr, .table-fixed td, .table-fixed th { display: flexbox;}
5
.table-fixed tbody td { }
6
.table-fixed thead tr th { border-color: #e67e22;}
7
*/
8
tbody.scrolling {
9
    max-height: 31.625em;
10
    overflow: auto;
11
    display: inline-block;
12
    width: 100%;
13
}
14
/*
15
table#tableData,
16
table#news-ScrollTable {
17
    color: #333;
18
    font-family: Helvetica, Arial, sans-serif;
19
    width: 100%;
20
    border-collapse: collapse;
21
    border-spacing: 0;
22
}
23

    
24
td.news-Scroll, th.news-Scroll {
25
    height: 2.255em;
26
}
27
th.news-Scroll {
28
    background: linear-gradient(#7EB7BF 0%, #507279 100%);
29
    background: #538199;
30
    color: #FFF;
31
    font-weight: bold;
32
}
33
td.news-Scroll { background: #FFFFFF; text-align: left; }
34
tr.news-Scroll td { background: #FFFFFF; }
35
tr.news-Scroll:nth-child(odd) td { background: #e8e8e8; }
36
tr.news-Scroll:hover td { background: #FBFCE0; }
37
 tr.news-Scroll td.news-Scroll:first-child, tr.news-Scroll th.news-Scroll:first-child {
38
    font-size: 0.9525em;
39
    text-align: right;
40
   padding-right: 5px;
41
    width: 100%;
42
}
43
 tr.news-Scroll:first-child th.news-Scroll:nth-child(2) { border-radius: 5px 0 0 0;}
44
tr.news-Scroll:first-child th.news-Scroll:last-child { border-radius: 0 5px 0 0;}
45

    
46
thead.news-Scroll { display: table; float: left; width: 100%; }
47

    
48
table#news-ScrollTable { text-align :left; font-size :12px; border :1px ridge #dadada; font-family :verdana; background :transparent; color :#0066ff; }
49
table.mod_form,
50
table#news-ScrollTable { border-collapse: collapse; width: 100%; }
51
table#news-ScrollTable thead  { cursor :pointer; width: 100%; }
52

    
53
table#news-ScrollTable thead tr,
54
table#news-ScrollTable tfoot tr { font-weight: bold; font-size: 0.9525em; height: 1.925em; padding: 0.525em 0; background: #7D9AB6; background: linear-gradient(#7EB7BF 0%, #507279 100%); background: #45788D; }
55

    
56
table#news-ScrollTable tbody tr {  }
57
table#news-ScrollTable tbody tr { line-height: 1.225em; background: #e8e8e8;  }
58
table#news-ScrollTable tbody tr:nth-child(odd) { background: #FFFFFF; }
59
table#news-ScrollTable tbody tr:hover { background: #FBFCE0; }
60
*/
61

    
62
/*****************************************/
63

    
64
.scrolling-table-container {
65
    height: 21.225em;
66
    overflow-y: scroll;
67
    overflow-x: hidden;
68
}
69

    
70
  div.outer
71
  {
72
    width : 100%;
73
  }
74
  table.table-scroll
75
  {
76
     table-layout:fixed;
77
     width: 100%; /* same as containing div */
78
  }
79
  table.table-scroll th, table.table-scroll td
80
  {
81
   /* border: solid 0px #ccc;*/
82
  }
83
table.table-scroll thead { display: block; }
84
table.table-scroll tbody { display: block; }
85

    
86
table.table-scroll tbody {
87
    height: 42.025em;       /* Just for the demo          */
88
    width: 100%;
89
/*
90
    overflow-y: auto;
91
    overflow-x: hidden;
92
*/
93
}
(9-9/11)