- Timestamp:
- 05/27/11 13:12:25 (13 years ago)
- 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 18 18 19 19 ); 20 21 22 20 23 $(".hl-dataTable").addClass("display"); 21 24 22 25 $(".hl-button-text-plus").button({ icons: { primary: 'ui-icon-plus'} }); 26 $(".hl-button-text-back").button({ icons: { primary: 'ui-icon-triangle-1-w'} }); 23 27 $(".hl-icon-delete").button({ icons: { primary: 'ui-icon-close' }, text: false }); 24 28 $(".hl-icon-edit").button({ icons: { primary: 'ui-icon-pencil' }, text: false }); 25 26 29 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"); 33 44 34 45 } -
branches/WebApplication/MVC2/HeuristicLabWeb.PluginHost/HLWebPluginHost/Content/themes/hl/Site.css
r6286 r6304 184 184 185 185 186 .hl-formHeader { 187 text-align: left; 188 } 189 190 .hl-iconcell { 191 width: 20px; 192 text-align: center; 193 } 194 186 195 /* TAB MENU 187 196 ----------------------------------------------------------*/
Note: See TracChangeset
for help on using the changeset viewer.