Skip to content
Snippets Groups Projects
Commit d9d72cab authored by khawkins98's avatar khawkins98
Browse files

Add data-table support to v1.2 #65

parent ca232546
No related branches found
No related tags found
No related merge requests found
......@@ -905,6 +905,29 @@ table.tablesorter thead tr th.tablesorter-headerDesc { background-image: url(../
/* No colour striping tables */
table.no-stripe tbody tr:nth-child(even) { background-color: #fff; }
/* Data table solutions */
/* Tables with custom padding */
table .padding-none th,
table .padding-none td
table.padding-none tbody th,
table.padding-none tbody td,
table.data-table tbody th,
table.data-table tbody td {
padding: 0;
}
table .padding-small th,
table .padding-small td
table.padding-small tbody th,
table.padding-small tbody td {
padding: 0rem 0.2rem 0.2rem;
}
/* None 100% wide tables */
table.data-table,
table.width-auto { width: auto; }
/* some images should be stretched, such as sparkline-style gifs */
table.data-table img,
img.stretch { height: inherit; }
/* wide screen support */
@media screen and (min-width: 40em) {
body.full-width .row,
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment