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

Location:
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Content
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Content/HLStyling.js

    r6301 r6304  
    1818
    1919  );
     20
     21
     22
    2023  $(".hl-dataTable").addClass("display");
    2124
    2225  $(".hl-button-text-plus").button({ icons: { primary: 'ui-icon-plus'} });
     26  $(".hl-button-text-back").button({ icons: { primary: 'ui-icon-triangle-1-w'} });
    2327  $(".hl-icon-delete").button({ icons: { primary: 'ui-icon-close' }, text: false });
    2428  $(".hl-icon-edit").button({ icons: { primary: 'ui-icon-pencil' }, text: false });
    25  
    2629
    27   $(".hl-button").hover(
    28     function () {
    29       $(this).fadeOut(100);
    30       $(this).fadeIn(100);
    31     }
    32   );
     30  // Standard Table
     31  $(".hl-table th").each(function () {
     32
     33    $(this).addClass("ui-state-default hl-formHeader");
     34
     35  });
     36  $(".hl-table td").each(function () {
     37
     38    $(this).addClass("ui-widget-content");
     39
     40  });
     41
     42  $(".hl-table td:odd").addClass("odd");
     43  $(".hl-table td:even").addClass("even");
    3344
    3445}
  • branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Content/themes/hl/Site.css

    r6286 r6304  
    184184
    185185
     186.hl-formHeader {
     187  text-align: left; 
     188}
     189
     190.hl-iconcell {
     191  width: 20px;
     192  text-align: center; 
     193}
     194
    186195/* TAB MENU   
    187196----------------------------------------------------------*/
Note: See TracChangeset for help on using the changeset viewer.