left-tabb css merged to django templates
1 parent 0c35b98 commit 59ea8e6528c33e6d9a2f938fa2d84375b1345573
@benste benste authored on 24 Jun 2011
Showing 4 changed files
View
5
static/mailman_django/css/basics.css
h1 {
font-weight: normal;
font-size: 1.846em;
color: #99CCFF;
margin: 40px 0;
margin: 20px 0;
}
h2 {
font-weight: normal;
font-size: 1.385em;
}
 
ul {
list-style-type:none;
}
#content ul {
list-style-type:disc;
}
/*************************
* Structure
*************************/
View
17
static/mailman_django/css/left_tab.css
/** Optional CSS to use the site with Tabbed navigaiton on the left-side**/
 
#menu {
div.menu {
width:20%;
float:left;
}
 
width:80%;
float:left;
}
 
#menu ul ul{
.menu ul div{
display:none;
}
 
.menu ul li {
padding:15px 10px 15px 20px;
box-shadow: 5px 5px 2px #888;
width:60%;
margin:5%;
background-color:rgba(72,76,82, 0.1);
font-weight:bold;
}
 
.menu ul li:hover {
background-color:rgba(207, 220, 236, 0.6);
}
View
26
templates/mailman-django/base.html
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
 
<link rel="shortcut icon" href="/favicon.ico">
<!--link rel="apple-touch-icon" href="/apple-touch-icon.png"-->
 
<!--<link rel="stylesheet" type="text/css" href="/static/mailman_django/css/style.css?v=1"> OLD-->
<!--<link type="text/css" href="left_tab.css" rel="stylesheet">-->
<link rel="stylesheet" type="text/css" href="/static/mailman_django/css/mega_dropdown.css">
<link rel="stylesheet" type="text/css" href="/static/mailman_django/css/basics.css">
<link rel="stylesheet" type="text/css" href="/static/mailman_django/css/left_tab.css">
<!--<link rel="stylesheet" type="text/css" href="/static/mailman_django/css/mega_dropdown.css">-->
<link rel="stylesheet" type="text/css" href="/static/mailman_django/css/forms.css">
<link rel="stylesheet" type="text/css" media="handheld" href="/static/mailman_django/css/handheld.css?v=1">
 
<script src="/static/mailman_django/js/lib/modernizr-1.5.min.js"></script>
<div class="menu">
{% include "mailman-django/menu/index.html" %}
</div>
<div id="content">
<p>
{% url list_index as url_list_index %}
{% url list_new as url_list_new %}
{% url list_index as url_list_index %}
{% blocktrans %}
This is a draft of a Mailman3 django client. It's not a finished design. For now you can view a <a href="{{ url_list_index }}">list</a> of existing mailing lists and you can <a href="{{ url_list_new }}">create</a> new lists.
{% endblocktrans %}
{% block links %}{% endblock %}
</p>
Testing
<ul>
<li> <a href="/new_domain">New Domain</a></li>
</ul>
 
{% block content %}{% endblock %}
 
</div>
</div>
 
 
View
2
■■■
templates/mailman-django/menu/administration.html
</a>
</li>
<li{% if selected == "administrivia" %}id="selected"{% endif %}>
<a href="{% comment %}{% url list_settings list.fqdn_listname %}TODO add List{% endcomment %}">
{% trans "New List" %}
{% trans "Administrivia" %}
</a>
</li>
</ul></div>
{% endblock%}