Files
storyboard-webclient/src/theme/base/bootstrap/tables.less
Zara 020ec19e3e Add newlines to the ends of files
Many files did not end in newlines. This can cause problems with UNIX tools
which expect every line to end with a newline/line break.
May require manually restarting the webclient.

Change-Id: If6cf0c13fc82858efbf8b34b6eb0774441ecf535
2015-07-31 12:42:44 +00:00

45 lines
909 B
Plaintext

// A table style that only draws an outside border.
table.table.table-outlined {
border: 1px solid @table-border-color
}
// A table that takes the table-condensed style one step further.
table.table.table-supercondensed {
> thead,
> tbody,
> tfoot {
> tr {
> th,
> td {
padding: (@table-condensed-cell-padding / 2);
}
}
}
}
// A table style that retains the block positioning, but otherwise
// strips out all borders.
table.table.table-clean {
> thead,
> tbody,
> tfoot {
border: none;
> tr {
> th,
> td {
border: none;
}
}
}
}
// Any striped table immediately following a tab list should not have a top
// border.
.nav-tabs + .table-striped {
tr:first-child {
td {
border-top: none;
}
}
}