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
|
|
|
// BASE TABLES
|
|
|
|
// -----------------
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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%;
|
2011-11-01 03:37:10 +01:00
|
|
|
margin-bottom: @baseLineHeight;
|
2012-01-18 08:39:18 +01:00
|
|
|
// Cells
|
|
|
|
th,
|
|
|
|
td {
|
|
|
|
padding: 8px;
|
|
|
|
line-height: @baseLineHeight;
|
|
|
|
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-07-04 13:22:34 +02:00
|
|
|
|
|
|
|
.success td {
|
|
|
|
background-color: @successBackground;
|
|
|
|
}
|
|
|
|
.error td {
|
|
|
|
background-color: @errorBackground;
|
|
|
|
}
|
|
|
|
.info td {
|
|
|
|
background-color: @infoBackground;
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 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-01-26 23:32:11 +01:00
|
|
|
*border-collapse: collapsed; // IE7 can't round corners anyway
|
2012-04-17 01:34:08 +02:00
|
|
|
border-left: 0;
|
2011-11-01 03:37:10 +01:00
|
|
|
.border-radius(4px);
|
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-04-14 22:31:48 +02:00
|
|
|
-webkit-border-top-left-radius: 4px;
|
|
|
|
border-top-left-radius: 4px;
|
2012-04-17 01:34:08 +02:00
|
|
|
-moz-border-radius-topleft: 4px;
|
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-04-14 22:31:48 +02:00
|
|
|
-webkit-border-top-right-radius: 4px;
|
|
|
|
border-top-right-radius: 4px;
|
2012-04-17 01:34:08 +02:00
|
|
|
-moz-border-radius-topright: 4px;
|
2011-09-09 08:01:28 +02:00
|
|
|
}
|
2011-11-30 07:35:03 +01:00
|
|
|
// For first th or td in the first row in the first thead or tbody
|
|
|
|
thead:last-child tr:last-child th:first-child,
|
|
|
|
tbody:last-child tr:last-child td:first-child {
|
2011-09-09 08:01:28 +02:00
|
|
|
.border-radius(0 0 0 4px);
|
2012-04-14 22:31:48 +02:00
|
|
|
-webkit-border-bottom-left-radius: 4px;
|
|
|
|
border-bottom-left-radius: 4px;
|
2012-04-17 01:34:08 +02:00
|
|
|
-moz-border-radius-bottomleft: 4px;
|
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,
|
|
|
|
tbody:last-child tr:last-child td:last-child {
|
2012-04-14 22:31:48 +02:00
|
|
|
-webkit-border-bottom-right-radius: 4px;
|
|
|
|
border-bottom-right-radius: 4px;
|
2012-04-17 01:34:08 +02:00
|
|
|
-moz-border-radius-bottomright: 4px;
|
2011-09-09 08:01:28 +02:00
|
|
|
}
|
2011-05-04 03:09:25 +02:00
|
|
|
}
|
|
|
|
|
2011-06-30 09:15:37 +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-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-02-05 11:28:42 +01:00
|
|
|
tbody tr:hover td,
|
|
|
|
tbody tr:hover th {
|
2012-03-06 07:47:39 +01:00
|
|
|
background-color: @tableBackgroundHover;
|
2012-02-05 11:28:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-30 07:35:03 +01: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
|
|
|
|
table [class*=span],
|
|
|
|
.row-fluid table [class*=span] {
|
|
|
|
display: table-cell;
|
|
|
|
float: none; // undo default grid column styles
|
|
|
|
margin-left: 0; // undo default grid column styles
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change the column widths to account for td/th padding
|
2011-11-01 03:37:10 +01:00
|
|
|
table {
|
|
|
|
.span1 { .tableColumns(1); }
|
|
|
|
.span2 { .tableColumns(2); }
|
|
|
|
.span3 { .tableColumns(3); }
|
|
|
|
.span4 { .tableColumns(4); }
|
|
|
|
.span5 { .tableColumns(5); }
|
|
|
|
.span6 { .tableColumns(6); }
|
|
|
|
.span7 { .tableColumns(7); }
|
|
|
|
.span8 { .tableColumns(8); }
|
|
|
|
.span9 { .tableColumns(9); }
|
|
|
|
.span10 { .tableColumns(10); }
|
|
|
|
.span11 { .tableColumns(11); }
|
|
|
|
.span12 { .tableColumns(12); }
|
2012-02-21 19:07:55 +01:00
|
|
|
.span13 { .tableColumns(13); }
|
|
|
|
.span14 { .tableColumns(14); }
|
|
|
|
.span15 { .tableColumns(15); }
|
|
|
|
.span16 { .tableColumns(16); }
|
|
|
|
.span17 { .tableColumns(17); }
|
|
|
|
.span18 { .tableColumns(18); }
|
|
|
|
.span19 { .tableColumns(19); }
|
|
|
|
.span20 { .tableColumns(20); }
|
|
|
|
.span21 { .tableColumns(21); }
|
|
|
|
.span22 { .tableColumns(22); }
|
|
|
|
.span23 { .tableColumns(23); }
|
|
|
|
.span24 { .tableColumns(24); }
|
2011-11-01 03:37:10 +01:00
|
|
|
}
|