From b51e57eddff05de3090d62ecc89ed43254419121 Mon Sep 17 00:00:00 2001 From: Brian Talbot Date: Mon, 8 Apr 2013 17:31:14 -0400 Subject: [PATCH] studio - refining style and presentation of course link and invitation button on details settings --- cms/static/sass/views/_settings.scss | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/cms/static/sass/views/_settings.scss b/cms/static/sass/views/_settings.scss index 87d076ab72..49b4406875 100644 --- a/cms/static/sass/views/_settings.scss +++ b/cms/static/sass/views/_settings.scss @@ -287,10 +287,10 @@ body.course.settings { // course link note .note-promotion-courseURL { - @include box-shadow(0 1px 1px $shadow-l1); + @include box-shadow(0 2px 1px $shadow-l1); @include border-radius(($baseline/5)); margin-top: ($baseline*1.5); - border: 1px solid $gray-l3; + border: 1px solid $gray-l4; padding: ($baseline/2) 0 0 0; .title { @@ -312,14 +312,17 @@ body.course.settings { } .list-actions { + @include transition(opacity 0.25s ease-in-out); @include box-shadow(inset 0 1px 1px $shadow-l1); border-top: 1px solid $gray-l4; padding: ($baseline/2); background: $gray-l5; + opacity: 0.5; .action-primary { @include blue-button(); @include font-size(13); + font-weight: 600; .icon { @extend .t-icon; @@ -329,6 +332,14 @@ body.course.settings { } } } + + &:hover { + border-color: $gray-l2; + + .list-actions { + opacity: 1.0; + } + } } }