Remove most CSS, clean up templates

- Assume the existing site has its own styles
This commit is contained in:
Scot Hacker 2014-11-07 22:26:53 -08:00
parent 30127a23de
commit b388aece1b
7 changed files with 201 additions and 281 deletions

View file

@ -24,12 +24,6 @@ a.showlink {
text-decoration: underline;
}
#tasktable a {
font-weight: bold;
font-family: "Arial";
text-decoration: none;
color: #474747;
}
label {
display: block;
@ -50,20 +44,6 @@ input#id_priority {
width: 30px;
}
.todo-button {
border: 1px solid #9B9B9B;
background: #E0E0E0;
padding-bottom: 2px;
font-weight: bold;
}
hr {
color: #E5E5E5;
}
#slideToggle {
color: #4A8251;
}
.todo-break {
margin-top: 30px;
@ -74,25 +54,6 @@ table.nocolor, table.nocolor tr, table.nocolor td {
background-color: transparent;
}
table#tasktable td, table#tasktable th {
padding: 5px;
/* font-size:0.9em;*/
}
table#tasktable th {
text-align: left;
/* background-color: #9BCAE4; */
background-color: #046380;
color: #fff;
}
table#tasktable tr.row1 {
background-color: #AEF0BB;
}
table#tasktable tr.row2 {
background-color: #B6F3D5;
}
.minor {
font-style: italic;

View file

@ -5,16 +5,6 @@
{% block content %}
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
<h2>{{ task }}</h2>
<form action="" method="POST">

View file

@ -49,9 +49,4 @@
{% endifequal %}
{% endblock %}

View file

@ -12,10 +12,6 @@
{% block content %}
{% if message %}
<p class="message">{{ message }}</p>
{% endif %}
{% if found_items %}
<h2>{{found_items.count}} search results for term: "{{ query_string }}"</h2>
<div class="post_list">

View file

@ -48,15 +48,6 @@ $(document).ready(function() {
{% endifequal %}
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% ifequal auth_ok 1 %}
<form action="" method="POST">
{% csrf_token %}

View file

@ -19,15 +19,6 @@ $(document).ready(function() {
</script>
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% ifequal auth_ok 1 %}
<h2>{{ task }}</h2>
@ -64,15 +55,11 @@ $(document).ready(function() {
<td>{{ form.list }} </td>
</tr>
<tr>
<td>Due:</td>
<td>{{ form.due_date }} </td>
</tr>
<tr>
<td>Assigned to:</td>
<td>{{ form.assigned_to }} </td>