[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-admin/css/ -> login-rtl.css (source)

   1  /*! This file is auto-generated */
   2  html,
   3  body {
   4      height: 100%;
   5      margin: 0;
   6      padding: 0;
   7  }
   8  
   9  body {
  10      background: #f0f0f1;
  11      min-width: 0;
  12      color: #3c434a;
  13      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  14      font-size: 13px;
  15      line-height: 1.4;
  16  }
  17  
  18  a {
  19      color: var(--wp-admin-theme-color-darker-10);
  20      transition-property: border, background, color;
  21      transition-duration: .05s;
  22      transition-timing-function: ease-in-out;
  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-right: 4px solid #3858e9;
  49      padding: 8px 12px;
  50      margin-top: 0;
  51      margin-right: 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-right-color: #4ab866;
  67      background-color: #eff9f1;
  68  }
  69  
  70  /* Match border color from common.css */
  71  .login .notice-error {
  72      border-right-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-right: 4vw;
 198          padding-left: 4vw;
 199          width: 100vw;
 200      }
 201  }
 202  
 203  .login form .forgetmenot {
 204      font-weight: 400;
 205      float: right;
 206      margin-bottom: 0;
 207  }
 208  
 209  .login .button-primary {
 210      float: left;
 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: right;
 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: right;
 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-right: 0.25em;
 252      margin-left: 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      text-decoration: none;
 331      color: #50575e;
 332  }
 333  
 334  .login #nav a:hover,
 335  .login #backtoblog a:hover,
 336  .login h1 a:hover {
 337      color: var(--wp-admin-theme-color-darker-20);
 338  }
 339  
 340  .login #nav a:focus,
 341  .login #backtoblog a:focus,
 342  .login h1 a:focus {
 343      color: #043959;
 344  }
 345  
 346  .login .privacy-policy-page-link {
 347      text-align: center;
 348      width: 100%;
 349      margin: 3em 0 2em;
 350  }
 351  
 352  .login form .input,
 353  .login input[type="text"],
 354  .login input[type="password"] {
 355      font-size: 24px;
 356      line-height: 1.33333333; /* 32px */
 357      width: 100%;
 358      border-width: 0.0625rem;
 359      padding: 0.1875rem 0.3125rem; /* 3px 5px */
 360      margin: 0 0 16px 6px;
 361      min-height: 40px;
 362      max-height: none;
 363  }
 364  
 365  .login input.password-input {
 366      font-family: Consolas, Monaco, monospace;
 367  }
 368  
 369  /* rtl:ignore */
 370  .js.login input.password-input {
 371      padding-right: 2.5rem;
 372  }
 373  
 374  .js.login-action-resetpass input[type="text"],
 375  .js.login-action-resetpass input[type="password"],
 376  .js.login-action-rp input[type="text"],
 377  .js.login-action-rp input[type="password"] {
 378      margin-bottom: 0;
 379  }
 380  
 381  .login #pass-strength-result {
 382      font-weight: 600;
 383      margin: -1px 0 16px 5px;
 384      padding: 6px 5px;
 385      text-align: center;
 386      width: 100%;
 387  }
 388  
 389  body.interim-login {
 390      height: auto;
 391  }
 392  
 393  .interim-login #login {
 394      padding: 0;
 395      margin: 5px auto 20px;
 396  }
 397  
 398  .interim-login.login h1 a {
 399      width: auto;
 400  }
 401  
 402  .interim-login #login_error,
 403  .interim-login.login .message {
 404      margin: 0 0 16px;
 405  }
 406  
 407  .interim-login.login form {
 408      margin: 0;
 409  }
 410  
 411  /* Hide visually but not from screen readers */
 412  .screen-reader-text,
 413  .screen-reader-text span {
 414      border: 0;
 415      clip-path: inset(50%);
 416      height: 1px;
 417      margin: -1px;
 418      overflow: hidden;
 419      padding: 0;
 420      position: absolute;
 421      width: 1px;
 422      /* Many screen reader and browser combinations announce broken words as they would appear visually. */
 423      word-wrap: normal !important;
 424      word-break: normal !important;
 425  }
 426  
 427  /* Hide the Edge "reveal password" native button */
 428  input::-ms-reveal {
 429      display: none;
 430  }
 431  
 432  #language-switcher {
 433      padding: 0;
 434      overflow: visible;
 435      background: none;
 436      border: none;
 437      box-shadow: none;
 438  }
 439  
 440  #language-switcher select {
 441      margin-left: 0.25em;
 442  }
 443  
 444  .language-switcher {
 445      margin: 0 auto;
 446      padding: 0 0 24px;
 447      text-align: center;
 448  }
 449  
 450  .language-switcher label {
 451      margin-left: 0.25em;
 452  }
 453  
 454  .language-switcher label .dashicons {
 455      width: auto;
 456      height: auto;
 457  }
 458  
 459  .login .language-switcher .button {
 460      margin-bottom: 0;
 461  }
 462  
 463  @media screen and (max-height: 550px) {
 464      #login {
 465          padding: 20px 0;
 466      }
 467  
 468      #language-switcher {
 469          margin-top: 0;
 470      }
 471  }
 472  
 473  
 474  @media screen and (max-width: 782px) {
 475      .interim-login input[type=checkbox] {
 476          width: 1rem;
 477          height: 1rem;
 478      }
 479  
 480      .interim-login input[type=checkbox]:checked:before {
 481          width: 1.3125rem;
 482          height: 1.3125rem;
 483          margin: -0.1875rem -0.25rem 0 0;
 484      }
 485  
 486      #language-switcher label,
 487      #language-switcher select {
 488          margin-left: 0;
 489      }
 490  }
 491  
 492  @media screen and (max-width: 400px) {
 493      .login .language-switcher .button {
 494          display: block;
 495          margin: 5px auto 0;
 496      }
 497  }


Generated : Wed May 6 08:20:15 2026 Cross-referenced by PHPXref