From 96fc306337cba13c9e6d8c2300aa03aeacd2779e Mon Sep 17 00:00:00 2001 From: Chris Rodriguez Date: Fri, 21 Aug 2015 10:17:40 -0400 Subject: [PATCH] Fixes modal color --- lms/static/sass/shared/_modal.scss | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/lms/static/sass/shared/_modal.scss b/lms/static/sass/shared/_modal.scss index fd6da29cb5..f3aacb5e5c 100644 --- a/lms/static/sass/shared/_modal.scss +++ b/lms/static/sass/shared/_modal.scss @@ -12,15 +12,15 @@ .modal { @extend %ui-depth1; - background: $gray-d2; - border-radius: 3px; - box-shadow: 0 0px 5px 0 $shadow-d1; - color: $white; display: none; + position: absolute; left: 50%; padding: 8px; - position: absolute; width: grid-width(5); + border-radius: 3px; + box-shadow: 0 0px 5px 0 $shadow-d1; + background: $gray-d2; + color: $base-font-color; &.video-modal { left: 50%; @@ -62,6 +62,11 @@ padding-bottom: ($baseline/2); position: relative; + p { + font-size: .9em; + line-height: 1.4; + } + header { @extend %ui-depth1; margin-bottom: ($baseline*1.5);