Hi,
You don't need to repeat "background: transparent;" and "border: none;" in "QToolButton:pressed" since they already are specified in "QToolButton".
Concerning your problem, I think you should not use "image" but "background-image".
For example:
{
border: none;
background-image: url(Skins/lea/fb/delete_all_icon.png);
}
{
/*No need to repeat "border: none;"*/
background-image: url(Skins/lea/fb/delete_all_icon_touch.png);
}
QToolButton
{
border: none;
background-image: url(Skins/lea/fb/delete_all_icon.png);
}
QToolButton:pressed
{
/*No need to repeat "border: none;"*/
background-image: url(Skins/lea/fb/delete_all_icon_touch.png);
}
To copy to clipboard, switch view to plain text mode
Perhaps you'll need to define the properties "height" and "width" to make it properly visible (if the native size is too big for example).
It should work this way (I hope).
Bookmarks