From 4fe575d8c5904e288592392b43db5250db912db2 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Mon, 14 Sep 2015 10:57:58 -0400 Subject: [PATCH] Fixing bad button style Removing unneeded styling on confirmation button; making the appearance and hover/focus behavior of the button match that of the confirmation dialog in studio. TNL-3189 --- lms/static/sass/_developer.scss | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/lms/static/sass/_developer.scss b/lms/static/sass/_developer.scss index e31d9747e7..244ec94d5b 100644 --- a/lms/static/sass/_developer.scss +++ b/lms/static/sass/_developer.scss @@ -314,3 +314,23 @@ } } +//efischer - TNL-3189 +//copied from cms/static/sass/elements/_system-feedback.scss#L106 +//along with some "hide the inherited value, we want none" action +.prompt.warning button { + @extend %btn-no-style; + box-shadow: none; + text-shadow: none; + + &:hover { + color: $orange-s2; + background: transparent; + box-shadow: none; + } + + &:focus { + box-shadow: none; + border: 0px; + } +} +