aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-04-14 19:45:32 -0700
committerMark Otto <[email protected]>2013-04-14 19:45:32 -0700
commitab7070bb49cf4cd68d19c84ce5a50ee939b9589d (patch)
treea53c4bcffc8964013d2f0a70f9fa05adcbb52d3c
parent526534f337b1c2b60b08189618988256f0775cbd (diff)
downloadbootstrap-ab7070bb49cf4cd68d19c84ce5a50ee939b9589d.tar.xz
bootstrap-ab7070bb49cf4cd68d19c84ce5a50ee939b9589d.zip
change var from @table-border to @table-border-color
-rw-r--r--docs/customize.html2
-rw-r--r--less/tables.less8
-rw-r--r--less/variables.less2
3 files changed, 6 insertions, 6 deletions
diff --git a/docs/customize.html b/docs/customize.html
index 61a789b1a..e445ccab9 100644
--- a/docs/customize.html
+++ b/docs/customize.html
@@ -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>
diff --git a/less/tables.less b/less/tables.less
index 987921937..52261815e 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -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,
diff --git a/less/variables.less b/less/variables.less
index e612bb94b..37e602631 100644
--- a/less/variables.less
+++ b/less/variables.less
@@ -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