Skip to content
Snippets Groups Projects
Commit f06440a3 authored by Shane Tomlinson's avatar Shane Tomlinson Committed by Sean McArthur
Browse files

Fix IE8 showing the red line on the signin page.

parent 4ebf1a44
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,8 @@ ...@@ -3,7 +3,8 @@
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
noscript { #noscript-warning {
position: absolute;
position: fixed; position: fixed;
display: block; display: block;
background-color: #ef1010; background-color: #ef1010;
......
<noscript>
<!-- IE8 has a rendering bug with noscript tags, content must be placed
inside of another element to be styled -->
<p id="noscript-warning">
<%- gettext('We\'re sorry, Persona requires that Javascript is enabled.') %>
</p>
</noscript>
...@@ -113,7 +113,5 @@ ...@@ -113,7 +113,5 @@
</div> </div>
</div> </div>
<noscript> <%- partial('partial/noscript-warning') %>
<%- gettext('We\'re sorry, Persona requires that Javascript is enabled.') %>
</noscript>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment