| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 html, 2 body { 3 height: 100%; 4 margin: 0; 5 padding: 0; 6 } 7 8 body { 9 background: #f0f0f1; 10 min-width: 0; 11 color: #3c434a; 12 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; 13 font-size: 13px; 14 line-height: 1.4; 15 } 16 17 a { 18 color: var(--wp-admin-theme-color-darker-10); 19 transition-property: border, background, color; 20 transition-duration: .05s; 21 transition-timing-function: ease-in-out; 22 text-underline-position: under; 23 } 24 25 a { 26 outline: 0; 27 } 28 29 a:hover, 30 a:active { 31 color: var(--wp-admin-theme-color-darker-20); 32 } 33 34 a:focus { 35 color: #043959; 36 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color, #3858e9); 37 /* Only visible in Windows High Contrast mode */ 38 outline: 2px solid transparent; 39 } 40 41 p { 42 line-height: 1.5; 43 } 44 45 .login .message, 46 .login .notice, 47 .login .success { 48 border-left: 4px solid #3858e9; 49 padding: 8px 12px; 50 margin-top: 0; 51 margin-left: 0; 52 margin-bottom: 20px; 53 background-color: #fff; 54 word-wrap: break-word; 55 } 56 57 .login .message p, 58 .login .notice p, 59 .login .success p { 60 font-size: 13px; 61 line-height: 1.54; 62 margin: 0.5em 0; 63 } 64 65 .login .success { 66 border-left-color: #4ab866; 67 background-color: #eff9f1; 68 } 69 70 /* Match border color from common.css */ 71 .login .notice-error { 72 border-left-color: #cc1818; 73 background-color: #fcf0f0; 74 } 75 76 .login .login-error-list { 77 list-style: none; 78 } 79 80 .login .login-error-list li + li { 81 margin-top: 4px; 82 } 83 84 #loginform p.submit, 85 .login-action-lostpassword p.submit { 86 border: none; 87 margin: -10px 0 20px; /* May want to revisit this */ 88 } 89 90 .login * { 91 margin: 0; 92 padding: 0; 93 } 94 95 .login .input::-ms-clear { 96 display: none; 97 } 98 99 .login .pw-weak { 100 margin-bottom: 15px; 101 } 102 103 /* rtl:ignore */ 104 .login .button.wp-hide-pw { 105 background: transparent; 106 border: 1px solid transparent; 107 box-shadow: none; 108 font-size: 14px; 109 line-height: normal; 110 width: 2.5rem; 111 height: 2.5rem; 112 min-width: 40px; 113 min-height: 40px; 114 margin: 0; 115 padding: 5px 9px; 116 position: absolute; 117 right: 0; 118 top: 0; 119 } 120 121 .login .button.wp-hide-pw:hover { 122 background: transparent; 123 } 124 125 .login .button.wp-hide-pw:focus { 126 background: transparent; 127 border-color: var(--wp-admin-theme-color); 128 box-shadow: 0 0 0 1px var(--wp-admin-theme-color); 129 /* Only visible in Windows High Contrast mode */ 130 outline: 2px solid transparent; 131 } 132 133 .login .button.wp-hide-pw:active { 134 background: transparent; 135 box-shadow: none; 136 transform: none; 137 } 138 139 .login .button.wp-hide-pw .dashicons { 140 width: 1.25rem; 141 height: 1.25rem; 142 } 143 144 .login .wp-pwd { 145 position: relative; 146 } 147 148 .no-js .hide-if-no-js { 149 display: none; 150 } 151 152 .login form { 153 margin: 24px 0; 154 padding: 26px 24px; 155 font-weight: 400; 156 overflow: hidden; 157 background: #fff; 158 border: 1px solid #c3c4c7; 159 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04); 160 } 161 162 .login form.shake { 163 animation: shake 0.2s cubic-bezier(.19,.49,.38,.79) both; 164 animation-iteration-count: 3; 165 transform: translateX(0); 166 } 167 168 @keyframes shake { 169 25% { 170 transform: translateX(-20px); 171 } 172 75% { 173 transform: translateX(20px); 174 } 175 100% { 176 transform: translateX(0); 177 } 178 } 179 180 @media (prefers-reduced-motion: reduce) { 181 .login form.shake { 182 animation: none; 183 transform: none; 184 } 185 } 186 187 .login-action-confirm_admin_email #login { 188 width: 60vw; 189 max-width: 650px; 190 margin-top: -2vh; 191 } 192 193 @media screen and (max-width: 782px) { 194 .login-action-confirm_admin_email #login { 195 box-sizing: border-box; 196 margin-top: 0; 197 padding-left: 4vw; 198 padding-right: 4vw; 199 width: 100vw; 200 } 201 } 202 203 .login form .forgetmenot { 204 font-weight: 400; 205 float: left; 206 margin-bottom: 0; 207 } 208 209 .login .button-primary { 210 float: right; 211 } 212 213 .login .reset-pass-submit { 214 display: flex; 215 flex-flow: row wrap; 216 justify-content: space-between; 217 } 218 219 .login .reset-pass-submit .button { 220 display: inline-block; 221 float: none; 222 margin-bottom: 6px; 223 } 224 225 .login .admin-email-confirm-form .submit { 226 text-align: center; 227 } 228 229 .admin-email__later { 230 text-align: left; 231 } 232 233 .login form p.admin-email__details { 234 margin: 1.1em 0; 235 } 236 237 .login .admin-email__heading { 238 border-bottom: 1px #f0f0f1 solid; 239 color: #50575e; 240 font-weight: normal; 241 padding-bottom: 0.5em; 242 text-align: left; 243 } 244 245 .admin-email__actions div { 246 padding-top: 1.5em; 247 } 248 249 .login .admin-email__actions .button-primary { 250 float: none; 251 margin-left: 0.25em; 252 margin-right: 0.25em; 253 } 254 255 #login form p { 256 margin-bottom: 0; 257 } 258 259 #login form .indicator-hint, 260 #login #reg_passmail { 261 margin-bottom: 16px; 262 } 263 264 #login form p.submit { 265 margin: 0; 266 padding: 0; 267 } 268 269 .login label { 270 font-size: 14px; 271 line-height: 1.5; 272 display: inline-block; 273 margin-bottom: 3px; 274 } 275 276 .login .forgetmenot label, 277 .login .pw-weak label { 278 line-height: 1.5; 279 vertical-align: baseline; 280 } 281 282 .login h1 { 283 text-align: center; 284 } 285 286 .login h1 a { 287 background-image: url(../images/w-logo-gray.png?ver=20260303); 288 background-image: none, url(../images/wordpress-logo-gray.svg?ver=20260303); 289 background-size: 84px; 290 background-position: center top; 291 background-repeat: no-repeat; 292 color: #3c434a; 293 height: 84px; 294 font-size: 20px; 295 font-weight: 400; 296 line-height: 1.3; 297 margin: 0 auto 24px; 298 padding: 0; 299 text-decoration: none; 300 width: 84px; 301 text-indent: -9999px; 302 outline: none; 303 overflow: hidden; 304 display: block; 305 } 306 307 #login { 308 width: 320px; 309 padding: 5% 0 0; 310 margin: auto; 311 } 312 313 .login #nav, 314 .login #backtoblog { 315 font-size: 13px; 316 padding: 0 24px; 317 } 318 319 .login #nav { 320 margin: 24px 0 0; 321 } 322 323 #backtoblog { 324 margin: 16px 0; 325 word-wrap: break-word; 326 } 327 328 .login #nav a, 329 .login #backtoblog a { 330 color: #50575e; 331 } 332 333 .login #nav a:hover, 334 .login #backtoblog a:hover, 335 .login h1 a:hover { 336 color: var(--wp-admin-theme-color-darker-20); 337 } 338 339 .login #nav a:focus, 340 .login #backtoblog a:focus, 341 .login h1 a:focus { 342 color: #043959; 343 } 344 345 .login .privacy-policy-page-link { 346 text-align: center; 347 width: 100%; 348 margin: 3em 0 2em; 349 } 350 351 .login form .input, 352 .login input[type="text"], 353 .login input[type="password"] { 354 font-size: 24px; 355 line-height: 1.33333333; /* 32px */ 356 width: 100%; 357 border-width: 0.0625rem; 358 padding: 0.1875rem 0.3125rem; /* 3px 5px */ 359 margin: 0 6px 16px 0; 360 min-height: 40px; 361 max-height: none; 362 } 363 364 .login input.password-input { 365 font-family: Consolas, Monaco, monospace; 366 } 367 368 /* rtl:ignore */ 369 .js.login input.password-input { 370 padding-right: 2.5rem; 371 } 372 373 .js.login-action-resetpass input[type="text"], 374 .js.login-action-resetpass input[type="password"], 375 .js.login-action-rp input[type="text"], 376 .js.login-action-rp input[type="password"] { 377 margin-bottom: 0; 378 } 379 380 .login #pass-strength-result { 381 font-weight: 600; 382 margin: -1px 5px 16px 0; 383 padding: 6px 5px; 384 text-align: center; 385 width: 100%; 386 } 387 388 body.interim-login { 389 height: auto; 390 } 391 392 .interim-login #login { 393 padding: 0; 394 margin: 5px auto 20px; 395 } 396 397 .interim-login.login h1 a { 398 width: auto; 399 } 400 401 .interim-login #login_error, 402 .interim-login.login .message { 403 margin: 0 0 16px; 404 } 405 406 .interim-login.login form { 407 margin: 0; 408 } 409 410 /* Hide visually but not from screen readers */ 411 .screen-reader-text, 412 .screen-reader-text span { 413 border: 0; 414 clip-path: inset(50%); 415 height: 1px; 416 margin: -1px; 417 overflow: hidden; 418 padding: 0; 419 position: absolute; 420 width: 1px; 421 /* Many screen reader and browser combinations announce broken words as they would appear visually. */ 422 word-wrap: normal !important; 423 word-break: normal !important; 424 } 425 426 /* Hide the Edge "reveal password" native button */ 427 input::-ms-reveal { 428 display: none; 429 } 430 431 #language-switcher { 432 padding: 0; 433 overflow: visible; 434 background: none; 435 border: none; 436 box-shadow: none; 437 } 438 439 #language-switcher select { 440 margin-right: 0.25em; 441 } 442 443 .language-switcher { 444 margin: 0 auto; 445 padding: 0 0 24px; 446 text-align: center; 447 } 448 449 .language-switcher form { 450 display: inline-block; 451 } 452 453 .language-switcher label { 454 display: block; 455 margin-bottom: 0.5em; 456 text-align: left; 457 } 458 459 .language-switcher label .dashicons { 460 margin-left: 0.5em; 461 width: auto; 462 height: auto; 463 } 464 465 .login .language-switcher .button { 466 margin-bottom: 0; 467 } 468 469 @media screen and (max-height: 550px) { 470 #login { 471 padding: 20px 0; 472 } 473 474 #language-switcher { 475 margin-top: 0; 476 } 477 } 478 479 480 @media screen and (max-width: 782px) { 481 .interim-login input[type=checkbox] { 482 width: 1rem; 483 height: 1rem; 484 } 485 486 .interim-login input[type=checkbox]:checked:before { 487 width: 1.3125rem; 488 height: 1.3125rem; 489 margin: -0.1875rem 0 0 -0.25rem; 490 } 491 492 #language-switcher label, 493 #language-switcher select { 494 margin-right: 0; 495 } 496 } 497 498 @media screen and (max-width: 400px) { 499 .login .language-switcher .button { 500 display: block; 501 margin: 5px auto 0; 502 } 503 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Wed Jul 22 08:20:19 2026 | Cross-referenced by PHPXref |