Uploaded image for project: 'phpBB3'
  1. phpBB3
  2. PHPBB3-17190

Forum Lists Header Padding Mistake - (possibly)

    XMLWordPrintable

Details

    • Bug
    • Status: Open (View Workflow)
    • Minor
    • Resolution: Unresolved
    • 3.3.10
    • None
    • Styles

    Description

      Bug Description:
      When forums have long names, there seems to be to much padding on the right side of the names in the header.

      The CSS says the padding is there for when the folder icon is used but the folder icon is not in the header and adding 50px of padding to the opposite side of the folder icons doesn't seem right.

      There may be a reason for it though, so it may not be a bug.

      I think the padding was probably meant to be 5px rather than 50px.

      Picture one shows the default look with the 50px - you can see the large gap in the blue header at the end of the forum name.
      Picture two shows how it would look with 5px - the forum name sits level with the

       

      Affected CSS Files:
      content.css
      bidi.css

       

      Affected content.css Code:

      li.header dl.row-item dt .list-inner {
      	/* Tweak for headers alignment when folder icon used */
      	padding-left: 0;
      	padding-right: 50px;
      }
      

       

      Suggested Fix:

      li.header dl.row-item dt .list-inner {
      	/* Tweak for headers alignment when folder icon used */
      	padding-left: 0;
      	padding-right: 5px;
      }
      

       

      Affected bidi.css Code:

      .rtl li.header dl.row-item dt .list-inner {
      	/* Tweak for headers alignment when folder icon used */
      	padding-right: 0;
      	padding-left: 50px;
      }
      

       

      Suggested Fix:

      .rtl li.header dl.row-item dt .list-inner {
      	/* Tweak for headers alignment when folder icon used */
      	padding-right: 0;
      	padding-left: 5px;
      }
      

      Attachments

        Activity

          People

            Unassigned Unassigned
            ForumFlair ForumFlair
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: