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
9a4df9bf
Commit
9a4df9bf
authored
Sep 07, 2012
by
Kyle Fiedler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add ie fix for wiki
parent
0113e266
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
23 additions
and
13 deletions
+23
-13
lms/static/sass/course/base/_base.scss
+0
-5
lms/static/sass/course/layout/_courseware_header.scss
+1
-2
lms/static/sass/course/wiki/_wiki.scss
+1
-1
lms/static/sass/ie.scss
+11
-0
lms/templates/main.html
+3
-3
lms/templates/main_django.html
+7
-2
No files found.
lms/static/sass/course/base/_base.scss
View file @
9a4df9bf
...
...
@@ -40,11 +40,6 @@ a {
}
}
form
{
label
{
display
:
block
;
...
...
lms/static/sass/course/layout/_courseware_header.scss
View file @
9a4df9bf
...
...
@@ -40,9 +40,8 @@ nav.course-material {
}
&
.active
{
background-color
:
#333
;
background-color
:
rgba
(
0
,
0
,
0
,
0
);
@include
linear-gradient
(
top
,
rgba
(
0
,
0
,
0
,
.4
)
,
rgba
(
0
,
0
,
0
,
.25
));
background-color
:
transparent
;
@include
box-shadow
(
0
1px
0
rgba
(
255
,
255
,
255
,
.5
)
,
0
1px
1px
rgba
(
0
,
0
,
0
,
.3
)
inset
);
color
:
#fff
;
text-shadow
:
0
1px
0
rgba
(
0
,
0
,
0
,
.4
);
...
...
lms/static/sass/course/wiki/_wiki.scss
View file @
9a4df9bf
...
...
@@ -397,7 +397,7 @@ section.wiki {
#hint_id_content
{
position
:
absolute
;
top
:
10
px
;
top
:
4
px
;
right
:
0%
;
font-size
:
12px
;
text-align
:right
;
...
...
lms/static/sass/ie.scss
View file @
9a4df9bf
...
...
@@ -133,3 +133,14 @@ header.global {
.modal
.inner-wrapper
form
label
{
display
:
block
;
}
nav
.course-material
ol
.course-tabs
li
a
.active
,
nav
.course-material
.xmodule_SequenceModule
nav
.sequence-nav
ol
.course-tabs
li
a
.seq_video.active
,
.xmodule_SequenceModule
nav
.sequence-nav
nav
.course-material
ol
.course-tabs
li
a
.seq_video.active
{
background-color
:
#333
;
background-color
:
rgba
(
0
,
0
,
0
,
.4
);
}
header
.global
ol
.user
>
li
.primary
a
.dropdown
{
padding-top
:
6px
;
padding-bottom
:
6px
;
}
lms/templates/main.html
View file @
9a4df9bf
...
...
@@ -8,9 +8,6 @@
<
%
static:css
group=
'application'
/>
<!--[if lte IE 9]>
<%static:css group='ie-fixes'/>
<![endif]-->
<
%
static:js
group=
'main_vendor'
/>
<
%
block
name=
"headextra"
/>
...
...
@@ -18,6 +15,9 @@
<!--[if lt IE 9]>
<script src="${static.url('js/html5shiv.js')}"></script>
<![endif]-->
<!--[if lte IE 9]>
<%static:css group='ie-fixes'/>
<![endif]-->
<meta
name=
"path_prefix"
content=
"${MITX_ROOT_URL}"
>
</head>
...
...
lms/templates/main_django.html
View file @
9a4df9bf
...
...
@@ -11,7 +11,13 @@
{% block headextra %}{% endblock %}
{% render_block "css" %}
<!--[if lte IE 9]> <link href="{% static "sass/ie.css" %}" rel="stylesheet" type="text/css" /> <![endif]-->
<meta
name=
"path_prefix"
content=
"{{MITX_ROOT_URL}}"
>
<!--[if lt IE 9]>
<script src="{% static "js/html5shiv.js" %}"></script>
<![endif]-->
</head>
...
...
@@ -40,4 +46,4 @@
Inheriting from this file allows us to include apps that use the
django templating system without rewriting all of their views in
mako.
{% endcomment %}
\ No newline at end of file
{% endcomment %}
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