]> git.parisson.com Git - teleforma.git/commitdiff
increase admin text fields width
authorGuillaume Pellerin <yomguy@parisson.com>
Tue, 26 Jan 2016 13:24:02 +0000 (14:24 +0100)
committerGuillaume Pellerin <yomguy@parisson.com>
Tue, 26 Jan 2016 13:24:02 +0000 (14:24 +0100)
teleforma/static/admin/extra.css
teleforma/static/teleforma/css/teleforma.css
teleforma/templates/admin/base_site.html [new file with mode: 0644]

index ef436df3ef6f7ccb32155a49281808b2957afaa5..53edc7d2db5e5d75895c7fcff8e1af471ea7b964 100644 (file)
@@ -10,3 +10,9 @@
     width: 960px;
 }
 
+
+.vTextField {
+    width: 960px;
+}
+
+
index e5dc3754e8e56019cbfcc79ec5657ff3ced38e8e..2a098561b4b4425f98e9cb206a975c81764189a7 100644 (file)
@@ -1978,4 +1978,3 @@ form .exceed{
     font-weight: bold;
 }
 
-
diff --git a/teleforma/templates/admin/base_site.html b/teleforma/templates/admin/base_site.html
new file mode 100644 (file)
index 0000000..a263c9a
--- /dev/null
@@ -0,0 +1,57 @@
+{% extends "admin/base.html" %}
+{% load admin_static %}
+
+{# Additional <head> content here, some extra meta tags or favicon #}
+{#{% block extrahead %}#}
+{#{% endblock %}#}
+
+
+{# Additional CSS includes #}
+{% block extrastyle %}
+  <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}admin/extra.css" />
+{% endblock %}
+
+
+{# Additional JS files in footer, right before </body> #}
+{#{% block extrajs %}#}
+{#  <script type="text/javascript" src="{% static 'js/my_project.js' %}"></script>#}
+{#{% endblock %}#}
+
+
+{# Footer links (left side) #}
+{#{% block footer_links %}#}
+{#  <a href="/docs/" class="icon"><i class="icon-question-sign"></i>Documentation</a>#}
+{#{% endblock %}#}
+
+{# Additional header content like notifications or language switcher #}
+{#{% block header_content %}#}
+{#    {{ block.super }}#}
+{#    <div class="header-content">#}
+{#        <!-- First icon column -->#}
+{#        <div class="header-column icon">#}
+{#            <i class="icon-home"></i><br>#}
+{#            <i class="icon-cog"></i>#}
+{#        </div>#}
+{#        <div class="header-column" style="margin-right: 20px">#}
+{#            <a href="/" class="grey">Front-end</a><br>#}
+{#            <a href="" class="grey">One more link</a>#}
+{#        </div>#}
+{#        <!-- Second icon column -->#}
+{#        <div class="header-column icon">#}
+{#            <i class="icon-comment"></i>#}
+{#        </div>#}
+{#        <div class="header-column">#}
+{#            <a href="" class="grey">5 new messages</a>#}
+{#        </div>#}
+{#    </div>#}
+{#{% endblock %}#}
+
+{# Footer branding name (center) #}
+{#{% block footer_branding %}#}
+{#{% endblock %}#}
+
+
+{# Footer copyright (right side) #}
+{#{% block copyright %}#}
+{#  Copyright &copy; 2013 Client<br>Developed by <a href="http://yoursite.com" target="_blank">YourName</a> #}
+{#{% endblock %}#}