2011-11-26 06:34:55 +01:00
|
|
|
//
|
2012-06-29 06:46:45 +02:00
|
|
|
// Tables
|
|
|
|
// --------------------------------------------------
|
2011-05-04 03:09:25 +02:00
|
|
|
|
2011-06-30 09:15:37 +02:00
|
|
|
|
2012-01-20 22:16:40 +01:00
|
|
|
table {
|
|
|
|
max-width: 100%;
|
2012-04-17 01:34:08 +02:00
|
|
|
background-color: @tableBackground;
|
2012-01-20 22:16:40 +01:00
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
2012-10-01 08:59:35 +02:00
|
|
|
|
|
|
|
|
2011-08-17 07:58:01 +02:00
|
|
|
// BASELINE STYLES
|
|
|
|
// ---------------
|
2011-05-04 03:09:25 +02:00
|
|
|
|
2012-01-18 08:39:18 +01:00
|
|
|
.table {
|
2011-05-04 03:09:25 +02:00
|
|
|
width: 100%;
|
2012-11-30 23:37:24 +01:00
|
|
|
margin-bottom: @base-line-height;
|
2012-01-18 08:39:18 +01:00
|
|
|
// Cells
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 8px;
|
2012-11-30 23:37:24 +01:00
|
|
|
line-height: @base-line-height;
|
2012-01-18 08:39:18 +01:00
|
|
|
text-align: left;
|
2012-02-11 08:07:32 +01:00
|
|
|
vertical-align: top;
|
2012-03-06 07:47:39 +01:00
|
|
|
border-top: 1px solid @tableBorder;
|
2012-01-18 08:39:18 +01:00
|
|
|
}
|
|
|
|
th {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2012-02-11 08:07:32 +01:00
|
|
|
// Bottom align for column headings
|
|
|
|
thead th {
|
|
|
|
vertical-align: bottom;
|
2012-01-18 08:39:18 +01:00
|
|
|
}
|
|
|
|
// Remove top border from thead by default
|
2012-03-23 05:08:41 +01:00
|
|
|
caption + thead tr:first-child th,
|
|
|
|
caption + thead tr:first-child td,
|
2012-03-12 02:18:18 +01:00
|
|
|
colgroup + thead tr:first-child th,
|
|
|
|
colgroup + thead tr:first-child td,
|
|
|
|
thead:first-child tr:first-child th,
|
|
|
|
thead:first-child tr:first-child td {
|
2012-01-18 08:39:18 +01:00
|
|
|
border-top: 0;
|
|
|
|
}
|
|
|
|
// Account for multiple tbody instances
|
|
|
|
tbody + tbody {
|
2012-03-06 07:47:39 +01:00
|
|
|
border-top: 2px solid @tableBorder;
|
2012-01-18 08:39:18 +01:00
|
|
|
}
|
2012-01-11 18:43:13 +01:00
|
|
|
}
|
|
|
|
|
2011-11-01 03:37:10 +01:00
|
|
|
|
|
|
|
|
2011-11-30 07:35:03 +01:00
|
|
|
// CONDENSED TABLE W/ HALF PADDING
|
|
|
|
// -------------------------------
|
2011-11-01 03:37:10 +01:00
|
|
|
|
2012-01-15 06:28:47 +01:00
|
|
|
.table-condensed {
|
2011-11-01 03:37:10 +01:00
|
|
|
th,
|
|
|
|
td {
|
2011-11-30 07:35:03 +01:00
|
|
|
padding: 4px 5px;
|
2011-09-08 19:47:05 +02:00
|
|
|
}
|
2011-11-01 03:37:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-01 08:59:35 +02:00
|
|
|
|
2011-11-01 03:37:10 +01:00
|
|
|
// BORDERED VERSION
|
|
|
|
// ----------------
|
|
|
|
|
2012-01-15 06:28:47 +01:00
|
|
|
.table-bordered {
|
2012-03-06 07:47:39 +01:00
|
|
|
border: 1px solid @tableBorder;
|
2011-11-01 03:37:10 +01:00
|
|
|
border-collapse: separate; // Done so we can round those corners!
|
2012-04-17 01:34:08 +02:00
|
|
|
border-left: 0;
|
2012-11-02 17:36:51 +01:00
|
|
|
border-radius: @baseBorderRadius;
|
2012-02-22 08:00:02 +01:00
|
|
|
th,
|
|
|
|
td {
|
2012-03-06 07:47:39 +01:00
|
|
|
border-left: 1px solid @tableBorder;
|
2011-09-09 08:01:28 +02:00
|
|
|
}
|
2012-01-05 10:34:14 +01:00
|
|
|
// Prevent a double border
|
2012-03-23 09:28:04 +01:00
|
|
|
caption + thead tr:first-child th,
|
|
|
|
caption + tbody tr:first-child th,
|
|
|
|
caption + tbody tr:first-child td,
|
|
|
|
colgroup + thead tr:first-child th,
|
|
|
|
colgroup + tbody tr:first-child th,
|
|
|
|
colgroup + tbody tr:first-child td,
|
2012-01-05 10:34:14 +01:00
|
|
|
thead:first-child tr:first-child th,
|
2012-01-15 01:50:36 +01:00
|
|
|
tbody:first-child tr:first-child th,
|
2012-01-05 10:34:14 +01:00
|
|
|
tbody:first-child tr:first-child td {
|
2012-03-12 04:03:55 +01:00
|
|
|
border-top: 0;
|
2012-01-05 10:34:14 +01:00
|
|
|
}
|
2011-11-30 07:35:03 +01:00
|
|
|
// For first th or td in the first row in the first thead or tbody
|
2011-11-01 03:37:10 +01:00
|
|
|
thead:first-child tr:first-child th:first-child,
|
|
|
|
tbody:first-child tr:first-child td:first-child {
|
2012-11-13 11:49:33 +01:00
|
|
|
.border-top-left-radius(@baseBorderRadius);
|
2011-09-09 08:01:28 +02:00
|
|
|
}
|
2011-11-01 03:37:10 +01:00
|
|
|
thead:first-child tr:first-child th:last-child,
|
|
|
|
tbody:first-child tr:first-child td:last-child {
|
2012-11-13 11:49:33 +01:00
|
|
|
.border-top-right-radius(@baseBorderRadius);
|
2011-09-09 08:01:28 +02:00
|
|
|
}
|
2012-11-13 11:49:33 +01:00
|
|
|
// For first th or td in the last row in the last thead or tbody
|
2011-11-30 07:35:03 +01:00
|
|
|
thead:last-child tr:last-child th:first-child,
|
2012-07-20 06:25:24 +02:00
|
|
|
tbody:last-child tr:last-child td:first-child,
|
|
|
|
tfoot:last-child tr:last-child td:first-child {
|
2012-11-13 11:49:33 +01:00
|
|
|
.border-bottom-left-radius(@baseBorderRadius);
|
2011-09-09 08:01:28 +02:00
|
|
|
}
|
2011-11-30 07:35:03 +01:00
|
|
|
thead:last-child tr:last-child th:last-child,
|
2012-07-20 06:25:24 +02:00
|
|
|
tbody:last-child tr:last-child td:last-child,
|
|
|
|
tfoot:last-child tr:last-child td:last-child {
|
2012-11-13 11:49:33 +01:00
|
|
|
.border-bottom-right-radius(@baseBorderRadius);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Clear border-radius for first and last td in the last row in the last tbody for table with tfoot
|
|
|
|
tfoot + tbody:last-child tr:last-child td:first-child {
|
|
|
|
.border-bottom-left-radius(0);
|
2011-09-09 08:01:28 +02:00
|
|
|
}
|
2012-11-13 11:49:33 +01:00
|
|
|
tfoot + tbody:last-child tr:last-child td:last-child {
|
|
|
|
.border-bottom-right-radius(0);
|
|
|
|
}
|
|
|
|
|
2012-07-20 06:06:42 +02:00
|
|
|
|
2012-07-20 06:25:24 +02:00
|
|
|
// Special fixes to round the left border on the first td/th
|
2012-07-20 06:06:42 +02:00
|
|
|
caption + thead tr:first-child th:first-child,
|
|
|
|
caption + tbody tr:first-child td:first-child,
|
|
|
|
colgroup + thead tr:first-child th:first-child,
|
|
|
|
colgroup + tbody tr:first-child td:first-child {
|
2012-11-13 11:49:33 +01:00
|
|
|
.border-top-left-radius(@baseBorderRadius);
|
2012-07-20 06:06:42 +02:00
|
|
|
}
|
|
|
|
caption + thead tr:first-child th:last-child,
|
|
|
|
caption + tbody tr:first-child td:last-child,
|
|
|
|
colgroup + thead tr:first-child th:last-child,
|
|
|
|
colgroup + tbody tr:first-child td:last-child {
|
2012-11-13 11:49:33 +01:00
|
|
|
.border-top-right-radius(@baseBorderRadius);
|
2012-07-20 06:06:42 +02:00
|
|
|
}
|
2012-07-20 06:25:24 +02:00
|
|
|
|
2011-05-04 03:09:25 +02:00
|
|
|
}
|
|
|
|
|
2011-06-30 09:15:37 +02:00
|
|
|
|
2012-07-20 06:06:42 +02:00
|
|
|
|
2011-11-30 07:35:03 +01:00
|
|
|
// ZEBRA-STRIPING
|
|
|
|
// --------------
|
|
|
|
|
|
|
|
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
|
2012-01-15 06:28:47 +01:00
|
|
|
.table-striped {
|
2011-11-30 07:35:03 +01:00
|
|
|
tbody {
|
|
|
|
tr:nth-child(odd) td,
|
|
|
|
tr:nth-child(odd) th {
|
2012-03-06 07:47:39 +01:00
|
|
|
background-color: @tableBackgroundAccent;
|
2011-11-30 07:35:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-01 08:59:35 +02:00
|
|
|
|
2012-02-05 11:28:42 +01:00
|
|
|
// HOVER EFFECT
|
|
|
|
// ------------
|
|
|
|
// Placed here since it has to come after the potential zebra striping
|
2012-06-25 23:11:37 +02:00
|
|
|
.table-hover {
|
2012-08-14 23:51:33 +02:00
|
|
|
tbody {
|
|
|
|
tr:hover td,
|
|
|
|
tr:hover th {
|
|
|
|
background-color: @tableBackgroundHover;
|
|
|
|
}
|
2012-02-05 11:28:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 07:35:03 +01:00
|
|
|
|
2012-10-01 08:59:35 +02:00
|
|
|
|
2012-01-07 13:34:30 +01:00
|
|
|
// TABLE CELL SIZING
|
|
|
|
// -----------------
|
2011-11-01 03:37:10 +01:00
|
|
|
|
2012-06-25 23:37:35 +02:00
|
|
|
// Reset default grid behavior
|
2012-10-03 18:43:14 +02:00
|
|
|
table td[class*="span"],
|
|
|
|
table th[class*="span"],
|
|
|
|
.row-fluid table td[class*="span"],
|
|
|
|
.row-fluid table th[class*="span"] {
|
2012-06-25 23:37:35 +02:00
|
|
|
display: table-cell;
|
|
|
|
float: none; // undo default grid column styles
|
|
|
|
margin-left: 0; // undo default grid column styles
|
|
|
|
}
|
|
|
|
|
2012-08-08 07:50:49 +02:00
|
|
|
// TABLE BACKGROUNDS
|
|
|
|
// -----------------
|
|
|
|
// Exact selectors below required to override .table-striped
|
|
|
|
|
2012-08-28 06:06:21 +02:00
|
|
|
.table tbody tr {
|
|
|
|
&.success td {
|
2012-08-08 07:50:49 +02:00
|
|
|
background-color: @successBackground;
|
|
|
|
}
|
2012-08-28 06:06:21 +02:00
|
|
|
&.error td {
|
2012-08-08 07:50:49 +02:00
|
|
|
background-color: @errorBackground;
|
|
|
|
}
|
2012-08-28 06:06:21 +02:00
|
|
|
&.warning td {
|
2012-08-22 11:20:31 +02:00
|
|
|
background-color: @warningBackground;
|
|
|
|
}
|
2012-08-28 06:06:21 +02:00
|
|
|
&.info td {
|
2012-08-08 07:50:49 +02:00
|
|
|
background-color: @infoBackground;
|
|
|
|
}
|
|
|
|
}
|
2012-08-28 06:06:21 +02:00
|
|
|
|
|
|
|
// Hover states for .table-hover
|
|
|
|
.table-hover tbody tr {
|
|
|
|
&.success:hover td {
|
|
|
|
background-color: darken(@successBackground, 5%);
|
|
|
|
}
|
|
|
|
&.error:hover td {
|
|
|
|
background-color: darken(@errorBackground, 5%);
|
|
|
|
}
|
|
|
|
&.warning:hover td {
|
|
|
|
background-color: darken(@warningBackground, 5%);
|
|
|
|
}
|
|
|
|
&.info:hover td {
|
|
|
|
background-color: darken(@infoBackground, 5%);
|
|
|
|
}
|
|
|
|
}
|