Make WordPress Core

Ticket #32244: notice-classes.2.diff

File notice-classes.2.diff, 5.4 KB (added by paulwilde, 10 years ago)
  • wp-admin/css/common.css

    diff --git a/wp-admin/css/common.css b/wp-admin/css/common.css
    index 567155e..1c527bf 100644
    a b div.error { 
    12831283}
    12841284
    12851285.notice p,
     1286.notice-title,
    12861287div.updated p,
    12871288div.error p,
    12881289.form-table td .notice p {
    1289         margin: 0.5em 0;
     1290        margin: .5em 0;
    12901291        padding: 2px;
    12911292}
    12921293
     1294.error a {
     1295        text-decoration: underline;
     1296}
     1297
     1298.updated a {
     1299        text-decoration: none;
     1300        padding-bottom: 2px;
     1301}
     1302
     1303.notice-alt {
     1304        border: 1px solid #eee;
     1305        border-left-width: 4px;
     1306        border-radius: 3px;
     1307        box-shadow: none;
     1308}
     1309
     1310.notice-large {
     1311        padding: 10px 20px;
     1312}
     1313
     1314.notice-title {
     1315        color: #23282d;
     1316        font-size: 18px;
     1317        display: inline-block;
     1318}
     1319
    12931320.wp-core-ui .notice.is-dismissible {
    12941321        padding-right: 38px;
    12951322        position: relative;
    div.error p, 
    13331360
    13341361.notice-success,
    13351362div.updated {
    1336         border-color: #7ad03a;
     1363        border-left-color: #64b450;
     1364}
     1365
     1366.notice-success.notice-alt {
     1367        background-color: #eff7ed;
    13371368}
    13381369
    13391370.notice-warning {
    1340         border-color: #ffba00;
     1371        border-left-color: #ffb900;
     1372}
     1373
     1374.notice-warning.notice-alt {
     1375        background-color: #fff8e5;
    13411376}
    13421377
    13431378.notice-error,
    13441379div.error {
    1345         border-color: #dd3d36;
     1380        border-left-color: #dc3232;
     1381}
     1382
     1383.notice-error.notice-alt {
     1384        background-color: #fbeaea;
    13461385}
    13471386
    13481387.notice-info {
    1349         border-color: #00a0d2;
     1388        border-left-color: #00a0d2;
     1389}
     1390
     1391.notice-info.notice-alt {
     1392        background-color: #e5f5fa;
    13501393}
    13511394
    13521395.wrap .notice,
    img { 
    27602803        content: '\f140';
    27612804}
    27622805
    2763 .error a {
    2764         text-decoration: underline;
    2765 }
    2766 
    2767 .updated a {
    2768         text-decoration: none;
    2769         padding-bottom: 2px;
    2770 }
    2771 
    27722806/* @todo: appears to be Press This only and overridden */
    27732807#photo-add-url-div input[type="text"] {
    27742808        width: 300px;
  • wp-admin/css/login.css

    diff --git a/wp-admin/css/login.css b/wp-admin/css/login.css
    index 250b0a4..3f9cd46 100644
    a b p { 
    5353        line-height: 1.5;
    5454}
    5555
    56 .login .message {
     56.login .message,
     57.login #login_error {
    5758        border-left: 4px solid #00a0d2;
    58         padding: 1px 12px;
     59        padding: 12px;
     60        margin-left: 0;
    5961        background-color: #fff;
    6062        -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    6163        box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    6264}
    6365
    6466.login #login_error {
    65         border-left: 4px solid #dd3d36;
    66         background: #fff;
    67         -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
    68         box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
     67        border-left-color: #dc3232;
    6968}
    7069
    7170#loginform p.submit,
    p { 
    151150        margin: auto;
    152151}
    153152
    154 #login_error,
    155 .login .message {
    156         margin-left: 0;
    157         padding: 12px;
    158 }
    159 
    160153.login #nav,
    161154.login #backtoblog {
    162155        font-size: 13px;
    p { 
    214207        padding: 20px 0;
    215208}
    216209
    217 .mobile #login form,
    218 .mobile #login .message,
    219 .mobile #login_error {
     210.mobile #login form {
    220211        margin-left: 0;
    221212}
    222213
  • wp-admin/css/themes.css

    diff --git a/wp-admin/css/themes.css b/wp-admin/css/themes.css
    index 1814884..8c9670d 100644
    a b body.folded .theme-overlay .theme-wrap { 
    788788        margin-right: 5px;
    789789}
    790790
    791 /* Theme Updates info */
    792 .theme-overlay .theme-update-message {
    793         background: #fef7f1;
    794         border: 1px solid #eee;
    795         border-left: 4px solid #d54e21;
    796         -webkit-border-radius: 3px;
    797         border-radius: 3px;
    798         padding: 5px 20px 10px;
    799 }
    800 
    801 .theme-overlay .theme-update {
    802         color: #23282d;
    803         font-size: 18px;
    804         display: inline-block;
    805         line-height: 40px;
    806         margin: 0;
    807 }
    808 
    809791.theme-overlay .parent-theme {
    810792        background: #f7fcfe;
    811793        border: 1px solid #eee;
  • wp-admin/includes/plugin-install.php

    diff --git a/wp-admin/includes/plugin-install.php b/wp-admin/includes/plugin-install.php
    index b8cf32f..bbd2003 100644
    a b function install_plugin_information() { 
    530530        <div id="section-holder" class="wrap">
    531531        <?php
    532532                if ( ! empty( $api->tested ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->tested ) ), $api->tested, '>' ) ) {
    533                         echo '<div class="notice notice-warning"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been tested</strong> with your current version of WordPress.') . '</p></div>';
     533                        echo '<div class="notice notice-warning notice-alt"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been tested</strong> with your current version of WordPress.') . '</p></div>';
    534534                } elseif ( ! empty( $api->requires ) && version_compare( substr( $GLOBALS['wp_version'], 0, strlen( $api->requires ) ), $api->requires, '<' ) ) {
    535                         echo '<div class="notice notice-warning"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been marked as compatible</strong> with your version of WordPress.') . '</p></div>';
     535                        echo '<div class="notice notice-warning notice-alt"><p>' . __('<strong>Warning:</strong> This plugin has <strong>not been marked as compatible</strong> with your version of WordPress.') . '</p></div>';
    536536                }
    537537
    538538                foreach ( (array) $api->sections as $section_name => $content ) {
  • wp-admin/themes.php

    diff --git a/wp-admin/themes.php b/wp-admin/themes.php
    index 81e0d75..9d3f1d8 100644
    a b $can_delete = current_user_can( 'delete_themes' ); 
    382382                                <h4 class="theme-author"><?php printf( __( 'By %s' ), '{{{ data.authorAndUri }}}' ); ?></h4>
    383383
    384384                                <# if ( data.hasUpdate ) { #>
    385                                 <div class="theme-update-message">
    386                                         <h4 class="theme-update"><?php _e( 'Update Available' ); ?></h4>
     385                                <div class="notice notice-warning notice-alt notice-large">
     386                                        <h4 class="notice-title"><?php _e( 'Update Available' ); ?></h4>
    387387                                        {{{ data.update }}}
    388388                                </div>
    389389                                <# } #>