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
64b92c35
Commit
64b92c35
authored
Jul 20, 2012
by
Calen Pennington
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Include ie fixes in via django-pipeline
parent
1b3f03e2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletions
+11
-1
lms/envs/common.py
+5
-1
lms/static/sass/ie.scss
+3
-0
lms/templates/main.html
+3
-0
No files found.
lms/envs/common.py
View file @
64b92c35
...
...
@@ -294,9 +294,13 @@ PIPELINE_CSS = {
'source_filenames'
:
[
'sass/application.scss'
],
'output_filename'
:
'css/application.css'
,
},
'ie-fixes'
:
{
'source_filenames'
:
[
'sass/ie.scss'
],
'output_filename'
:
'css/ie.css'
,
},
}
PIPELINE_ALWAYS_RECOMPILE
=
[
'sass/application.scss'
]
PIPELINE_ALWAYS_RECOMPILE
=
[
'sass/application.scss'
,
'sass/ie.scss'
]
PIPELINE_JS
=
{
'application'
:
{
...
...
lms/static/sass/ie.scss
View file @
64b92c35
@import
"bourbon/bourbon"
;
@import
"base/variables"
;
// These are all quick solutions for IE please rewrite
.highlighted-courses
.courses
.course
header
.course-preview
,
.find-courses
.courses
.course
header
.course-preview
,
.home
.highlighted-courses
>
h2
,
.home
.highlighted-courses
>
section
.outside-app
h1
,
section
.outside-app
.home
.highlighted-courses
>
h1
,
...
...
lms/templates/main.html
View file @
64b92c35
...
...
@@ -9,6 +9,9 @@
% if settings.MITX_FEATURES['USE_DJANGO_PIPELINE']:
<
%
static:css
group=
'application'
/>
<!--[if lt IE 9]>
<%static:css group='ie-fixes'/>
<![endif]-->
% endif
% if not settings.MITX_FEATURES['USE_DJANGO_PIPELINE']:
...
...
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