minor clean-up of concept macros and CSS

git-svn-id: svn://svn.cy55.de/Zope3/src/loops/trunk@3147 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
helmutm 2009-01-13 14:32:41 +00:00
parent 8af3594cd2
commit b5b4270f58
2 changed files with 19 additions and 14 deletions

View file

@ -105,7 +105,7 @@
i18n:translate="">Type</span></td> i18n:translate="">Type</span></td>
<td><span tal:replace="related/modified">Type</span></td> <td><span tal:replace="related/modified">Type</span></td>
<td><span tal:replace="related/creators">Type</span></td> <td><span tal:replace="related/creators">Type</span></td>
<td style="white-space: nowrap; text-align: center" <td class="nowrap center"
tal:define="target nocall:related; tal:define="target nocall:related;
style nothing" style nothing"
tal:condition="view/showObjectActions"> tal:condition="view/showObjectActions">
@ -164,7 +164,7 @@
</td> </td>
<td><span tal:replace="related/longTypeTitle">Type</span></td> <td><span tal:replace="related/longTypeTitle">Type</span></td>
<tal:version tal:condition="view/useVersioning"> <tal:version tal:condition="view/useVersioning">
<td style="text-align: center" <td class="center"
tal:define="versionId related/versionId"> tal:define="versionId related/versionId">
<a href="#" <a href="#"
tal:content="versionId" tal:content="versionId"
@ -172,12 +172,12 @@
tal:attributes="href string:${view/url}/.target${related/uniqueId}?loops.viewName=listversions">1.1</a> tal:attributes="href string:${view/url}/.target${related/uniqueId}?loops.viewName=listversions">1.1</a>
</td> </td>
</tal:version> </tal:version>
<td style="text-align: right; white-space: nowrap"> <td class="nowrap number">
<span tal:replace="related/context/sizeForDisplay">2 MB</span> <span tal:replace="related/context/sizeForDisplay">2 MB</span>
</td> </td>
<td><span tal:replace="related/modified">2007-03-30</span></td> <td><span tal:replace="related/modified">2007-03-30</span></td>
<td><span tal:replace="related/creators">John</span></td> <td><span tal:replace="related/creators">John</span></td>
<td style="white-space: nowrap; text-align: center" <td class="nowrap center"
tal:define="target nocall:related; tal:define="target nocall:related;
style nothing" style nothing"
tal:condition="view/showObjectActions"> tal:condition="view/showObjectActions">

View file

@ -56,11 +56,26 @@ blockquote ul {
margin-top: 0.5em; margin-top: 0.5em;
} }
table.listing {
margin: 1px;
margin-top: 6px;
}
table.listing th {
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
color: #000040;
}
table.listing td { table.listing td {
padding: 0 1px 0 1px;
white-space: normal; white-space: normal;
vertical-align: middle; vertical-align: middle;
} }
fieldset.box table.listing td {
padding: 0 1px 0 1px;
}
table.listing td.number { table.listing td.number {
text-align: right; text-align: right;
} }
@ -311,16 +326,6 @@ img.notselected {
border-color: #989898 #f4f4f4 #f4f4f4 #989898; border-color: #989898 #f4f4f4 #f4f4f4 #989898;
} }
table.listing {
margin: 1px;
margin-top: 6px;
}
table.listing th {
font-family: Verdana, Tahoma, Arial, Helvetica, sans-serif;
color: #000040;
}
.itemViews { .itemViews {
border-bottom-width: 2px; border-bottom-width: 2px;
} }