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

Fix Missing ".rtl blockquote cite:before, .rtl .uncited:before" RTL Quote Block Cite Quote Icon Padding Rule

    XMLWordPrintable

Details

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

    Description

      When using an RTL language and viewing a topic which contains a block quote, the cite quote icon has padding applied to both sides of it.

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

       

      File:

      bidi.css
      

      Find:

      .rtl blockquote cite:before, .rtl .uncited:before {
          padding-left: 5px;
      }

      Change To:

      .rtl blockquote cite:before, .rtl .uncited:before {
          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: