From a1537fc966aaf52288770a6c7b745af161b794ed Mon Sep 17 00:00:00 2001 From: Florian Scholdei Date: Wed, 17 Apr 2019 15:18:34 +0200 Subject: [PATCH 1/2] rounded panel corners --- scm-ui/styles/scm.scss | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/scm-ui/styles/scm.scss b/scm-ui/styles/scm.scss index e02a4b28e0..92bdf2c867 100644 --- a/scm-ui/styles/scm.scss +++ b/scm-ui/styles/scm.scss @@ -214,28 +214,34 @@ $fa-font-path: "webfonts"; // panels .panel { - .panel-heading > .field { - margin-bottom: 0; // replace selector margin + border: 1px solid #dbdbdb; + border-radius: .25rem; + + .panel-heading { + border: none; + border-bottom: 1px solid #dbdbdb; + border-radius: .25rem .25rem 0 0; + + > .field { + margin-bottom: 0; // replace selector margin + } } + .panel-block { display: block; + border: none; } .panel-footer { background-color: whitesmoke; - border-radius: 0 0 4px 4px; color: #363636; font-size: 1.25em; font-weight: 300; line-height: 1.25; padding: 0.5em 0.75em; - - border-left: 1px solid #dbdbdb; - border-right: 1px solid #dbdbdb; - - &:last-child { - border-bottom: 1px solid #dbdbdb; - } + border: none; + border-top: 1px solid #dbdbdb; + border-radius: 0 0 .25rem .25rem; } } From fe55f1a4b48408876f7b76e950c8183e94b8d44f Mon Sep 17 00:00:00 2001 From: Sebastian Sdorra Date: Thu, 18 Apr 2019 07:25:05 +0000 Subject: [PATCH 2/2] Close branch feature/css_round_panel