Commit ecf6077f authored by Mark Otto's avatar Mark Otto
Browse files

remove table grid sizing, it can use the new default grid columns instead

parent c82b9d1e
21 merge requests!7033Fix backdrop undefined bug in modal,!8635ignore Gruntfile.js in jekyll,!8339Fix broken links to navbar component in docs examples,!7329Fix for issue #7328,!7219Fix for mini typo mistake in css.html,!7674Clear float on all when navbar is collapsed - v3,!7344Fixed .spanX selector (*= instead of ^=),!7346Fix compilation error,!7775added some tests for tooltip title setter,!8157Close Me: Docs "Customize and Download" button fix,!7509Proposed fix for allowing Collapse events ('show'/'hide') to be cancelled,!7964commit fixes #7792,!8656Added rel="stylesheet" to CDN-Examples,!8527Inner properties move 1,!8245Interactive color picker - Closed: request against wrong branch,!7865Patch 2,!7651Drop the sizzle dependency to allow smaller builds targeting mobile devices,!6853typeahead: do not store item data in an attribute,!6666Patch 1,!65463.0.0 wip - fixed the issue in which the test pid isn't killed if a test fails,!6503control markup changes added
Showing with 5 additions and 183 deletions
+5 -183
......@@ -1834,150 +1834,6 @@ table [class*=span] {
margin-left: 0;
}
.table .span1 {
float: none;
width: 44px;
margin-left: 0;
}
.table .span2 {
float: none;
width: 124px;
margin-left: 0;
}
.table .span3 {
float: none;
width: 204px;
margin-left: 0;
}
.table .span4 {
float: none;
width: 284px;
margin-left: 0;
}
.table .span5 {
float: none;
width: 364px;
margin-left: 0;
}
.table .span6 {
float: none;
width: 444px;
margin-left: 0;
}
.table .span7 {
float: none;
width: 524px;
margin-left: 0;
}
.table .span8 {
float: none;
width: 604px;
margin-left: 0;
}
.table .span9 {
float: none;
width: 684px;
margin-left: 0;
}
.table .span10 {
float: none;
width: 764px;
margin-left: 0;
}
.table .span11 {
float: none;
width: 844px;
margin-left: 0;
}
.table .span12 {
float: none;
width: 924px;
margin-left: 0;
}
.table .span13 {
float: none;
width: 1004px;
margin-left: 0;
}
.table .span14 {
float: none;
width: 1084px;
margin-left: 0;
}
.table .span15 {
float: none;
width: 1164px;
margin-left: 0;
}
.table .span16 {
float: none;
width: 1244px;
margin-left: 0;
}
.table .span17 {
float: none;
width: 1324px;
margin-left: 0;
}
.table .span18 {
float: none;
width: 1404px;
margin-left: 0;
}
.table .span19 {
float: none;
width: 1484px;
margin-left: 0;
}
.table .span20 {
float: none;
width: 1564px;
margin-left: 0;
}
.table .span21 {
float: none;
width: 1644px;
margin-left: 0;
}
.table .span22 {
float: none;
width: 1724px;
margin-left: 0;
}
.table .span23 {
float: none;
width: 1804px;
margin-left: 0;
}
.table .span24 {
float: none;
width: 1884px;
margin-left: 0;
}
.table tbody tr.success td {
background-color: #dff0d8;
}
......
......@@ -472,13 +472,6 @@
.clearfix();
}
// Table columns
.tableColumns(@columnSpan: 1) {
float: none; // undo default grid column styles
width: ((@gridColumnWidth) * @columnSpan) + (@gridGutterWidth * (@columnSpan - 1)) - 16; // 16 is total padding on left and right of table cells
margin-left: 0; // undo default grid column styles
}
// Make a Grid
// Use .makeRow and .makeColumn to assign semantic layouts grid system behavior
.makeRow() {
......
......@@ -3,9 +3,6 @@
// --------------------------------------------------
// BASE TABLES
// -----------------
table {
max-width: 100%;
background-color: @tableBackground;
......@@ -13,6 +10,8 @@ table {
border-spacing: 0;
}
// BASELINE STYLES
// ---------------
......@@ -63,6 +62,7 @@ table {
}
// BORDERED VERSION
// ----------------
......@@ -139,7 +139,6 @@ table {
// ZEBRA-STRIPING
// --------------
......@@ -154,6 +153,7 @@ table {
}
// HOVER EFFECT
// ------------
// Placed here since it has to come after the potential zebra striping
......@@ -167,6 +167,7 @@ table {
}
// TABLE CELL SIZING
// -----------------
......@@ -177,34 +178,6 @@ table [class*=span] {
margin-left: 0; // undo default grid column styles
}
// Change the column widths to account for td/th padding
.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); }
.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); }
}
// TABLE BACKGROUNDS
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment