Skip to content

Commit

Permalink
Fixed #926 -- Fixed spacing in admin index template/CSS to handle wid…
Browse files Browse the repository at this point in the history
…er words

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1562 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Dec 7, 2005
1 parent cef2ffd commit 4ed3377
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions django/contrib/admin/media/css/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -117,15 +117,17 @@ table thead th.descending a { background:url(../img/admin/arrow-up.gif) right .4
.module h3 { margin-top:.6em; }
#content-related .module h2 { background:#eee url(../img/admin/nav-bg.gif) bottom left repeat-x; color:#666; }
#content-main .verbose .actionlist { float:right; font-size:10px; width:17em; position:relative; top:-1.6em; margin:0 8px; }
.dashboard .module table { width:100%; }

/* RECENT ACTIONS MODULE */
/* DASHBOARD */
.dashboard .module table th { width:100%; }
.dashboard .module table td { white-space:nowrap; }
.dashboard .module table td a { display:block; padding-right:.6em; }

/* RECENT ACTIONS MODULE */
.module ul.actionlist { margin-left:0; }
ul.actionlist li { list-style-type:none; }

/* FORM DEFAULTS */

input, textarea, select { margin:2px 0; padding:2px 3px; vertical-align:middle; border:1px solid #ccc; font-family:"Lucida Grande", Verdana, Arial, sans-serif; font-weight:normal; font-size:11px; }
textarea { vertical-align:top !important; }
input[type=checkbox], input[type=radio] { border:none; }
Expand Down
8 changes: 4 additions & 4 deletions django/contrib/admin/templates/admin/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ <h2>{{ app.name }}</h2>
{% endif %}

{% if model.perms.add %}
<td class="x50"><a href="{{ model.admin_url }}add/" class="addlink">{% trans 'Add' %}</a></td>
<td><a href="{{ model.admin_url }}add/" class="addlink">{% trans 'Add' %}</a></td>
{% else %}
<td class="x50">&nbsp;</td>
<td>&nbsp;</td>
{% endif %}

{% if model.perms.change %}
<td class="x75"><a href="{{ model.admin_url }}" class="changelink">{% trans 'Change' %}</a></td>
<td><a href="{{ model.admin_url }}" class="changelink">{% trans 'Change' %}</a></td>
{% else %}
<td class="x75">&nbsp;</td>
<td>&nbsp;</td>
{% endif %}
</tr>
{% endfor %}
Expand Down

0 comments on commit 4ed3377

Please sign in to comment.