Reverted to refering to font-awesome.min.css after debugging. Removed an unused css class, and instead added an id='content' on the content-holding div, for use as a selector in tests. Reverted to scheme-less script src for jquery from ajax.googleapis.com.

- Legacy-Id: 9393
This commit is contained in:
Henrik Levkowetz 2015-04-04 08:54:49 +00:00
parent 20bfe9d39e
commit 97d0d7cc98

View file

@ -8,7 +8,7 @@
<link rel="stylesheet" href="/css/bootstrap.min.css">
<link rel="stylesheet" href="/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="/css/font-awesome.css">
<link rel="stylesheet" href="/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/ietf.css">
<style>
{% block morecss %}{% endblock %}
@ -56,7 +56,7 @@
</div>
</nav>
<div class="content container-fluid">
<div class="container-fluid">
{% if messages %}
<div class="row">
<div class="col-lg-12">
@ -74,7 +74,7 @@
{% include "base/menu.html" with flavor="left" %}
</ul>
</div>
<div class="col-md-10">
<div class="col-md-10" id="content">
<!--[if lt IE 8]>
<p id="browsehappy" class="collapse alert alert-warning alert-dismissible">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
@ -139,7 +139,7 @@
</div>
</footer>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/js/lib/jquery-1.11.2.min.js"><\/script>')</script>
<!-- Remove the *-nojs attributes if we are running js. This depends on jQuery's removeClass(): -->
<!-- Do this as early as possible (after loading the page and jQuery) to avoid rendering changes -->