Skip to content

Commit

Permalink
Removed meta type column from manage_main, because of also removed icons
Browse files Browse the repository at this point in the history
  • Loading branch information
MrTango authored and davisagli committed Feb 25, 2017
1 parent 66cd531 commit 3207914
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 11 deletions.
11 changes: 7 additions & 4 deletions CHANGES.rst
Expand Up @@ -29,15 +29,18 @@ Bugs Fixed
- Use unicode transaction-notes to support ZODB 5.
[pbauer]

- Move _html and _error_html to HTTPBaseResponse to support views that return
a HTML `(title, body)` tuple in WSGIResponses.
[MatthewWilkes]

- Don't raise an exception when `WSGIResponse.redirect` is called
(these redirects should be followed even when the test browser uses
`handleErrors = False`).
[davisagli]

- Move _html and _error_html to HTTPBaseResponse to support views that return
a HTML `(title, body)` tuple in WSGIResponses.
[MatthewWilkes]

- Removed meta type column from manage_main, because of also removed icons
[MrTango]


Features Added
++++++++++++++
Expand Down
15 changes: 15 additions & 0 deletions src/App/dtml/manage_page_style.css.dtml
Expand Up @@ -110,6 +110,21 @@ form {
font-weight: bold;
}

.object_item_checkbox_col{
width: 25px;
text-align: center;
}

.object_item_name_col{
width: auto;
text-align: left;
}

.object_item_size_col{
width: 15%;
text-align: left;
}

.row-normal {
background-color: #ffffff;
border: none;
Expand Down
10 changes: 3 additions & 7 deletions src/OFS/dtml/main.dtml
Expand Up @@ -39,13 +39,12 @@

<table width="100%" cellspacing="0" cellpadding="2" border="0">
<tr class="list-header">
<td width="5%" align="right" colspan="2">
<div class="list-item">Type</div>
<td class="object_item_checkbox_col">
</td>
<td width="50%" align="left">
<td class="object_item_name_col">
<div class="list-item">Name</div>
</td>
<td width="15%" align="left">
<td class="object_item_size_col">
<div class="list-item">Size</div>
</td>
</tr>
Expand All @@ -59,9 +58,6 @@
<td align="left" valign="top" width="16">
<input type="checkbox" name="ids:list" value="&dtml-sequence-key;" />
</td>
<td align="left" valign="top" nowrap="nowrap">
<i>&dtml-meta_type;</i>
</td>

<td align="left" valign="top">
<div class="list-item">
Expand Down

0 comments on commit 3207914

Please sign in to comment.