Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
9969549b
Commit
9969549b
authored
Jun 26, 2015
by
Frances Botsford
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix for instr dash and wiki responsive
parent
033d36c8
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
26 additions
and
21 deletions
+26
-21
lms/static/sass/base/_layouts.scss
+3
-1
lms/static/sass/shared/_header.scss
+1
-1
lms/templates/main_django.html
+22
-19
No files found.
lms/static/sass/base/_layouts.scss
View file @
9969549b
...
@@ -55,7 +55,9 @@ body.view-incourse {
...
@@ -55,7 +55,9 @@ body.view-incourse {
// courseware and progress page
// courseware and progress page
.course-wrapper
,
.course-wrapper
,
.profile-wrapper
{
.profile-wrapper
,
.instructor-dashboard-wrapper-2
,
.wiki-wrapper
{
max-width
:
1180px
;
max-width
:
1180px
;
margin
:
0
auto
;
margin
:
0
auto
;
padding
:
0
;
padding
:
0
;
...
...
lms/static/sass/shared/_header.scss
View file @
9969549b
...
@@ -118,8 +118,8 @@ header.global {
...
@@ -118,8 +118,8 @@ header.global {
.user
{
.user
{
@include
float
(
right
);
@include
float
(
right
);
@extend
%ui-print-excluded
;
@extend
%ui-print-excluded
;
margin-top
:
(
$baseline
/
4
);
margin-top
:
(
$baseline
/
4
);
padding-left
:
0
;
>
.primary
{
>
.primary
{
display
:
block
;
display
:
block
;
...
...
lms/templates/main_django.html
View file @
9969549b
...
@@ -27,30 +27,33 @@
...
@@ -27,30 +27,33 @@
</head>
</head>
<body
class=
"{% block bodyclass %}{% endblock %} lang_{{LANGUAGE_CODE}}"
>
<body
class=
"{% block bodyclass %}{% endblock %} lang_{{LANGUAGE_CODE}}"
>
<a
class=
"nav-skip"
href=
"{% block nav_skip %}#content{% endblock %}"
>
{% trans "Skip to main content" %}
</a>
<div
class=
"window-wrap"
dir=
"${static.dir_rtl()}"
>
{% with course=request.course %}
<a
class=
"nav-skip"
href=
"{% block nav_skip %}#content{% endblock %}"
>
{% trans "Skip to main content" %}
</a>
{% if IS_EDX_DOMAIN %}
{% with course=request.course %}
{% include "navigation-edx.html" %}
{% if IS_EDX_DOMAIN %}
{% include "navigation-edx.html" %}
{% else %}
{% include "navigation.html" %}
{% endif %}
{% endwith %}
<div
class=
"content-wrapper"
id=
"content"
>
{% block body %}{% endblock %}
{% block bodyextra %}{% endblock %}
</div>
{% if IS_REQUEST_IN_MICROSITE %}
{# For now we don't support overriden Django templates in microsites. Leave footer blank for now which is better than saying Edx.#}
{% elif IS_EDX_DOMAIN %}
{% include "footer-edx-v3.html" %}
{% else %}
{% else %}
{% include "
navigation
.html" %}
{% include "
footer
.html" %}
{% endif %}
{% endif %}
{% endwith %}
<div
class=
"content-wrapper"
id=
"content"
>
{% block body %}{% endblock %}
{% block bodyextra %}{% endblock %}
</div>
</div>
{% if IS_REQUEST_IN_MICROSITE %}
{# For now we don't support overriden Django templates in microsites. Leave footer blank for now which is better than saying Edx.#}
{% elif IS_EDX_DOMAIN %}
{% include "footer-edx-v3.html" %}
{% else %}
{% include "footer.html" %}
{% endif %}
{% compressed_js 'application' %}
{% compressed_js 'application' %}
{% compressed_js 'module-js' %}
{% compressed_js 'module-js' %}
{% render_block "js" %}
{% render_block "js" %}
</body>
</body>
</html>
</html>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment