leftypol/stylesheets/longtable/longtable.css

33 lines
569 B
CSS
Raw Normal View History

.longtable {
position: relative;
box-sizing: border-box;
2024-01-16 00:11:03 +00:00
display: table;
table-layout: fixed;
width: 100%;
}
.longtable > tbody {
box-sizing: border-box;
2024-01-16 00:11:03 +00:00
display: block;
}
.longtable > tbody > tr {
box-sizing: border-box;
clear: left;
width: 100%;
}
.longtable > tbody > tr > td {
2024-01-16 00:11:03 +00:00
display: table;
box-sizing: border-box;
float: left;
padding: 0;
2024-01-16 00:11:03 +00:00
word-break: break-word;
}
.longtable > tbody > tr > th {
2024-01-16 00:11:03 +00:00
*display: table;
box-sizing: border-box;
float: left;
padding: 0;
}
.longtable > tbody > tr > th.sortable {
cursor: pointer;
}