Source code of Leftypol imageboard
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
569 B

.longtable {
position: relative;
box-sizing: border-box;
4 months ago
display: table;
table-layout: fixed;
width: 100%;
}
.longtable > tbody {
box-sizing: border-box;
4 months ago
display: block;
}
.longtable > tbody > tr {
box-sizing: border-box;
clear: left;
width: 100%;
}
.longtable > tbody > tr > td {
4 months ago
display: table;
box-sizing: border-box;
float: left;
padding: 0;
4 months ago
word-break: break-word;
}
.longtable > tbody > tr > th {
4 months ago
*display: table;
box-sizing: border-box;
float: left;
padding: 0;
}
.longtable > tbody > tr > th.sortable {
cursor: pointer;
}