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

Fix Missing ".rtl .back2top .top" RTL Back To Top Margin Rule

    XMLWordPrintable

Details

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

    Description

      When using an RTL language the back to top button on posts has a margin applied to both sides of it.

       

      This is due to a missing rule in the bidi.css file, the bidi file usually removes the margin from one side and adds it to the other but for this rule it has added the margin to one side but hasn't removed it from the other.

       

      File:

      bidi.css
      

      Find:

      .rtl .back2top .top {
          float: left;
          margin-left: -10px;
      }

       

      Change To:

      .rtl .back2top .top {
          float: left;
          margin-right: 0;
          margin-left: -10px;
      }

      Attachments

        Activity

          People

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

            Dates

              Created:
              Updated: