Make WordPress Core

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


Ignore:
Timestamp:
08/07/2016 01:05:56 PM (7 years ago)
Author:
ocean90
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #37504, comment 20

    v1 v2  
    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 
    7 WordPress 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 
    18 WordPress 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 }}}