XF 1.1 Modify default 'Edit,Delete,IP,Warn,Report ... Reply' bar styling

ALFrisbee

Active member
Hi all,

I'd like to look at changing the default styling for the post 'action bar' (not sure of it's proper name), so that it's not so hard to see if you're not hovered over it. The main reason for this is to cater for usage from mobile devices which don't have a mouse.
Here's some pics which will help explain which section I'm referring to:

Default:
default - quite grey.webp



Hover/active view:

hover - black text.webp


Any help much appreciated!
Fris.
 
Those elements do not have hover affect in the standard code so this is something related to your custom style or a customisation you have done.

Locate the customisation and change the styling for when those elements are not hovered.
 
FYI only, one of the guys had a dig through the code, and found the solution:
- in the 'message.css' code:

.message .messageMeta
{
@property "messageMeta";
font-size: 11px;
padding: 15px 5px 5px;
margin: -5px;
overflow: hidden;
zoom: 1;
opacity: 1.0; <------ add this line
@property "/messageMeta";
}
 
Top Bottom