Changeset 3312
- Timestamp:
- May 9, 2007, 1:03:58 PM (16 years ago)
- Location:
- trunk/www
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/admin/clients/help/list_help.jsp
r3190 r3312 90 90 %> 91 91 <base:page title="<%=title%>" type="<%=mode.getPageType()%>"> 92 <base:head scripts="table.js,tabcontrol.js" styles="table.css,headertabcontrol.css,path.css ">92 <base:head scripts="table.js,tabcontrol.js" styles="table.css,headertabcontrol.css,path.css,help.css"> 93 93 <script language="JavaScript"> 94 94 var submitPage = 'index.jsp'; … … 235 235 filterable="true" 236 236 exportable="true" 237 /> 238 <tbl:columndef 239 id="description.html" 240 property="description" 241 datatype="string" 242 title="Help text (as HTML)" 243 sortable="false" 244 filterable="false" 245 exportable="false" 237 246 /> 238 247 <tbl:toolbar … … 370 379 <tbl:cell column="externalId"><%=HTML.encodeTags(item.getExternalId())%></tbl:cell> 371 380 <tbl:cell column="description"><%=HTML.encodeTags(item.getDescription())%></tbl:cell> 381 <tbl:cell column="description.html"><div class="helptext"><%=item.getDescription()%></div></tbl:cell> 372 382 </tbl:row> 373 383 <% -
trunk/www/include/styles/help.css
r3296 r3312 50 50 51 51 /*Ordered list*/ 52 ol {52 .helptext ol { 53 53 list-style: decimal; 54 54 } 55 55 56 56 /*Unordered list*/ 57 ul {57 .helptext ul { 58 58 list-style: disc; 59 59 } … … 74 74 } 75 75 76 li {76 .helptext li { 77 77 padding-bottom: 10px; 78 78 } 79 79 80 80 /*Columnheader*/ 81 th {81 .helptext th { 82 82 background: #E0E0E0; 83 83 }
Note: See TracChangeset
for help on using the changeset viewer.