Commit f7bcf63504b956da2a09ed436f0198dd28d89b3c
1 parent
1ecfda0c
Exists in
master
and in
39 other branches
Updated gitlab workaround
Showing
2 changed files
with
21 additions
and
0 deletions
Show diff stats
src/proxy/gitlab/diazo.xml
@@ -13,6 +13,15 @@ | @@ -13,6 +13,15 @@ | ||
13 | <after theme-children="/html/head"> | 13 | <after theme-children="/html/head"> |
14 | <script>jQuery.noConflict();</script> | 14 | <script>jQuery.noConflict();</script> |
15 | <style> | 15 | <style> |
16 | + div#main-content{ | ||
17 | + margin-top: 50px; | ||
18 | + } | ||
19 | + div#main-content div.container { | ||
20 | + width: 1110px; | ||
21 | + } | ||
22 | + div#main-content div.flash-container{ | ||
23 | + width: 85%; | ||
24 | + } | ||
16 | #breadcrumbs { | 25 | #breadcrumbs { |
17 | border: 0 !important; | 26 | border: 0 !important; |
18 | } | 27 | } |
@@ -0,0 +1,12 @@ | @@ -0,0 +1,12 @@ | ||
1 | +{% extends 'base.html' %} | ||
2 | +{% load static %} | ||
3 | + | ||
4 | +{% block head_js %} | ||
5 | +<script type="text/javascript"> | ||
6 | + $(function(){ | ||
7 | + $('div.panel-body div.automerge_widget').removeClass('hide'); | ||
8 | + }); | ||
9 | +</script> | ||
10 | +<script type="text/javascript" src="{% static 'third-party/bootstrap/js/bootstrap.min.js' %}"></script> | ||
11 | +<script type="text/javascript" src="{% static 'third-party/jquery.cookie.js' %}"></script> | ||
12 | +{% endblock %} |