Improve css for tables

This commit is contained in:
Frédéric Guillot
2014-11-09 21:41:32 -05:00
parent 7eadf7cfd8
commit 7a5b78dbc6
5 changed files with 115 additions and 21 deletions

View File

@@ -41,4 +41,51 @@ th a {
th a:focus,
th a:hover {
text-decoration: underline;
}
.table-fixed {
table-layout: fixed;
white-space: nowrap;
}
.table-fixed td {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.column-5 {
width: 5%;
}
.column-8 {
width: 7.5%;
}
.column-10 {
width: 10%;
}
.column-20 {
width: 20%;
}
.column-30 {
width: 30%;
}
.column-40 {
width: 40%;
}
.column-50 {
width: 50%;
}
.column-60 {
width: 60%;
}
.column-70 {
width: 70%;
}