aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZlatan Vasović <[email protected]>2013-09-20 18:06:48 +0200
committerZlatan Vasović <[email protected]>2013-09-20 18:06:48 +0200
commit2304ba6a256b55f79772ace77a04466790bcb161 (patch)
treef8b35127fd41c6a60dcb2bfdf47b2a5b60c4cb98
parente148923f2764d0af6f7d6fb1b601840d241759b5 (diff)
downloadbootstrap-2304ba6a256b55f79772ace77a04466790bcb161.tar.xz
bootstrap-2304ba6a256b55f79772ace77a04466790bcb161.zip
Avoid LESS nesting if isn't needed
-rw-r--r--less/tables.less36
1 files changed, 13 insertions, 23 deletions
diff --git a/less/tables.less b/less/tables.less
index 35291750a..f9f0041e4 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -91,12 +91,10 @@ th {
}
}
}
- > thead {
- > tr {
- > th,
- > td {
- border-bottom-width: 2px;
- }
+ > thead > tr {
+ > th,
+ > td {
+ border-bottom-width: 2px;
}
}
}
@@ -106,14 +104,10 @@ th {
//
// Default zebra-stripe styles (alternating gray and transparent backgrounds)
-.table-striped {
- > tbody {
- > tr:nth-child(odd) {
- > td,
- > th {
- background-color: @table-bg-accent;
- }
- }
+.table-striped > tbody > tr:nth-child(odd) {
+ > td,
+ > th {
+ background-color: @table-bg-accent;
}
}
@@ -122,14 +116,10 @@ th {
//
// Placed here since it has to come after the potential zebra striping
-.table-hover {
- > tbody {
- > tr:hover {
- > td,
- > th {
- background-color: @table-bg-hover;
- }
- }
+.table-hover > tbody > tr:hover {
+ > td,
+ > th {
+ background-color: @table-bg-hover;
}
}
@@ -191,7 +181,7 @@ table {
border: 1px solid @table-border-color;
-webkit-overflow-scrolling: touch;
- // Tighten up spacing and give a background color
+ // Tighten up spacing
> .table {
margin-bottom: 0;