aboutsummaryrefslogtreecommitdiff
path: root/less/tables.less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-11-30 15:05:23 -0800
committerMark Otto <[email protected]>2012-11-30 15:05:23 -0800
commit9239bfbc7bbd549d987da03046399dd5fcbd5f7f (patch)
tree59ccd973d5d5a0c4c87f7d98520cc505834edd24 /less/tables.less
parentb0e2b5813db753bdfa3ee018ccdd73e78a69457e (diff)
downloadbootstrap-9239bfbc7bbd549d987da03046399dd5fcbd5f7f.tar.xz
bootstrap-9239bfbc7bbd549d987da03046399dd5fcbd5f7f.zip
more vars changed, remove @white var
Diffstat (limited to 'less/tables.less')
-rw-r--r--less/tables.less14
1 files changed, 7 insertions, 7 deletions
diff --git a/less/tables.less b/less/tables.less
index c42aca6a1..58aadf7bb 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -5,7 +5,7 @@
table {
max-width: 100%;
- background-color: @tableBackground;
+ background-color: @table-background;
border-collapse: collapse;
border-spacing: 0;
}
@@ -25,7 +25,7 @@ table {
line-height: @line-height-base;
text-align: left;
vertical-align: top;
- border-top: 1px solid @tableBorder;
+ border-top: 1px solid @table-border;
}
th {
font-weight: bold;
@@ -45,7 +45,7 @@ table {
}
// Account for multiple tbody instances
tbody + tbody {
- border-top: 2px solid @tableBorder;
+ border-top: 2px solid @table-border;
}
}
@@ -67,13 +67,13 @@ table {
// ----------------
.table-bordered {
- border: 1px solid @tableBorder;
+ border: 1px solid @table-border;
border-collapse: separate; // Done so we can round those corners!
border-left: 0;
border-radius: @border-radius-base;
th,
td {
- border-left: 1px solid @tableBorder;
+ border-left: 1px solid @table-border;
}
// Prevent a double border
caption + thead tr:first-child th,
@@ -143,7 +143,7 @@ table {
tbody {
tr:nth-child(odd) td,
tr:nth-child(odd) th {
- background-color: @tableBackgroundAccent;
+ background-color: @table-background-accent;
}
}
}
@@ -157,7 +157,7 @@ table {
tbody {
tr:hover td,
tr:hover th {
- background-color: @tableBackgroundHover;
+ background-color: @table-background-hover;
}
}
}