~mortenoh/+junk/dhis2-detailed-import-export

« back to all changes in this revision

Viewing changes to dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/css/south_africa/dom.js

  • Committer: larshelge at gmail
  • Date: 2009-03-03 16:46:36 UTC
  • Revision ID: larshelge@gmail.com-20090303164636-2sjlrquo7ib1gf7r
Initial check-in

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
$( document ).ready( function()
 
3
{        
 
4
  $( "li.menuDropDownItem" ).mouseover( function() // Over dropdown item
 
5
  {
 
6
    $( this ).css( "background-color", "#ffcc34" );
 
7
    $( this ).css( "border", "1px solid #ffffff" );
 
8
  });
 
9
  
 
10
  $( "li.menuDropDownItem" ).mouseout( function() // Out dropdown item
 
11
  {
 
12
    $( this ).css( "background-color", "#405f43" );
 
13
    $( this ).css( "border", "1px solid #405f43" );
 
14
  });
 
15
});