This wiki is no longer being updated as of December 10, 2025.
|
MediaWiki:Cloud ServicesV2.js: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
| Line 6: | Line 6: | ||
//Changes the Product Icon Tile to act like a button | //Changes the Product Icon Tile to act like a button | ||
$(".ProductIconTile").css({"cursor":"pointer"});//Cursor change to a button-style | $(".ProductIconTile").css({"cursor":"pointer"});//Cursor change to a button-style | ||
$(".ProductIconTile").hover(function(){$(this).css({"background-color":"#ffffff" | $(".ProductIconTile").hover(function(){$(this).css({"background-color":"#ffffff","outline":"1px solid red"});},function(){$(this).css({"background-color":"#f2f2f2","outline":"0px"});});//Hover change effect | ||
Revision as of 19:24, 16 November 2018
//Click Handler for Product Icon Tile
$(".ProductIconTile").click(function (){
});
//Changes the Product Icon Tile to act like a button
$(".ProductIconTile").css({"cursor":"pointer"});//Cursor change to a button-style
$(".ProductIconTile").hover(function(){$(this).css({"background-color":"#ffffff","outline":"1px solid red"});},function(){$(this).css({"background-color":"#f2f2f2","outline":"0px"});});//Hover change effect