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

Duplicate Box Sizing Rule In content.css

    XMLWordPrintable

Details

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

    Description

      There is a duplicate box sizing rule in the content.css file.

       

      Line 125:

      li.header dd {
          padding-left: 1px;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
      } 

      Can be changed to:

      li.header dd {
          padding-left: 1px;
      } 

       

      The box sizing rule further down on line 66 covers both the li.row and li.header.

       

      Line 66:

      ul.topiclist dd {
          border-left: 1px solid transparent;
          padding: 4px 0;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
      } 

      Attachments

        Activity

          People

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

            Dates

              Created:
              Updated: