diff options
| author | Mark Otto <[email protected]> | 2015-01-17 21:07:13 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2015-01-17 21:07:13 -0800 |
| commit | e39b5b5b25c515a95f0293f076fe540742bd2a28 (patch) | |
| tree | 48f0da41c027cd7c7efe0fe7d62f38a4e355bda1 | |
| parent | 8a1efe91df296e62bc560e51b462e9d51d31a988 (diff) | |
| parent | 0c8cb3f2dca3aa2dafec5762092fcf728dd2f962 (diff) | |
| download | bootstrap-e39b5b5b25c515a95f0293f076fe540742bd2a28.tar.xz bootstrap-e39b5b5b25c515a95f0293f076fe540742bd2a28.zip | |
Merge pull request #15551 from lee101/master
Fix table-striped to work with bootstraps tooltips on rows
| -rw-r--r-- | less/tables.less | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/less/tables.less b/less/tables.less index 3c801aedb..2242c0368 100644 --- a/less/tables.less +++ b/less/tables.less @@ -111,7 +111,7 @@ th { // Default zebra-stripe styles (alternating gray and transparent backgrounds) .table-striped { - > tbody > tr:nth-child(odd) { + > tbody > tr:nth-of-type(odd) { background-color: @table-bg-accent; } } |
