diff --git a/lms/static/sass/_shame.scss b/lms/static/sass/_shame.scss index d40b1d3fc1..d0eb5b54de 100644 --- a/lms/static/sass/_shame.scss +++ b/lms/static/sass/_shame.scss @@ -16,11 +16,12 @@ display: block; padding: $baseline/2 $baseline*2.5; text-transform: lowercase; - color: $white !important; + color: $white; letter-spacing: 0.1rem; cursor: pointer; text-align: center; border: none !important; + text-decoration: none; text-shadow: none; letter-spacing: 0.1rem; font-size: 17px; @@ -52,6 +53,17 @@ } } + .btn-tertiary { + @extend .btn; + background: $m-blue-l1; + color: $m-blue; + + // no hover state conventions to follow from marketing :/ + &:hover, &:active { + + } + } + // nav list .list-actions { list-style: none; @@ -63,23 +75,23 @@ } } - // register actions .action { - } + // not registered (default) + &.action-register { + @extend .btn-primary; + } - // not registered (default) - .action-register { - @extend .btn-primary; - } + // already registered + &.is-registered { + @extend .btn-secondary; + } - // not signed in - .is-not-signedin { - @extend .btn-primary; - } - - // already registered - .is-registered { - @extend .btn-secondary; + // coming soon + &.isnot-open { + @extend .btn-tertiary; + pointer-events: none !important; + outline: none; + } } } diff --git a/lms/static/sass/base/_base.scss b/lms/static/sass/base/_base.scss index b819776890..bb0880130c 100644 --- a/lms/static/sass/base/_base.scss +++ b/lms/static/sass/base/_base.scss @@ -88,7 +88,7 @@ a:link, a:visited { width: flex-grid(12); margin: 0 auto; padding-bottom: ($baseline*2); - background: rgb(255,255,255); + background: rgb(255,255,255); } .container { @@ -210,4 +210,4 @@ mark { .sr { @include text-sr(); -} \ No newline at end of file +} diff --git a/lms/templates/courseware/mktg_coming_soon.html b/lms/templates/courseware/mktg_coming_soon.html index 4e1b9185ee..c9d2060526 100644 --- a/lms/templates/courseware/mktg_coming_soon.html +++ b/lms/templates/courseware/mktg_coming_soon.html @@ -23,7 +23,7 @@ diff --git a/lms/templates/courseware/mktg_course_about.html b/lms/templates/courseware/mktg_course_about.html index 1c9e0cb4bb..5eb98574d6 100644 --- a/lms/templates/courseware/mktg_course_about.html +++ b/lms/templates/courseware/mktg_course_about.html @@ -73,7 +73,7 @@ %endif %else: - Register for ${course.number} + Register for ${course.number} %endif diff --git a/lms/templates/mktg_iframe.html b/lms/templates/mktg_iframe.html index d37264825a..828cdfd04c 100644 --- a/lms/templates/mktg_iframe.html +++ b/lms/templates/mktg_iframe.html @@ -24,6 +24,17 @@ % if not course: <%include file="google_analytics.html" /> % endif + + +