Changeset 11638


Ignore:
Timestamp:
2006-04-11T15:45:08+12:00 (18 years ago)
Author:
kjdon
Message:

added a few CSS class attributes for date_list, date_list_year, date_list_month

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/gsdl/src/recpt/datelistbrowserclass.cpp

    r11503 r11638  
    8686  }
    8787
    88   textout << outconvert << "<table>\n";
     88  textout << outconvert << "<table class=\"date_list\">\n";
    8989
    9090  ResultDocInfo_tarray::iterator thissection = sections.docInfo.begin();
     
    144144
    145145    if (thisyear != lastyear) {
    146       textout << outconvert << "<td><b>" << thisyear << "</b></td>";
     146      textout << outconvert << "<td><span class=\"date_list_year\">" << thisyear << "</span></td>";
    147147      lastyear = thisyear;
    148148    } else
     
    150150   
    151151    if (thismonth != lastmonth) {
    152       textout << outconvert << disp << ("<td><b>_textmonth" + thismonth + "_</b></td>");
     152      textout << outconvert << disp << ("<td><span class=\"date_list_month\">_textmonth" + thismonth + "_</span></td>");
    153153      lastmonth = thismonth;
    154154    } else
Note: See TracChangeset for help on using the changeset viewer.