Rev 14734 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
14424 | obado | 1 | /* WIMS Custom */ |
15341 | obado | 2 | /* table{width:100%} has been desactivated (in test) |
3 | + disabled a text-align: left; |
||
4 | */ |
||
14407 | obado | 5 | /** |
15341 | obado | 6 | * Foundation for Sites |
7 | * Version 6.6.3 |
||
8 | * https://get.foundation |
||
14407 | obado | 9 | * Licensed under MIT Open Source |
10 | */ |
||
11 | /* Table styles */ |
||
12 | table { |
||
13 | border-collapse: collapse; |
||
14424 | obado | 14 | /*width: 100%;*/ |
14407 | obado | 15 | margin-bottom: 1rem; |
16 | border-radius: 0; } |
||
17 | thead, |
||
18 | tbody, |
||
19 | tfoot { |
||
20 | border: 1px solid #f1f1f1; |
||
21 | background-color: #fefefe; } |
||
22 | caption { |
||
14734 | obado | 23 | padding: 0.5rem 0.625rem 0.625rem; |
14407 | obado | 24 | font-weight: bold; } |
25 | thead { |
||
26 | background: #f8f8f8; |
||
27 | color: #0a0a0a; } |
||
28 | tfoot { |
||
29 | background: #f1f1f1; |
||
30 | color: #0a0a0a; } |
||
31 | thead tr, |
||
32 | tfoot tr { |
||
33 | background: transparent; } |
||
34 | thead th, |
||
35 | thead td, |
||
36 | tfoot th, |
||
37 | tfoot td { |
||
14734 | obado | 38 | padding: 0.5rem 0.625rem 0.625rem; |
14407 | obado | 39 | font-weight: bold; |
40 | /*text-align: left;*/ } |
||
41 | tbody th, |
||
42 | tbody td { |
||
14734 | obado | 43 | padding: 0.5rem 0.625rem 0.625rem; } |
14407 | obado | 44 | tbody tr:nth-child(even) { |
45 | border-bottom: 0; |
||
46 | background-color: #f1f1f1; } |
||
47 | table.unstriped tbody { |
||
48 | background-color: #fefefe; } |
||
49 | table.unstriped tbody tr { |
||
50 | border-bottom: 0; |
||
51 | border-bottom: 1px solid #f1f1f1; |
||
52 | background-color: #fefefe; } |
||
53 | |||
14734 | obado | 54 | @media print, screen and (max-width: 63.99875em) { |
14407 | obado | 55 | table.stack thead { |
56 | display: none; } |
||
57 | table.stack tfoot { |
||
58 | display: none; } |
||
59 | table.stack tr, |
||
60 | table.stack th, |
||
61 | table.stack td { |
||
62 | display: block; } |
||
63 | table.stack td { |
||
64 | border-top: 0; } } |
||
65 | |||
66 | table.scroll { |
||
67 | display: block; |
||
68 | width: 100%; |
||
69 | overflow-x: auto; } |
||
70 | |||
71 | table.hover thead tr:hover { |
||
72 | background-color: #f3f3f3; } |
||
73 | |||
74 | table.hover tfoot tr:hover { |
||
75 | background-color: #ececec; } |
||
76 | |||
77 | table.hover tbody tr:hover { |
||
78 | background-color: #f9f9f9; } |
||
79 | |||
80 | table.hover:not(.unstriped) tr:nth-of-type(even):hover { |
||
81 | background-color: #ececec; } |
||
82 | |||
83 | .table-scroll { |
||
84 | overflow-x: auto; } |