Commit f66261c9 by frances botsford

Merge pull request #8309 from edx/frances/responsive-lms-cleanup

Responsive LMS cleanup
parents 1885b73f 03d5589e
...@@ -66,3 +66,6 @@ ...@@ -66,3 +66,6 @@
// search // search
@import 'search/_search'; @import 'search/_search';
// responsive
@import 'base/layouts'; // temporary spot for responsive course
// base layout styles to support early responsive lms
// may be discarded later once sass breakpoints are wired in
// overriding existing styles on the body element
// .view-incourse scopes these rules to be specific to student being in a course
body.view-incourse {
background-color: $body-bg;
// keep application of widths to window-wrap
.window-wrap {
min-width: 760px;
}
// courseware header
header.global,
header.global.slim {
width: auto;
.nav-wrapper {
min-width: auto;
padding-right: 2%;
padding-left: 2%;
}
}
// courseware tabs and staff preview bar
.wrapper-course-material,
.wrapper-preview-menu {
padding: 0;
}
.wrapper-course-material .course-material,
.wrapper-preview-menu .preview-menu {
width: auto;
padding: 15px 2%;
}
.wrapper-course-material .course-material .course-tabs {
padding: 0;
}
// content area wrapper
.container {
max-width: none;
min-width: initial;
width: auto;
padding: 0 2%;
}
// course info page
.info-wrapper {
max-width: 1180px;
margin: 0 auto;
}
// courseware and progress page
.course-wrapper,
.profile-wrapper {
max-width: 1180px;
margin: 0 auto ($baseline*2) auto;
padding: 0;
}
// post-container footer (creative commons)
.container-footer {
max-width: none;
min-width: none;
width: auto;
}
.course-license {
max-width: 1180px;
margin: 0 auto;
padding-right: 2%;
padding-left: 2%;
}
// site footer
.wrapper-footer {
padding-right: 2%;
padding-left: 2%;
footer#footer-openedx { // TODO check edX footer when it launches
min-width: auto;
}
}
}
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
// * +Resets - Old, Misc // * +Resets - Old, Misc
// +Containers // +Containers
// ==================== // ====================
.content-wrapper { .content-wrapper {
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
// ==================== // ====================
body { body {
min-width: 980px;
min-height: 100%; min-height: 100%;
background-color: $course-bg-color; background-color: $course-bg-color;
......
...@@ -47,7 +47,6 @@ html.video-fullscreen{ ...@@ -47,7 +47,6 @@ html.video-fullscreen{
margin: 0 auto; margin: 0 auto;
max-width: grid-width(12); max-width: grid-width(12);
min-width: 760px; min-width: 760px;
width: flex-grid(12);
color: $gray; color: $gray;
text-align: $bi-app-right; text-align: $bi-app-right;
} }
...@@ -91,7 +90,7 @@ html.video-fullscreen{ ...@@ -91,7 +90,7 @@ html.video-fullscreen{
} }
} }
// TO-DO should this be content wrapper? // TO-DO should this be content wrapper?
div.course-wrapper { div.course-wrapper {
position: relative; position: relative;
......
...@@ -164,7 +164,7 @@ header.global.slim { ...@@ -164,7 +164,7 @@ header.global.slim {
h2 { h2 {
display: block; display: block;
width: 550px; width: 65%;
@include float(left); @include float(left);
font-size: 0.9em; font-size: 0.9em;
font-weight: 600; font-weight: 600;
......
...@@ -3,11 +3,11 @@ ...@@ -3,11 +3,11 @@
@include box-sizing(border-box); @include box-sizing(border-box);
margin: 0 auto 0; margin: 0 auto 0;
padding: ($baseline*0.75); padding: ($baseline*0.75);
width: 100%;
background-color: $gray-l3; background-color: $gray-l3;
.preview-menu { .preview-menu {
@extend %inner-wrapper; @extend %inner-wrapper;
width: auto;
} }
.preview-actions { .preview-actions {
......
...@@ -10,7 +10,7 @@ from edxnotes.helpers import is_feature_enabled as is_edxnotes_enabled ...@@ -10,7 +10,7 @@ from edxnotes.helpers import is_feature_enabled as is_edxnotes_enabled
<% return _("{course_number} Courseware").format(course_number=course.display_number_with_default) %> <% return _("{course_number} Courseware").format(course_number=course.display_number_with_default) %>
</%def> </%def>
<%block name="bodyclass">courseware ${course.css_class or ''}</%block> <%block name="bodyclass">view-incourse view-courseware courseware ${course.css_class or ''}</%block>
<%block name="title"><title> <%block name="title"><title>
% if section_title: % if section_title:
${page_title_breadcrumbs(section_title, course_name())} ${page_title_breadcrumbs(section_title, course_name())}
......
...@@ -10,7 +10,7 @@ from edxnotes.helpers import is_feature_enabled as is_edxnotes_enabled ...@@ -10,7 +10,7 @@ from edxnotes.helpers import is_feature_enabled as is_edxnotes_enabled
<% return _("{course_number} Courseware").format(course_number=course.display_number_with_default) %> <% return _("{course_number} Courseware").format(course_number=course.display_number_with_default) %>
</%def> </%def>
<%block name="bodyclass">courseware ${course.css_class or ''}</%block> <%block name="bodyclass">view-incourse view-courseware courseware ${course.css_class or ''}</%block>
<%block name="title"><title> <%block name="title"><title>
% if section_title: % if section_title:
${page_title_breadcrumbs(section_title, course_name())} ${page_title_breadcrumbs(section_title, course_name())}
......
...@@ -42,7 +42,7 @@ $(document).ready(function(){ ...@@ -42,7 +42,7 @@ $(document).ready(function(){
</script> </script>
</%block> </%block>
<%block name="bodyclass">${course.css_class or ''}</%block> <%block name="bodyclass">view-incourse view-course-info ${course.css_class or ''}</%block>
<section class="container"> <section class="container">
<div class="info-wrapper"> <div class="info-wrapper">
% if user.is_authenticated(): % if user.is_authenticated():
......
...@@ -7,6 +7,7 @@ from util.date_utils import get_time_display, DEFAULT_LONG_DATE_FORMAT ...@@ -7,6 +7,7 @@ from util.date_utils import get_time_display, DEFAULT_LONG_DATE_FORMAT
from django.conf import settings from django.conf import settings
from django.utils.http import urlquote_plus from django.utils.http import urlquote_plus
%> %>
<%block name="bodyclass">view-incourse view-progress</%block>
<%block name="headextra"> <%block name="headextra">
<%static:css group='style-course-vendor'/> <%static:css group='style-course-vendor'/>
......
<%inherit file="/main.html" /> <%inherit file="/main.html" />
<%block name="bodyclass">${course.css_class or ''}</%block> <%block name="bodyclass">view-incourse view-statictab ${course.css_class or ''}</%block>
<%namespace name='static' file='/static_content.html'/> <%namespace name='static' file='/static_content.html'/>
<%block name="headextra"> <%block name="headextra">
......
...@@ -48,7 +48,7 @@ site_status_msg = get_site_status_msg(course_id) ...@@ -48,7 +48,7 @@ site_status_msg = get_site_status_msg(course_id)
</h1> </h1>
% if course and not disable_courseware_header: % if course and not disable_courseware_header:
<h2><span class="provider">${course.display_org_with_default | h}:</span> ${course.display_number_with_default | h} ${course.display_name_with_default}</h2> <h2 class="course-header"><span class="provider">${course.display_org_with_default | h}:</span> ${course.display_number_with_default | h} ${course.display_name_with_default}</h2>
% endif % endif
% if user.is_authenticated(): % if user.is_authenticated():
......
...@@ -38,7 +38,7 @@ site_status_msg = get_site_status_msg(course_id) ...@@ -38,7 +38,7 @@ site_status_msg = get_site_status_msg(course_id)
</%block> </%block>
<header id="global-navigation" class="global ${"slim" if course else ""}" > <header id="global-navigation" class="global ${"slim" if course else ""}" >
<nav aria-label="${_('Global')}"> <nav class="nav-wrapper" aria-label="${_('Global')}">
<h1 class="logo"> <h1 class="logo">
<a href="${marketing_link('ROOT')}"> <a href="${marketing_link('ROOT')}">
<%block name="navigation_logo"> <%block name="navigation_logo">
...@@ -48,7 +48,7 @@ site_status_msg = get_site_status_msg(course_id) ...@@ -48,7 +48,7 @@ site_status_msg = get_site_status_msg(course_id)
</h1> </h1>
% if course: % if course:
<h2><span class="provider">${course.display_org_with_default | h}:</span> <h2 class="course-header"><span class="provider">${course.display_org_with_default | h}:</span>
${course.display_number_with_default | h} ${course.display_number_with_default | h}
<% <%
display_name = course.display_name_with_default display_name = course.display_name_with_default
......
...@@ -3,12 +3,14 @@ ...@@ -3,12 +3,14 @@
{% block title %}<title>{% block pagetitle %}{% endblock %} | {% trans "Wiki" %} | {% platform_name %}</title>{% endblock %} {% block title %}<title>{% block pagetitle %}{% endblock %} | {% trans "Wiki" %} | {% platform_name %}</title>{% endblock %}
{% block bodyclass %}view-incourse view-wiki{% endblock %}
{% block headextra %} {% block headextra %}
{% compressed_css 'course' %} {% compressed_css 'course' %}
<script type="text/javascript"> <script type="text/javascript">
function ajaxError(){} function ajaxError(){}
$.ajaxSetup({ $.ajaxSetup({
timeout: 7000, timeout: 7000,
cache: false, cache: false,
...@@ -58,7 +60,7 @@ ...@@ -58,7 +60,7 @@
<section class="container wiki {{ selected_tab }}" id="wiki-content"> <section class="container wiki {{ selected_tab }}" id="wiki-content">
<div class="wiki-wrapper"> <div class="wiki-wrapper">
{% block wiki_body %} {% block wiki_body %}
{% block wiki_breadcrumbs %}{% endblock %} {% block wiki_breadcrumbs %}{% endblock %}
{% if messages %} {% if messages %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment