View previous topic :: View next topic |
Author |
Message |
sgarrity
Joined: 04 Apr 2005 Posts: 1
|
Posted: Tue May 24, 2005 6:33 pm Post subject: setting cursor property for flat calendar when mouse is over each individual date |
|
|
I have a question about setting the cursor property for the flat calendar when the mouse is over each individual date. Currently the mouse changes from a pointer to a hand when over any date even if it's a non-agenda date and there is no action to perform. I'd like to change that so it's just a pointer when over non-agenda dates. I looked in the CSS file and saw this code
/* Day Cell - the DIV cell inside TD */
.CalCell {cursor:hand; text-align:center;}
and changed "hand" to "default" but it only changed mouse style between dates ? ?
Then I went through code and searched for ANY place "hand" or was used to try to make sure I covered all places it might be controlled.
Is there a way to do this ?
|
|
Back to top |
|
|
calendarxp Site Admin
Joined: 30 Jan 2005 Posts: 409
|
Posted: Tue May 24, 2005 7:53 pm Post subject: |
|
|
Changing the cursor style of .CalCell will result a default cursor when you hover above the surrounding table cell of the date number. To disable the hand cursor totally you also need to specify the the cursor style in the .CalAnchor. e.g.
Code: | .CellAnchor {cursor:default; text-decoration:none; font:9pt verdana;} |
There is currently no agenda sensitive way to control the cursor style. But we've put it on the wish list and will integrate it into a new version once we find a feasible way.
_________________ Copyright 2003-2011 Idemfactor Solutions, Inc. All rights reserved. |
|
Back to top |
|
|
calendarxp Site Admin
Joined: 30 Jan 2005 Posts: 409
|
Posted: Sun May 29, 2005 2:24 am Post subject: |
|
|
Please download version 9.4.250 or later - which will show hand cursor when the mouse is hovering on a date whose associated agenda action is not empty.
Note that if you want to switch to the hand cursor but do not want to perform any real action, you can simply set the action to a blank char. e.g.
_________________ Copyright 2003-2011 Idemfactor Solutions, Inc. All rights reserved. |
|
Back to top |
|
|
|