Making WordPress.org

Changeset 4533


Ignore:
Timestamp:
12/15/2016 06:24:47 AM (8 years ago)
Author:
dd32
Message:

Login: Remove the partial reminents of oauth and l10n/rtl styles that don't actually apply to the current theme.

See #148

Location:
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login
Files:
2 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/functions.php

    r4480 r4533  
    5353 */
    5454function wporg_login_replace_css() {
    55     wp_enqueue_style( 'wporg-login', get_template_directory_uri() . '/stylesheets/login.css', array( 'login', 'dashicons', 'l10n' ), '20161204a' );
     55    wp_enqueue_style( 'wporg-login', get_template_directory_uri() . '/stylesheets/login.css', array( 'login', 'dashicons' ), '20161204a' );
    5656}
    5757add_action( 'login_init', 'wporg_login_replace_css' );
     
    6969
    7070    wp_enqueue_style( 'wporg-normalize', get_template_directory_uri() . '/stylesheets/normalize.css', 3 );
    71     wp_enqueue_style( 'wporg-login', get_template_directory_uri() . '/stylesheets/login.css', array( 'login', 'dashicons', 'l10n' ), '20161204a' );
     71    wp_enqueue_style( 'wporg-login', get_template_directory_uri() . '/stylesheets/login.css', array( 'login', 'dashicons' ), '20161204a' );
    7272}
    7373add_action( 'wp_enqueue_scripts', 'wporg_login_scripts' );
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/stylesheets/login.css

    r4480 r4533  
    161161    -webkit-box-shadow:none;
    162162    box-shadow:none;
    163 }
    164 
    165 .side-by-side .btn {
    166     display: inline-block;
    167     max-width: 144px;
    168     margin-right: 11px;
    169 }
    170 
    171 .side-by-side .btn:last-child {
    172     margin-right: 0;
    173163}
    174164
     
    307297}
    308298
    309 form#authorize {
    310     margin-bottom: 24px;
    311 }
    312 
    313299#loginform p.submit,
    314300.login-action-lostpassword p.submit {
     
    390376}
    391377
    392 .oauth {
    393     width: 100%;
    394     background: #32373c;
    395     height: auto;
    396     overflow: hidden;
    397     margin-top: -24px;
    398     -webkit-transition: all 0.3s ease;
    399     transition: all 0.3s ease;
    400 }
    401 
    402 .oauth > div {
    403     text-align: center;
    404     margin: 0 auto;
    405     padding: 48px 16px;
    406     max-width: 1024px;
    407 }
    408 
    409 .oauth > div .partner-logo {
    410     margin-bottom: 24px;
    411 }
    412 
    413378@media (max-width:375px) {
    414379    body, html {
Note: See TracChangeset for help on using the changeset viewer.