From e1ba3da781333651be1116462a83af1670cee1b0 Mon Sep 17 00:00:00 2001 From: srph Date: Wed, 18 Nov 2015 15:59:26 +0800 Subject: [PATCH] Lighte borders of panel. Resolves https://github.com/dev-onenetworkecommerce/aia/issues/182. --- docs/dist/style.css | 4 ++-- styles/components/_panel.scss | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/dist/style.css b/docs/dist/style.css index 6e159ae..54ed6da 100644 --- a/docs/dist/style.css +++ b/docs/dist/style.css @@ -5988,13 +5988,13 @@ hr { .panel { color: #4A4A4A; background: #fff; - border: 1px solid #C4C4C4; + border: 1px solid #F0F0F0; border-radius: 5px; } .panel > .heading { padding: 10px 15px; border-top-left-radius: 5px; border-top-right-radius: 5px; - border-bottom: 1px solid #C4C4C4; } + border-bottom: 1px solid #F0F0F0; } .panel > .heading > * { margin-bottom: 0; } .panel > .body { diff --git a/styles/components/_panel.scss b/styles/components/_panel.scss index 7878edc..8a64007 100644 --- a/styles/components/_panel.scss +++ b/styles/components/_panel.scss @@ -1,14 +1,14 @@ .panel { color: $brand-black; background: $brand-white; - border: 1px solid $brand-gray; + border: 1px solid $brand-gray-lt; border-radius: 5px; > .heading { padding: 10px 15px; border-top-left-radius: $border-radius-base; border-top-right-radius: $border-radius-base; - border-bottom: 1px solid $brand-gray; + border-bottom: 1px solid $brand-gray-lt; } > .heading > * {