Firefox and the little arrows in the postbit

Mark.B

Well-known member
Sorry about this, because I *know* Kier' or Mike have mentioned this in a post ages ago...but I can't find it.

What is the situation with the little arrows next to the avatars in the postbit? (And also the arrows in the breadcrumb). They are the wrong colour in Firefox. Is there any proposed fix for this or is it a browser bug?

Sounds a minor detail but I'm terribly anal about stuff like this. :)
 
I don't have this problem.

That arrow in the postbit is controlled by this CSS:

Admin CP -> Appearance -> Templates -> message_user_info.css

Code:
		.messageUserBlock .arrow
		{
			position: absolute;
			top: 10px;
			right: -10px;
			
			display: block;
			width: 0px;
			height: 0px;
			line-height: 0px;
			
			border: 10px solid transparent;
			border-left-color: @messageUserBlock.border-color;
			border-right: none;
			
			/* Hide from IE6 */
			_display: none;
		}
		
			.messageUserBlock .arrow span
			{
				position: absolute;
				top: -10px;
				left: -11px;
				
				display: block;
				width: 0px;
				height: 0px;
				line-height: 0px;
				
				border: 10px solid transparent;
				border-left-color: @messageAvatarHolder.background-color;
				border-right: none;
			}
 
I don't see it in firefox..it may just be a resolution/rendering issue on user end. hit Ctrl+0 and see if that fixes it

here is what I see on this page...

breadcrumb.webpbreadcrumbZoom.webp
 
No problem in FF 3.6.23.

In the default style that line of color is controlled by this CSS:

Rich (BB code):
		.messageUserBlock .arrow
		{
			position: absolute;
			top: 10px;
			right: -10px;
			
			display: block;
			width: 0px;
			height: 0px;
			line-height: 0px;
			
			border: 10px solid transparent;
			border-left-color: @messageUserBlock.border-color;
			border-right: none;
			
			/* Hide from IE6 */
			_display: none;
		}
 
Yes it's definitely ok in other browsers but in Firefox 4 or above it's always been grey.

I'm certain a post was made about it somewhere by Kier or Mike but I can't find it.

I've tried tweaking the CSS but it has no effect.
 
This probably needs moving to the bugs forum then if a mod wouldn't mind, so we can get a formal response from the team.

I suspect it's going to be "browser bug" but my concern is that such a vital part of the UI actually looks "broken" (graphically) to such a large number of users.
 
This is most weird.

There has to be a reason why it's working for some but not others.

If it was just me I'd be fine with it but clearly there's an issue *somewhere*.
 
Top Bottom