Resource icon

XF 1 Tip Font colour zoom out on hover

ENXF NET

Administrator
Staff member
Administrator
Moderator
+Lifetime VIP+
S.V.I.P.S Member
S.V.I.P Member
V.I.P Member
Collaborate
Registered
Joined
Nov 13, 2018
Messages
19,991
Points
823

Reputation:

LQD submitted a new resource:

Font colour zoom out on hover - This will pop the colour font blocks out on hover

View attachment 1795 View attachment 1796
Just a simple effect I thought was nice and worth sharing. Simply paste the following into EXTRA.css and on hover your colour font blocks will zoom out at you. :D

I'm quite sure the -o prefix isn't needed anymore. This is for 1.2 only and works with redactor editor.
Code:
.redactor_color_link:hover {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition...

Read more about this resource...
 
Top