Hi all,
Darkening buttons (when clicked) looked like a planned feature, since
the "imageSel" attribute was already allocated? But the graphics
themselves seem missing, as well as a few final code pieces and
template attributes.
I added it all to our 2006/05/18 copy, but can't generate a patch
just yet since CVS appears down.
Is this something that would be considered for inclusion?
Thanks!
Rich
richs@whidbey.net wrote:
Hi all,
Darkening buttons (when clicked) looked like a planned feature, since the "imageSel" attribute was already allocated? But the graphics themselves seem missing, as well as a few final code pieces and template attributes.
I guess that was just an idea but there aren't any concrete plans for that feature.
I added it all to our 2006/05/18 copy, but can't generate a patch just yet since CVS appears down.
We've changed to SVN: http://trac.roundcube.net/trac.cgi/wiki/Dev_SVN
Is this something that would be considered for inclusion?
I guess it's a lot of work to create a third version of each icon for such a minor effect. Not sure what others think about it...
Thanks!
Rich
Regards, Thomas
On Wed, 31 May 2006, Thomas Bruederli wrote:
We've changed to SVN: http://trac.roundcube.net/trac.cgi/wiki/Dev_SVN
Ah, great! I missed that, if it was on the mailing list.
On May 31, 2006, at 3:58 AM, Thomas Bruederli wrote:
richs@whidbey.net wrote:
Hi all,
Darkening buttons (when clicked) looked like a planned feature, since the "imageSel" attribute was already allocated? But the graphics themselves seem missing, as well as a few final code pieces and
template attributes.I guess that was just an idea but there aren't any concrete plans for that feature.
I added it all to our 2006/05/18 copy, but can't generate a patch
just yet since CVS appears down.We've changed to SVN: http://trac.roundcube.net/trac.cgi/wiki/Dev_SVN
Is this something that would be considered for inclusion?
I guess it's a lot of work to create a third version of each icon for such a minor effect. Not sure what others think about it...
Thanks!
Rich
Regards, Thomas
I'll try making a patch for it so folks can see it.
Thanks!
Here's a minor GUI change that we made based on user feedback. It
just makes the graphical buttons (compose, send, etc) darken when
clicked, like Firefox and Thunderbird:
wget http://www.whidbey.net/richs/rc-clickables.patch
patch -p0 < rc-clickables.patch
ImageMagick: http://www.imagemagick.org/script/binary-releases.php )
cd skins/default/images/buttons ls -1 *act.png | awk '{s=$1;sub(/act./,"sel.",s);print"convert - modulate 64 "$1" "s}'|sh
cd ../../templates sed -i -s -e "s/(image)(=".*)(_act.)(...")/& imageAct\2\3 \4/g" *.html sed -i -s -e "s/(imageAct)(=".*)(_act.)(...")/imageSel \2_sel.\4 &/g" *.html
Hope this can be considered for inclusion someday for the default
skin if people like it. I can send the darkened buttons to anyone
who doesn't want to install ImageMagick.
The instructions should work if you use custom templates/buttons too.
Rich