Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #37504, comment 20


Ignore:
Timestamp:
08/07/2016 01:05:39 PM (10 years ago)
Author:
ocean90

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #37504, comment 20

    initial v1  
    44* Removes `.update-message:not(.notice)` from the `.plugins .notice p` rule. The rule for`.plugins .plugin-update-tr .update-message` has already the correct margins.
    55* Merges `.update-message:not(.notice):before` with `.wrap .notice p:before`.
     6
     7WordPress 4.5:
     8{{{#!html
     9<tr class="plugin-update-tr active" id="hello-dolly-update" data-slug="hello-dolly" data-plugin="hello.php">
     10        <td colspan="3" class="plugin-update colspanchange">
     11                <div class="update-message">
     12                        There is a new version of Hello Dolly available. <a href="" class="thickbox open-plugin-details-modal" aria-label="View Hello Dolly version 1.6 details">View version 1.6 details</a> or <a href="" class="update-link" aria-label="Update Hello Dolly now">update now</a>.
     13                </div>
     14        </td>
     15</tr>
     16}}}
     17
     18WordPress 4.6:
     19{{{#!html
     20<tr class="plugin-update-tr" id="hello-dolly-update" data-slug="hello-dolly" data-plugin="hello-dolly/hello.php">
     21        <td colspan="3" class="plugin-update colspanchange">
     22                <div class="update-message notice inline notice-warning notice-alt">
     23                        <p>
     24                                There is a new version of Hello Dolly available. <a href="" class="thickbox open-plugin-details-modal" aria-label="View Hello Dolly version 1.6 details">View version 1.6 details</a> or <a href="" class="update-link" aria-label="Update Hello Dolly now">update now</a>.
     25                        </p>
     26                </div>
     27        </td>
     28</tr>
     29}}}