Make WordPress Core

Ticket #46651: 46651.3.diff

File 46651.3.diff, 1.6 KB (added by afercia, 6 years ago)
  • src/wp-admin/css/site-health.css

     
    393393        display: none;
    394394}
    395395
     396/* Better position for the WordPress admin notices and update nag. */
     397.site-health .notice {
     398        margin: 5px 20px 15px 22px;
     399}
     400
     401.site-health .update-nag {
     402        margin-bottom: 20px;
     403        margin-left: 22px;
     404}
     405
    396406@media screen and (max-width: 782px) {
    397407        .health-check-body {
    398408                margin: 0 12px;
    399409                width: auto;
    400410        }
     411
     412        .site-health .notice {
     413                margin: 5px 10px 15px;
     414        }
     415
     416        .site-health .update-nag {
     417                margin-right: 10px;
     418                margin-left: 10px;
     419        }
    401420}
    402421
    403422/* The breakpoint is usually at 960px, the additional space is to allow for the margin. */
  • src/wp-admin/site-health-info.php

     
    5656        </nav>
    5757</div>
    5858
     59<hr class="wp-header-end">
     60
    5961<div class="notice notice-error hide-if-js">
    6062        <p><?php _e( 'The Site Health check requires JavaScript.' ); ?></p>
    6163</div>
  • src/wp-admin/site-health.php

     
    6161        </nav>
    6262</div>
    6363
     64<hr class="wp-header-end">
     65
    6466<div class="notice notice-error hide-if-js">
    6567        <p><?php _e( 'The Site Health check requires JavaScript.' ); ?></p>
    6668</div>