Changeset 4533
- Timestamp:
- 12/15/2016 06:24:47 AM (8 years ago)
- 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 53 53 */ 54 54 function 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' ); 56 56 } 57 57 add_action( 'login_init', 'wporg_login_replace_css' ); … … 69 69 70 70 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' ); 72 72 } 73 73 add_action( 'wp_enqueue_scripts', 'wporg_login_scripts' ); -
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-login/stylesheets/login.css
r4480 r4533 161 161 -webkit-box-shadow:none; 162 162 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;173 163 } 174 164 … … 307 297 } 308 298 309 form#authorize {310 margin-bottom: 24px;311 }312 313 299 #loginform p.submit, 314 300 .login-action-lostpassword p.submit { … … 390 376 } 391 377 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 413 378 @media (max-width:375px) { 414 379 body, html {
Note: See TracChangeset
for help on using the changeset viewer.