Changeset 254578 in webkit


Ignore:
Timestamp:
Jan 15, 2020 11:11:23 AM (4 years ago)
Author:
Devin Rousso
Message:

Web Inspector Reference: put the original author and last modified author on separate lines
https://bugs.webkit.org/show_bug.cgi?id=206274

Reviewed by Timothy Hatcher.

  • wp-content/themes/webkit/single-web_inspector_page.php:
  • wp-content/themes/webkit/style.css:

(article .meta .written): Added.
(article .meta .written, article .meta .updated): Added.
(article .meta .updated): Deleted.

Location:
trunk/Websites/webkit.org
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Websites/webkit.org/ChangeLog

    r254575 r254578  
     12020-01-15  Devin Rousso  <drousso@apple.com>
     2
     3        Web Inspector Reference: put the original author and last modified author on separate lines
     4        https://bugs.webkit.org/show_bug.cgi?id=206274
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        * wp-content/themes/webkit/single-web_inspector_page.php:
     9        * wp-content/themes/webkit/style.css:
     10        (article .meta .written): Added.
     11        (article .meta .written, article .meta .updated): Added.
     12        (article .meta .updated): Deleted.
     13
    1142020-01-15  Jon Davis  <jond@apple.com>
    215
  • trunk/Websites/webkit.org/wp-content/themes/webkit/single-web_inspector_page.php

    r254542 r254578  
    1515
    1616        <div class="meta">
    17             <p class="updated">Written by <?php the_author() ?>. Last updated <?php the_modified_date(); ?> by <?php the_modified_author(); ?></p>
     17            <p class="written">Written <?php the_date(); ?> by <?php the_author() ?></p>
     18            <p class="updated">Last updated <?php the_modified_date(); ?> by <?php the_modified_author(); ?></p>
    1819        </div>
    1920    </article>
  • trunk/Websites/webkit.org/wp-content/themes/webkit/style.css

    r254528 r254578  
    16041604}
    16051605
     1606article .meta .written {
     1607    margin-bottom: 1em;
     1608}
     1609
     1610article .meta .written,
    16061611article .meta .updated {
    16071612    text-align: right;
Note: See TracChangeset for help on using the changeset viewer.