From cee164f49c8d9ef5590c7be85943078a8fdd8863 Mon Sep 17 00:00:00 2001 From: SergeyKhval Date: Tue, 7 Mar 2017 10:34:58 +0300 Subject: [PATCH] fix #1091: remove container/container-fluid cascade dependency from well/jumbotron --- less/_welljumbo.less | 43 ++++++++++++++++++------------------------- 1 file changed, 18 insertions(+), 25 deletions(-) diff --git a/less/_welljumbo.less b/less/_welljumbo.less index 16bb9372..372ce170 100644 --- a/less/_welljumbo.less +++ b/less/_welljumbo.less @@ -1,26 +1,19 @@ -body { - .container, - .container-fluid { - - .well.well-sm { - padding: 10px; - } - .well.well-lg { - padding: 26px; - } - .well, - .jumbotron { - - background-color: #fff; - padding: 19px; - margin-bottom: 20px; - .shadow-z-2(); - border-radius: @border-radius-base; - border: 0; - p { - font-weight: 300; - } - .variations(~"", ~"", background-color, @white); - } - } +.well.well-sm { + padding: 10px; +} +.well.well-lg { + padding: 26px; +} +.well, +.jumbotron { + background-color: #fff; + padding: 19px; + margin-bottom: 20px; + .shadow-z-2(); + border-radius: @border-radius-base; + border: 0; + p { + font-weight: 300; + } + .variations(~"", ~"", background-color, @white); }