Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/27/11 13:12:25 (13 years ago)
Author:
dkahn
Message:

#1198 Ongoing styling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Problem/Index.aspx

    r6290 r6304  
    1515   
    1616    <%  long? id = null;  %>
    17     <%: Html.ActionLink("New Problem", "Detail", new {id}) %>
    18     <%: Html.ActionLink("Order ASC", "SortAsc")%>
    19     <%: Html.ActionLink("Order DESC", "SortDesc")%>
     17    <div class="hl-menuButtons">
     18    <%: Html.ActionLink("New Problem", "Detail", new { id }, new { @class = "hl-button-text-plus" })%>
     19    </div>
    2020
    21     <div style="height:150px; overflow:scroll;">
    22         <table>
     21        <table class="hl-dataTable">
     22        <thead>
     23        <tr>
     24        <th>Name</th>
     25        <th>Description</th>
     26        <th>Type</th>
     27        <th>Actions</th>
     28        </tr>
     29        </thead>
     30        <tbody>
    2331            <!--// We get this from the Controller (Index)-->
    2432            <% foreach(Problem p in ((ProblemModel)Model).Problems) {  %>
     
    3341                    <%: Html.Label(p.DataTypeName)%>
    3442                </td>
    35                 <td>
    36                     <%: Html.ActionLink("detail", "Detail", new { p.Id })%>
    37                 </td>
    38                 <td>
    39                     <%: Html.ActionLink("delete", "Delete",new {p.Id}) %>
     43                <td class="hl-iconcell">
     44                    <%: Html.ActionLink("detail", "Detail", new { p.Id }, new { @class = "hl-icon-edit" })%>
     45                    <%: Html.ActionLink("delete", "Delete", new { p.Id }, new { @class = "hl-icon-delete" })%>
    4046                </td>
    4147            </tr>
    4248            <% } %>
     49            </tbody>
    4350        </table>
    44     </div>     
     51   
    4552</asp:Content>
Note: See TracChangeset for help on using the changeset viewer.