Hover Effect for action Bar

XenForo Hover Effect for action Bar

ThanosCrax

Registered
ThanosCrax submitted a new resource:

Hover Effect for action Bar - Hover affects for icons of action bar

Add to extra.less

CSS:
/*Action Bar*/
    .actionBar-action, .reaction-text
    {
        font-size: 0;
        .m-transition();
        &:before
        {
            font-size: @xf-fontSizeNormal;
            margin-right: 5px;
        }
        &--inlineMod, &--menuTrigger, &--reaction, &:hover, &:hover .reaction-text
        {
            font-size: 100%;
            text-decoration:none;
        }
   
        &--edit { .m-faBefore(@fa-var-pencil); }...

Read more about this resource...
 

Sophia55

Registered
To add a hover effect to the action bar in XenForo, use this CSS:


  1. Go to Appearance > Style Properties > Extra.css.
  2. Add:
.actionBar .button:hover {
background-color: #ff9900; /* Hover color */
color: #fff; /* Text color */
transition: background-color 0.3s ease;
}


This changes the button's color on hover. Adjust as needed!
 
Back
Top Bottom