Changeset 1266 for trunk/web-app
- Timestamp:
- Dec 15, 2010, 12:39:03 PM (12 years ago)
- Location:
- trunk/web-app
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web-app/css/default_style.css
r1265 r1266 74 74 font-size: 1.2em; 75 75 background: url(../images/default_style/topnav/topnav_bg.gif) repeat-x; 76 z-index: 100 0;76 z-index: 1005; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */ 77 77 } 78 78 … … 82 82 padding: 0 15px 0 0; 83 83 position: relative; /*--Declare X and Y axis base--*/ 84 z-index: 1004; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */ 84 85 } 85 86 … … 130 131 -webkit-border-bottom-right-radius: 5px; 131 132 border: 1px solid #111; 133 z-index: 1001; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */ 132 134 } 133 135 … … 139 141 clear: both; 140 142 width: 170px; 143 position:relative; 144 z-index: 1000; /** Important: keeps submenu's on top of other elements in IE7. See http://www.shawnpreisz.com/css/z-index-internet-explorer-7-ie7#comment-547 */ 141 145 } 142 146 … … 440 444 #facebookConnect { 441 445 padding:0px 0px 10px 0px; 442 z-index: -1; 443 } 446 position:relative; 447 z-index: 0; 448 } -
trunk/web-app/css/wizard.css
r1182 r1266 242 242 -o-transform: rotate(180g); 243 243 cursor: pointer; 244 zoom: 1; /* IE 6 & 7 hack */ 245 *display: inline; /* IE 6 & 7 hack */ 244 246 } 245 247 … … 325 327 } 326 328 327 .wizard .table .highlight, .wizard .table .highlight input, .wizard .table .highlight select, .wizard .table .highlight b{329 #wizard div.row:hover, #wizard div.row:hover b{ 328 330 background-color: #006DBA; 329 331 color: #fff; 330 332 } 331 333 332 .wizard .table .highlight input, .wizard .table .highlightselect {334 #wizard div.row:hover input, #wizard div.row:hover select { 333 335 background-color: #6e99d4; 334 336 color: #fff; 335 337 } 338 336 339 /* END :: TABLE */ 337 340 -
trunk/web-app/js/importer.js
r980 r1266 217 217 // attach subject events 218 218 function attachTableEvents() { 219 $('div#wizard').find('div.row').each(function() { 220 $(this).hover( 221 function() { 222 $(this).addClass('highlight'); 223 }, 224 function() { 225 $(this).removeClass('highlight'); 226 } 227 ); 228 }); 219 // This method handled the background hover color on table rows 220 // Since this broke select boxes in IE7, this is now handled by css 221 // See wizard.css and #234 and #237 229 222 } 230 223 -
trunk/web-app/js/wizard.js
r1182 r1266 222 222 // attach subject events 223 223 function attachTableEvents() { 224 $('div#wizard').find('div.row').each(function() { 225 $(this).hover( 226 function() { 227 $(this).addClass('highlight'); 228 }, 229 function() { 230 $(this).removeClass('highlight'); 231 } 232 ); 233 }); 224 // This method handled the background hover color on table rows 225 // Since this broke select boxes in IE7, this is now handled by css 226 // See wizard.css and #234 and #237 234 227 } 235 228
Note: See TracChangeset
for help on using the changeset viewer.