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

change var from @table-border to @table-border-color

parent 526534f3
11 merge requests!8635ignore Gruntfile.js in jekyll,!8339Fix broken links to navbar component in docs examples,!7674Clear float on all when navbar is collapsed - v3,!7775added some tests for tooltip title setter,!8157Close Me: Docs "Customize and Download" button fix,!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
Showing with 6 additions and 6 deletions
+6 -6
......@@ -248,7 +248,7 @@ title: Customize and download
<input type="text" placeholder="#f9f9f9">
<label>@table-background-hover</label>
<input type="text" placeholder="#f5f5f5">
<label>@table-border</label>
<label>@table-border-color</label>
<input type="text" placeholder="#ddd">
<h3>Forms</h3>
......
......@@ -26,7 +26,7 @@ th {
padding: 8px;
line-height: @line-height-base;
vertical-align: top;
border-top: 1px solid @table-border;
border-top: 1px solid @table-border-color;
}
// Bottom align for column headings
thead th {
......@@ -43,7 +43,7 @@ th {
}
// Account for multiple tbody instances
tbody + tbody {
border-top: 2px solid @table-border;
border-top: 2px solid @table-border-color;
}
// Nesting
......@@ -70,13 +70,13 @@ th {
// ----------------
.table-bordered {
border: 1px solid @table-border;
border: 1px solid @table-border-color;
border-collapse: separate; // Done so we can round those corners!
border-left: 0;
border-radius: @border-radius-base;
th,
td {
border-left: 1px solid @table-border;
border-left: 1px solid @table-border-color;
}
// Prevent a double border
caption + thead tr:first-child th,
......
......@@ -78,7 +78,7 @@
@table-bg-accent: #f9f9f9; // for striping
@table-bg-hover: #f5f5f5; // for hover
@table-border: #ddd; // table and cell border
@table-border-color: #ddd; // table and cell border
// Buttons
......
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