File: datatable.css

package info (click to toggle)
w3-recs 20110107-1
  • links: PTS, VCS
  • area: non-free
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 195,972 kB
  • ctags: 48,964
  • sloc: xml: 67,284; makefile: 115; perl: 31
file content (74 lines) | stat: -rw-r--r-- 1,323 bytes parent folder | download | duplicates (2)
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
63
64
65
66
67
68
69
70
71
72
73
74
 table.open-data-table {
    font-size:0.9em; 
    color:black;
    border-style: none; 
    border-collapse:collapse;
 }
 
 /*
 table.open-data-table th:hover a {
    text-decoration: underline;		      
    color: blue;
 }
 */
 
 table.open-data-table th {
    background-color:#E8E8E8;
    font-weight:normal;
 }
 
 table.open-data-table th a {
    text-decoration: none;		      
    color: black;
 }
 
 #bodyContent table.open-data-table th a.external {
    text-decoration: none;		      
    color: black;
 }
 
 table.open-data-table th:hover {
    background-color:#F0F0F0;
    text-decoration: none;		      
    color: blue;
 }
 
 table.open-data-table th {
    border:1px solid #AAAAAA;
    padding-left:0.3em;
    padding-right:0.3em;
    text-align:center;
 }

 table.open-data-table td {
    border:1px solid #AAAAAA;
    padding-left:0.3em;
    padding-right:0.3em;
    text-align:left;
 }
 
 /*
    Make a few changes for add-on class "form-table"
 */
 
 table.form-table {
    border-collapse: separate;
    border-spacing: 0.2em;
 }
 
 table.form-table th {
    border: none;
    /* text-align: right;  */
 }
 
 table.form-table td {
    text-align: left;
 }

 /*
     Optionally add class "top-table" to vertically align table cell content to the top
  */

  table.top-table td {
    vertical-align: top;
  }