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

Subsilver and prosilver CSS elements out of order.

    XMLWordPrintable

Details

    • Bug
    • Status: Closed (View Workflow)
    • Minor
    • Resolution: Fixed
    • 3.0.6
    • 3.0.9-RC1
    • Styles
    • None
    • PHP Environment:
      Database:

    Description

      According to:
      http://www.w3.org/TR/CSS21/selector.html#dynamic-pseudo-classes

      Note that the A:hover must be placed after the A:link and A:visited rules, since otherwise the cascading rules will hide the 'color' property of the A:hover rule. Similarly, because A:active is placed after A:hover, the active color (lime) will apply when the user both activates and hovers over the A element.

      Which I think results in the required order being:
      link
      visited
      hover
      active
      However in the stylesheet.css the order is:

      a:link {
         color: #006597;
         text-decoration: none;
      }
       
      a:active,
      a:visited {
         color: #005784;
         text-decoration: none;
      }
       
      a:hover {
         color: #D46400;
         text-decoration: underline;
      }
      

      Attachments

        Activity

          People

            bantu Andreas Fischer [X] (Inactive)
            schnorrer42 schnorrer42
            Votes:
            0 Vote for this issue
            Watchers:
            2 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: