Changeset 4248


Ignore:
Timestamp:
01/10/14 09:46:23 (10 years ago)
Author:
twagoo
Message:

Fixed update issues with resulttable: table component is now an actual table rather than tbody. Required some further layout/css tweaks.

Location:
vlo/branches/to-wicket-1.6/vlo_web_app/src/main
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vlo/branches/to-wicket-1.6/vlo_web_app/src/main/java/eu/clarin/cmdi/vlo/pages/FacetedSearchPage.html

    r4220 r4248  
    2525                    <table class="matrix" align="left">
    2626                        <tr wicket:id="facetColumns" valign="top">
    27                         <td wicket:id="cols" width="50%" class="column">
    28                             <p><span wicket:id="facetBox"></span>
    29                         <p>
     27                            <td wicket:id="cols" width="50%" class="column">
     28                                <p><span wicket:id="facetBox"></span>
     29                                <p>
    3030                            </td>
    31                             </tr>
     31                        </tr>
    3232                    </table>
    3333
    34                     <table class="resulttable" cellpadding="0" cellspacing="0">
    35                         <tbody wicket:id="searchResults" >
    36                             [searchResultTable]
    37                         </tbody>       
     34                    <table class="resulttable">
     35                        <tbody>
     36                            <tr>
     37                                <td>
     38                                    <table wicket:id="searchResults">[searchResultTable]</table>
     39                                </td>
     40                            </tr>       
     41                        </tbody>
    3842                        <tfoot wicket:id="contentSearch">
    3943                            <tr>
    40                             <td colspan="2"><a href="url" wicket:id="contentSearchForm">This text will be replaced by Wicket</a> </td>
     44                                <td><a href="url" wicket:id="contentSearchForm">This text will be replaced by Wicket</a></td>
    4145                            </tr>
    42                         </tfoot>                       
     46                        </tfoot>
    4347                    </table>
     48                </div>
    4449            </div>
    45         </div>
    4650        </div>
    4751        <br><br><br>
  • vlo/branches/to-wicket-1.6/vlo_web_app/src/main/webapp/css/main.css

    r4021 r4248  
    3131}
    3232
    33 .opening .resulttable{
     33.opening .resulttable {
    3434    width: 33%;
    3535    margin-left: 11px;
    3636}
    37 .opening .resulttable .headers{
     37
     38.opening .resulttable table .headers{
    3839    background-color: #6b824a;
    3940}
    4041
    41 .resulttable tbody{
     42.resulttable table {
     43    margin: 0px;
     44    border-spacing: 0px;
     45}
     46
     47.opening .resulttable table td {
     48    padding: 0px;
     49}
     50
     51.resulttable table .navigatorLabel {
     52    float: left;
     53}
     54
     55.resulttable table .navigator {
     56    text-align: right;
     57}
     58
     59.resulttable table tbody {
    4260    background-color:#BCCEE8;
    4361}
     
    207225}
    208226
    209 .resulttable tbody tr.odd {
     227.resulttable table tr.odd {
    210228    background-color: #CEDCEF;
    211229}
Note: See TracChangeset for help on using the changeset viewer.