diff options
| author | Mark Otto <[email protected]> | 2013-08-14 15:32:21 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-14 15:32:21 -0700 |
| commit | 60a281507a0a2438e07bf7131ed4d19fd6647715 (patch) | |
| tree | 852427ebc9abead5184bf1539bcb5027f9f80c12 | |
| parent | 057a87ed6565b46c3c2da6c8da2599576117b655 (diff) | |
| parent | 80d1b6b117c76ecbbb635b626a2485dda5cf801c (diff) | |
| download | bootstrap-60a281507a0a2438e07bf7131ed4d19fd6647715.tar.xz bootstrap-60a281507a0a2438e07bf7131ed4d19fd6647715.zip | |
Merge pull request #9498 from ggam/panel-variant-fix
Made panel-variant apply styles only to first child
| -rw-r--r-- | less/mixins.less | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/less/mixins.less b/less/mixins.less index eb80823e5..0f30c2984 100644 --- a/less/mixins.less +++ b/less/mixins.less @@ -331,7 +331,7 @@ // ------------------------- .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { border-color: @border; - .panel-heading { + & > .panel-heading { color: @heading-text-color; background-color: @heading-bg-color; border-color: @heading-border; @@ -339,7 +339,7 @@ border-top-color: @border; } } - .panel-footer { + & > .panel-footer { + .panel-collapse .panel-body { border-bottom-color: @border; } |
