diff options
| author | Mark Otto <[email protected]> | 2013-12-15 22:04:57 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-12-15 22:04:57 -0800 |
| commit | 05b0a74d9af87c468c227fd77d71bf237100668f (patch) | |
| tree | e36d15fa22edfd8df97d710ec8c503c493b4f55d | |
| parent | 6bb73df50ee78f443105e9265721317eaebbbe6a (diff) | |
| parent | 637b20f6d584913815a60f0429b8e76c3bd10375 (diff) | |
| download | bootstrap-05b0a74d9af87c468c227fd77d71bf237100668f.tar.xz bootstrap-05b0a74d9af87c468c227fd77d71bf237100668f.zip | |
Merge pull request #11887 from twbs/minor-panels-refactor
minor refactoring of 4ee93c9f8529cfeef56d4178b91e1ddcb0bff09c
| -rw-r--r-- | less/panels.less | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/less/panels.less b/less/panels.less index eefaf2e87..ef8786867 100644 --- a/less/panels.less +++ b/less/panels.less @@ -95,15 +95,17 @@ border: 0; margin-bottom: 0; } - > .table-striped > tbody > tr:last-child, - > .table-responsive > .table-striped > tbody > tr:last-child { - td:first-child, - th:first-child { - border-bottom-left-radius: (@panel-border-radius - 1); - } - td:last-child, - th:last-child { - border-bottom-left-radius: (@panel-border-radius - 1); + > .table-striped, + > .table-responsive > .table-striped { + > tbody > tr:last-child { + td:first-child, + th:first-child { + border-bottom-left-radius: (@panel-border-radius - 1); + } + td:last-child, + th:last-child { + border-bottom-left-radius: (@panel-border-radius - 1); + } } } } |
