1
0
Fork 0
mirror of https://github.com/twbs/bootstrap.git synced 2022-11-09 12:25:43 -05:00

Avoid LESS nesting if isn't needed

This commit is contained in:
Zlatan Vasović 2013-09-20 18:06:48 +02:00
parent e148923f27
commit 2304ba6a25

View file

@ -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;