Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-74783

Broken UI after Update to 2.1193.v64a_61471c489

    • 2.1195.v59ce1b_b_f1f8f

      After Update to 2.1193.v64a_61471c489 the name for branches are displayed wrong.

      The text is displayed as sub text

          [JENKINS-74783] Broken UI after Update to 2.1193.v64a_61471c489

          Zane Duffield added a comment -

          I noticed this issue as well, it's to do with the way that Jenkins inserts <wbr> tags around punctuation combined with the use of `display: inline-flex`.

          <wbr> tags are inserted here: https://github.com/jenkinsci/jenkins/blob/e1f99468fd81d6aa52dc434fefc6e0420e1cb449/core/src/main/java/hudson/Functions.java#L2437-L2444

          You can fix it with custom CSS ($JENKINS_URL/manage/appearance/)

          /* fix layout of <wbr> elements inside the 'Name' column of 'Pull Request' branch sources on multibranch pipelines */
          tr[id|="job_PR"] td:nth-child(3) .jenkins-table__link {
            display: inline;
          } 

          Zane Duffield added a comment - I noticed this issue as well, it's to do with the way that Jenkins inserts <wbr> tags around punctuation combined with the use of `display: inline-flex`. <wbr> tags are inserted here: https://github.com/jenkinsci/jenkins/blob/e1f99468fd81d6aa52dc434fefc6e0420e1cb449/core/src/main/java/hudson/Functions.java#L2437-L2444 You can fix it with custom CSS ( $JENKINS_URL/manage/appearance/ ) /* fix layout of <wbr> elements inside the 'Name' column of 'Pull Request' branch sources on multibranch pipelines */ tr[id|= "job_PR" ] td :nth-child (3) .jenkins-table__link {   display : inline; }

          Mark Waite added a comment -

          janfaracik could you take a look at this one?

          Mark Waite added a comment - janfaracik could you take a look at this one?

          Michael Suhr added a comment -

          Thanks for the css workaround but it should fixed from plugin side as well IMO.

          Michael Suhr added a comment - Thanks for the css workaround but it should fixed from plugin side as well IMO.

            danielbeck Daniel Beck
            mcmics Michael Suhr
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: