Author:
erics , November 2nd, 2021
I needed a way to get the dock icon to bounce for all incoming emails and there did not seem to be any option to do so. There is actually a simple way to do it, but it is not intuitive. The key is to add a new Rule! Open Mail.app and choose Mail -> […]
Categories: How-To's , Technology Tags: Add rule , apple , Bounce , Bounce dock icon , Bounce icon , Dock , Email , Email rule , Force , howto , Icon , Incoming , Incoming mail , Mac , MacOS , macosx , mail , Mail rule , Mail.app , new email , New mail , Rule , Rules , tips
| No comments
Author:
erics , June 15th, 2015
defaults write com . apple . Terminal no - bouncing - bool TRUE
killall Dock
Categories: How-To's , Technology Tags: apple , Badge , Bell , Bounce , defaults , Disable , Dock , howto , Icon , killall , macosx , Notification , Terminal , tips
| No comments
Author:
erics , May 8th, 2011
The HTML:
< ul class = "icons ui-widget ui-helper-clearfix" >
< li id = "AddItem" class = "ui-state-default ui-corner-all" title = "Add Item" > < span class = "ui-icon ui-icon-plusthick" > < / span > < / li >
< li id = "AddToFavorites" class = "ui-state-default ui-corner-all" title = "Add to Favorites" > < span class = "ui-icon ui-icon-heart" > < / span > < / li >
< / ul >
The CSS:
ul . icons li
{
cursor : pointer ;
float : left ;
list - style : none ;
margin : 2px ;
padding : 2px 0px ;
position : relative ;
}
The jQuery:
jQuery ( 'ul.icons li' )
. live ( "mouseover mouseout" , function ( event ) {
if ( event . type == "mouseover" ) jQuery ( this ) . addClass ( "ui-state-hover" ) ;
else jQuery ( this ) . removeClass ( "ui-state-hover" ) ;
} ) ;
Categories: How-To's , Technology Tags: Button , Hover , Icon , Icons , JQuery , jQuery UI , live , Live Hover , mouseout , mouseover
| No comments