Commit aec8cc42 by Kyle Fiedler

Add ie fix for wiki

parent 012edbfd
...@@ -40,11 +40,6 @@ a { ...@@ -40,11 +40,6 @@ a {
} }
} }
form { form {
label { label {
display: block; display: block;
......
...@@ -40,9 +40,8 @@ nav.course-material { ...@@ -40,9 +40,8 @@ nav.course-material {
} }
&.active { &.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)); @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); @include box-shadow(0 1px 0 rgba(255, 255, 255, .5), 0 1px 1px rgba(0, 0, 0, .3) inset);
color: #fff; color: #fff;
text-shadow: 0 1px 0 rgba(0, 0, 0, .4); text-shadow: 0 1px 0 rgba(0, 0, 0, .4);
......
...@@ -397,7 +397,7 @@ section.wiki { ...@@ -397,7 +397,7 @@ section.wiki {
#hint_id_content { #hint_id_content {
position: absolute; position: absolute;
top: 10px; top: 4px;
right: 0%; right: 0%;
font-size: 12px; font-size: 12px;
text-align:right; text-align:right;
......
...@@ -133,3 +133,14 @@ header.global { ...@@ -133,3 +133,14 @@ header.global {
.modal .inner-wrapper form label { .modal .inner-wrapper form label {
display: block; 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;
}
...@@ -8,9 +8,6 @@ ...@@ -8,9 +8,6 @@
<%static:css group='application'/> <%static:css group='application'/>
<!--[if lte IE 9]>
<%static:css group='ie-fixes'/>
<![endif]-->
<%static:js group='main_vendor'/> <%static:js group='main_vendor'/>
<%block name="headextra"/> <%block name="headextra"/>
...@@ -18,6 +15,9 @@ ...@@ -18,6 +15,9 @@
<!--[if lt IE 9]> <!--[if lt IE 9]>
<script src="${static.url('js/html5shiv.js')}"></script> <script src="${static.url('js/html5shiv.js')}"></script>
<![endif]--> <![endif]-->
<!--[if lte IE 9]>
<%static:css group='ie-fixes'/>
<![endif]-->
<meta name="path_prefix" content="${MITX_ROOT_URL}"> <meta name="path_prefix" content="${MITX_ROOT_URL}">
</head> </head>
......
...@@ -11,7 +11,13 @@ ...@@ -11,7 +11,13 @@
{% block headextra %}{% endblock %} {% block headextra %}{% endblock %}
{% render_block "css" %} {% 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}}"> <meta name="path_prefix" content="{{MITX_ROOT_URL}}">
<!--[if lt IE 9]>
<script src="{% static "js/html5shiv.js" %}"></script>
<![endif]-->
</head> </head>
...@@ -40,4 +46,4 @@ ...@@ -40,4 +46,4 @@
Inheriting from this file allows us to include apps that use the Inheriting from this file allows us to include apps that use the
django templating system without rewriting all of their views in django templating system without rewriting all of their views in
mako. mako.
{% endcomment %} {% endcomment %}
\ No newline at end of file
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