Problem/Motivation

.system-status-general-info__sub-item-title::after {
  content: ":Â ";
}

Leads to:

Proposed resolution

Remove the "\00a0" in this line:
https://git.drupalcode.org/project/gin/-/blob/8.x-3.x/styles/base/_statu...

CommentFileSizeAuthor
gin_pseudo_character.png8.24 KBthomas.frobieter

Issue fork gin-3310567

Command icon Show commands

Start within a Git clone of the project using the version control instructions.

Or, if you do not have SSH keys set up on git.drupalcode.org:

Comments

thomas.frobieter created an issue. See original summary.

thomas.frobieter’s picture

Oh, \00a0 is a no break space.. okay. So I guess the SASS compiler breaks this?
Maybe try:

content: #{":\00a0"};

immaculatexavier made their first commit to this issue’s fork.

immaculatexavier’s picture

Status: Active » Needs review

Committed with MR as per the proposed resolution.

saschaeggi’s picture

Status: Needs review » Needs work

I seem unable to replicate the problem here. And the patch will break the compilation of CSS.

anybody’s picture

Status: Needs work » Postponed (maintainer needs more info)

I guess this might be due to a site specific issue with (double) escaping server response or sth. like that. Where ever that may be caused, typically this should just be rendered as : .

anybody’s picture

Status: Postponed (maintainer needs more info) » Closed (works as designed)

Indeed it was a firewall issue at the hoster.... -.-

The firewall had "Rewrite HTML" enabled, that caused this issue. Sorry for the trouble, I hope it might help others one day.