diff --git a/lms/static/sass/base/_base.scss b/lms/static/sass/base/_base.scss index aeaaf146d9..ca56f542d6 100644 --- a/lms/static/sass/base/_base.scss +++ b/lms/static/sass/base/_base.scss @@ -185,5 +185,22 @@ mark { } } +.ie-banner { + display: none; + max-width: 1140px; + min-width: 720px; + margin: auto; + @include border-radius(0 0 3px 3px); + background: #f4f4e0; + color: #3c3c3c; + padding: 5px 20px 8px; + font-size: 13px; + text-align: center; + + strong { + font-weight: 700; + } +} + diff --git a/lms/static/sass/course/layout/_courseware_header.scss b/lms/static/sass/course/layout/_courseware_header.scss index 86b5fe58c5..b5c93f8e14 100644 --- a/lms/static/sass/course/layout/_courseware_header.scss +++ b/lms/static/sass/course/layout/_courseware_header.scss @@ -168,4 +168,4 @@ header.global.slim { font-weight: bold; letter-spacing: 0; } -} +} \ No newline at end of file diff --git a/lms/static/sass/ie.scss b/lms/static/sass/ie.scss index 1a58110563..a873a1fd02 100644 --- a/lms/static/sass/ie.scss +++ b/lms/static/sass/ie.scss @@ -151,3 +151,7 @@ header.global ol.user > li.primary a.dropdown { .dashboard .my-courses .my-course .cover .arrow { display: none; } + +.ie-banner { + display: block !important; +} \ No newline at end of file diff --git a/lms/templates/navigation.html b/lms/templates/navigation.html index 2976b347de..90c9e2d383 100644 --- a/lms/templates/navigation.html +++ b/lms/templates/navigation.html @@ -79,9 +79,12 @@ site_status_msg = get_site_status_msg() % endif - %endif + +% if course: +
Warning: Your browser is not fully supported. We strongly recommend using Chrome or Firefox.
+% endif %if not user.is_authenticated(): <%include file="login_modal.html" />