From 932a23fbc74e1ac2fd7570907d2259cb061b3b13 Mon Sep 17 00:00:00 2001 From: Matthew Piatetsky Date: Wed, 26 Apr 2017 13:27:15 -0400 Subject: [PATCH] Fix css bug with notification ECOM-6602 --- lms/static/sass/views/_program-details.scss | 48 ++++++++++----------- 1 file changed, 24 insertions(+), 24 deletions(-) diff --git a/lms/static/sass/views/_program-details.scss b/lms/static/sass/views/_program-details.scss index 194ebdfc6d..25a8e0a459 100644 --- a/lms/static/sass/views/_program-details.scss +++ b/lms/static/sass/views/_program-details.scss @@ -510,6 +510,30 @@ font-size: 0.9375em; } } + + .expired-notification { + display: inline-block; + padding-top: 5px; + width: 300px; + + @media(min-width: $bp-screen-sm) { + padding-top: 10px; + width: 500px; + } + @media(min-width: $bp-screen-md) { + width: initial; + } + } + + .expired-icon { + @include float(left); + color: palette(primary, dark); + } + + .expired-text { + overflow: hidden; + padding-left: 10px; + } } } @@ -614,30 +638,6 @@ border: 3px solid $gray-l3; border-radius: 5px; - .expired-notification { - display: inline-block; - padding-top: 5px; - width: 300px; - - @media(min-width: $bp-screen-sm) { - padding-top: 10px; - width: 500px; - } - @media(min-width: $bp-screen-md) { - width: initial; - } - } - - .expired-icon { - @include float(left); - color: palette(primary, dark); - } - - .expired-text { - overflow: hidden; - padding-left: 10px; - } - @media(min-width: $bp-screen-md) { width: 100px; }