-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjquery.fs.stacker.css
51 lines (50 loc) · 1.15 KB
/
jquery.fs.stacker.css
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
/*
* Stacker v0.0.1 - 2015-04-04
* A jQuery plugin for responsive tables that retain column headers. Part of the Formstone Library.
* http://classic.formstone.it/selecter/
*
* Copyright 2015 Matt Hisamoto; MIT Licensed
*/
.stacker.stacker-table {
display: none;
}
.stacker.stacker-table.enabled {
display: table;
}
.stacker.stacker-table,
.stacker.stacker-table table {
width: 100%;
min-width: 0;
table-layout: fixed;
}
.stacker.stacker-table,
.stacker.stacker-table tr,
.stacker.stacker-table th,
.stacker.stacker-table td {
background: none;
padding: 0;
margin: 0;
}
.stacker.stacker-table table tr,
.stacker.stacker-table table th,
.stacker.stacker-table table td {
padding: 1em;
}
.stacker.stacker-table table th:first-child,
.stacker.stacker-table table td:first-child {
text-align: right;
}
.stacker.stacker-table table th:last-child,
.stacker.stacker-table table td:last-child {
text-align: left;
}
.stacker.stacker-table table th:first-child:last-child,
.stacker.stacker-table table td:first-child:last-child {
text-align: center;
}
.stacker.stacker-original {
display: none;
}
.stacker.stacker-original.enabled {
display: table;
}