| [ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 /*! This file is auto-generated */ 2 /* 3 * Button mixin - creates a primary button effect. 4 * Uses CSS custom properties for theme color support across color schemes. 5 */ 6 /* 7 * Secondary button mixin - outlined style with theme color. 8 * Matches Gutenberg's .is-secondary button variant. 9 */ 10 /* 11 * Tertiary button mixin - transparent background, gray text. 12 */ 13 /** 14 * This function name uses British English to maintain backward compatibility, as developers 15 * may use the function in their own admin CSS files. See #56811. 16 */ 17 body { 18 background: #f0f0f0; 19 } 20 21 /* Links */ 22 a { 23 color: #3858e9; 24 } 25 a:hover, a:active, a:focus { 26 color: rgb(23.6923076923, 58.1538461538, 214.3076923077); 27 } 28 29 #post-body .misc-pub-post-status:before, 30 #post-body #visibility:before, 31 .curtime #timestamp:before, 32 #post-body .misc-pub-revisions:before, 33 span.wp-media-buttons-icon:before { 34 color: currentColor; 35 } 36 37 /* Link button - appears as text link, no border or background */ 38 /* Matches Gutenberg's .is-link button variant */ 39 .wp-core-ui .button-link, 40 .wp-core-ui .button.button-link { 41 color: var(--wp-admin-theme-color); 42 } 43 .wp-core-ui .button-link:hover, .wp-core-ui .button-link:active, 44 .wp-core-ui .button.button-link:hover, 45 .wp-core-ui .button.button-link:active { 46 color: var(--wp-admin-theme-color-darker-20); 47 } 48 .wp-core-ui .button-link:focus, 49 .wp-core-ui .button.button-link:focus { 50 color: var(--wp-admin-theme-color); 51 border-radius: 2px; 52 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); 53 outline: 1px solid transparent; 54 } 55 .wp-core-ui .button-link:disabled, .wp-core-ui .button-link[aria-disabled=true], 56 .wp-core-ui .button.button-link:disabled, 57 .wp-core-ui .button.button-link[aria-disabled=true] { 58 color: #949494; 59 } 60 61 .media-modal .delete-attachment, 62 .media-modal .trash-attachment, 63 .media-modal .untrash-attachment, 64 .wp-core-ui .button-link.button-link-delete { 65 color: #cc1818; 66 } 67 68 .media-modal .delete-attachment:hover, 69 .media-modal .trash-attachment:hover, 70 .media-modal .untrash-attachment:hover, 71 .media-modal .delete-attachment:focus, 72 .media-modal .trash-attachment:focus, 73 .media-modal .untrash-attachment:focus, 74 .wp-core-ui .button-link.button-link-delete:hover, 75 .wp-core-ui .button-link.button-link-delete:focus { 76 color: rgb(158.3684210526, 18.6315789474, 18.6315789474); 77 } 78 79 /* Forms */ 80 input[type=checkbox]:checked { 81 background: var(--wp-admin-theme-color); 82 border-color: var(--wp-admin-theme-color); 83 } 84 85 input[type=radio]:checked { 86 background: var(--wp-admin-theme-color); 87 border-color: var(--wp-admin-theme-color); 88 } 89 90 .wp-core-ui input[type=reset]:hover, 91 .wp-core-ui input[type=reset]:active { 92 color: rgb(23.6923076923, 58.1538461538, 214.3076923077); 93 } 94 95 input[type=text]:focus, 96 input[type=password]:focus, 97 input[type=color]:focus, 98 input[type=date]:focus, 99 input[type=datetime]:focus, 100 input[type=datetime-local]:focus, 101 input[type=email]:focus, 102 input[type=month]:focus, 103 input[type=number]:focus, 104 input[type=search]:focus, 105 input[type=tel]:focus, 106 input[type=time]:focus, 107 input[type=url]:focus, 108 input[type=week]:focus, 109 select:focus, 110 textarea:focus { 111 border-color: var(--wp-admin-theme-color); 112 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); 113 } 114 115 input[type=checkbox]:focus, 116 input[type=radio]:focus { 117 border-color: #1e1e1e; 118 box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px var(--wp-admin-theme-color); 119 outline: 2px solid transparent; 120 } 121 122 .wp-core-ui select:focus { 123 border-color: var(--wp-admin-theme-color); 124 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); 125 } 126 127 .wp-tags-autocomplete .ui-state-focus, 128 .wp-tags-autocomplete [aria-selected=true] { 129 background-color: var(--wp-admin-theme-color); 130 } 131 132 #pass1:focus, 133 #pass1-text:focus { 134 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); 135 } 136 137 .mailserver-pass-wrap .button.wp-hide-pw:focus { 138 border-color: var(--wp-admin-theme-color); 139 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); 140 } 141 142 /* Core UI */ 143 .wp-core-ui { 144 /* Default button - theme color border and text (matches secondary) */ 145 /* Exclude .button-link without increasing specificity. */ 146 } 147 .wp-core-ui .button:where(:not(.button-link)) { 148 background: transparent; 149 border: 1px solid var(--wp-admin-theme-color); 150 border-radius: 2px; 151 color: var(--wp-admin-theme-color); 152 } 153 .wp-core-ui .button:where(:not(.button-link)):hover { 154 background: rgba(var(--wp-admin-theme-color--rgb), 0.04); 155 border-color: var(--wp-admin-theme-color-darker-20); 156 color: var(--wp-admin-theme-color-darker-20); 157 } 158 .wp-core-ui .button:where(:not(.button-link)):focus { 159 background: transparent; 160 border-color: var(--wp-admin-theme-color); 161 color: var(--wp-admin-theme-color); 162 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); 163 outline: 1px solid transparent; 164 } 165 .wp-core-ui .button:where(:not(.button-link)):active { 166 background: rgba(var(--wp-admin-theme-color--rgb), 0.08); 167 border-color: var(--wp-admin-theme-color-darker-20); 168 color: var(--wp-admin-theme-color-darker-20); 169 box-shadow: none; 170 } 171 .wp-core-ui .button:where(:not(.button-link)):disabled, .wp-core-ui .button:where(:not(.button-link)).disabled { 172 background: transparent; 173 border-color: #dddddd; 174 color: #949494; 175 cursor: not-allowed; 176 } 177 .wp-core-ui { 178 /* Secondary button - same as default */ 179 } 180 .wp-core-ui .button-secondary { 181 background: transparent; 182 border: 1px solid var(--wp-admin-theme-color); 183 border-radius: 2px; 184 color: var(--wp-admin-theme-color); 185 } 186 .wp-core-ui .button-secondary:hover { 187 background: rgba(var(--wp-admin-theme-color--rgb), 0.04); 188 border-color: var(--wp-admin-theme-color-darker-20); 189 color: var(--wp-admin-theme-color-darker-20); 190 } 191 .wp-core-ui .button-secondary:focus { 192 background: transparent; 193 border-color: var(--wp-admin-theme-color); 194 color: var(--wp-admin-theme-color); 195 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); 196 outline: 1px solid transparent; 197 } 198 .wp-core-ui .button-secondary:active { 199 background: rgba(var(--wp-admin-theme-color--rgb), 0.08); 200 border-color: var(--wp-admin-theme-color-darker-20); 201 color: var(--wp-admin-theme-color-darker-20); 202 box-shadow: none; 203 } 204 .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled { 205 background: transparent; 206 border-color: #dddddd; 207 color: #949494; 208 cursor: not-allowed; 209 } 210 .wp-core-ui { 211 /* Primary button - theme color background */ 212 } 213 .wp-core-ui .button-primary { 214 background: var(--wp-admin-theme-color); 215 border-color: transparent; 216 border-radius: 2px; 217 color: #fff; 218 } 219 .wp-core-ui .button-primary:hover { 220 background: var(--wp-admin-theme-color-darker-10); 221 border-color: transparent; 222 color: #fff; 223 } 224 .wp-core-ui .button-primary:focus { 225 background: var(--wp-admin-theme-color); 226 border-color: transparent; 227 color: #fff; 228 /* Gutenberg-style focus ring: outer theme color + inset white for contrast */ 229 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color), inset 0 0 0 1px #ffffff; 230 /* Visible in Windows High Contrast mode */ 231 outline: 1px solid transparent; 232 } 233 .wp-core-ui .button-primary:active { 234 background: var(--wp-admin-theme-color-darker-20); 235 border-color: transparent; 236 color: #fff; 237 } 238 .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary.disabled { 239 background: #f0f0f0; 240 border-color: transparent; 241 color: #949494; 242 cursor: not-allowed; 243 } 244 .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary.active:hover { 245 background: var(--wp-admin-theme-color-darker-10); 246 color: #fff; 247 border-color: transparent; 248 box-shadow: none; 249 } 250 .wp-core-ui .button-group > .button.active { 251 border-color: var(--wp-admin-theme-color); 252 background: rgba(var(--wp-admin-theme-color--rgb), 0.08); 253 } 254 .wp-core-ui .wp-ui-primary { 255 color: #fff; 256 background-color: #1e1e1e; 257 } 258 .wp-core-ui .wp-ui-text-primary { 259 color: #1e1e1e; 260 } 261 .wp-core-ui .wp-ui-highlight { 262 color: #fff; 263 background-color: #3858e9; 264 } 265 .wp-core-ui .wp-ui-text-highlight { 266 color: #3858e9; 267 } 268 .wp-core-ui .wp-ui-notification { 269 color: #fff; 270 background-color: #3858e9; 271 } 272 .wp-core-ui .wp-ui-text-notification { 273 color: #3858e9; 274 } 275 .wp-core-ui .wp-ui-text-icon { 276 color: hsl(0, 7%, 95%); 277 } 278 279 /* List tables */ 280 .wrap .page-title-action { 281 background: transparent; 282 border: 1px solid var(--wp-admin-theme-color); 283 border-radius: 2px; 284 color: var(--wp-admin-theme-color); 285 } 286 287 .wrap .page-title-action:hover { 288 background: rgba(var(--wp-admin-theme-color--rgb), 0.04); 289 border-color: var(--wp-admin-theme-color-darker-20); 290 color: var(--wp-admin-theme-color-darker-20); 291 } 292 293 .wrap .page-title-action:focus { 294 background: transparent; 295 border-color: var(--wp-admin-theme-color); 296 color: var(--wp-admin-theme-color); 297 box-shadow: 0 0 0 var(--wp-admin-border-width-focus, 1.5px) var(--wp-admin-theme-color); 298 outline: 1px solid transparent; 299 } 300 301 .wrap .page-title-action:active { 302 background: rgba(var(--wp-admin-theme-color--rgb), 0.08); 303 border-color: var(--wp-admin-theme-color-darker-20); 304 color: var(--wp-admin-theme-color-darker-20); 305 box-shadow: none; 306 } 307 308 .view-switch a.current:before { 309 color: #1e1e1e; 310 } 311 312 .view-switch a:hover:before { 313 color: #3858e9; 314 } 315 316 /* Admin Menu */ 317 #adminmenuback, 318 #adminmenuwrap, 319 #adminmenu { 320 background: #1e1e1e; 321 } 322 323 #adminmenu a { 324 color: #fff; 325 } 326 327 #adminmenu div.wp-menu-image:before { 328 color: hsl(0, 7%, 95%); 329 } 330 331 #adminmenu a:hover, 332 #adminmenu li.menu-top:hover, 333 #adminmenu li.opensub > a.menu-top, 334 #adminmenu li > a.menu-top:focus { 335 color: #fff; 336 background-color: #3858e9; 337 } 338 339 #adminmenu li.menu-top:hover div.wp-menu-image:before, 340 #adminmenu li.opensub > a.menu-top div.wp-menu-image:before { 341 color: #fff; 342 } 343 344 /* Active tabs use a bottom border color that matches the page background color. */ 345 .about-wrap .nav-tab-active, 346 .nav-tab-active, 347 .nav-tab-active:hover { 348 background-color: #f0f0f0; 349 border-bottom-color: #f0f0f0; 350 } 351 352 /* Admin Menu: submenu */ 353 #adminmenu .wp-submenu, 354 #adminmenu .wp-has-current-submenu .wp-submenu, 355 #adminmenu .wp-has-current-submenu.opensub .wp-submenu, 356 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu { 357 background: rgb(12.15, 12.15, 12.15); 358 } 359 360 #adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after, 361 #adminmenu li.wp-has-submenu.wp-not-current-submenu:focus-within:after { 362 border-left-color: rgb(12.15, 12.15, 12.15); 363 } 364 365 #adminmenu .wp-submenu .wp-submenu-head { 366 color: rgb(187.5, 187.5, 187.5); 367 } 368 369 #adminmenu .wp-submenu a, 370 #adminmenu .wp-has-current-submenu .wp-submenu a, 371 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a, 372 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a { 373 color: rgb(187.5, 187.5, 187.5); 374 } 375 #adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, 376 #adminmenu .wp-has-current-submenu .wp-submenu a:focus, 377 #adminmenu .wp-has-current-submenu .wp-submenu a:hover, 378 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:focus, 379 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a:hover, 380 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:focus, 381 #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover { 382 color: #7b90ff; 383 } 384 385 /* Admin Menu: current */ 386 #adminmenu .wp-submenu li.current a, 387 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a, 388 #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a { 389 color: #fff; 390 } 391 #adminmenu .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a:focus, 392 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:hover, 393 #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a:focus, 394 #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:hover, 395 #adminmenu .wp-has-current-submenu.opensub .wp-submenu li.current a:focus { 396 color: #7b90ff; 397 } 398 399 ul#adminmenu a.wp-has-current-submenu:after, 400 ul#adminmenu > li.current > a.current:after { 401 border-left-color: #f0f0f0; 402 } 403 404 #adminmenu li.current a.menu-top, 405 #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, 406 #adminmenu li.wp-has-current-submenu .wp-submenu .wp-submenu-head, 407 .folded #adminmenu li.current.menu-top { 408 color: #fff; 409 background: #3858e9; 410 } 411 412 #adminmenu li.wp-has-current-submenu div.wp-menu-image:before, 413 #adminmenu a.current:hover div.wp-menu-image:before, 414 #adminmenu li.current div.wp-menu-image:before, 415 #adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before, 416 #adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before, 417 #adminmenu li:hover div.wp-menu-image:before, 418 #adminmenu li a:focus div.wp-menu-image:before, 419 #adminmenu li.opensub div.wp-menu-image:before { 420 color: #fff; 421 } 422 423 /* Admin Menu: bubble */ 424 #adminmenu .menu-counter, 425 #adminmenu .awaiting-mod, 426 #adminmenu .update-plugins { 427 color: #fff; 428 background: #3858e9; 429 } 430 431 #adminmenu li.current a .awaiting-mod, 432 #adminmenu li a.wp-has-current-submenu .update-plugins, 433 #adminmenu li:hover a .awaiting-mod, 434 #adminmenu li.menu-top:hover > a .update-plugins { 435 color: #fff; 436 background: rgb(12.15, 12.15, 12.15); 437 } 438 439 /* Admin Menu: collapse button */ 440 #collapse-button { 441 color: hsl(0, 7%, 95%); 442 } 443 444 #collapse-button:hover, 445 #collapse-button:focus { 446 color: #fff; 447 background: #3858e9; 448 } 449 450 /* Admin Bar */ 451 #wpadminbar { 452 color: #fff; 453 background: #1e1e1e; 454 } 455 456 #wpadminbar .ab-item, 457 #wpadminbar a.ab-item, 458 #wpadminbar > #wp-toolbar span.ab-label, 459 #wpadminbar > #wp-toolbar span.noticon { 460 color: #fff; 461 } 462 463 #wpadminbar .ab-icon, 464 #wpadminbar .ab-icon:before, 465 #wpadminbar .ab-item:before, 466 #wpadminbar .ab-item:after { 467 color: hsl(0, 7%, 95%); 468 } 469 470 #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, 471 #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, 472 #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, 473 #wpadminbar.nojs .ab-top-menu > li.menupop:hover > .ab-item, 474 #wpadminbar .ab-top-menu > li.menupop.hover > .ab-item { 475 color: #7b90ff; 476 background: rgb(12.15, 12.15, 12.15); 477 } 478 479 #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, 480 #wpadminbar:not(.mobile) > #wp-toolbar li.hover span.ab-label, 481 #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label { 482 color: #7b90ff; 483 } 484 485 #wpadminbar:not(.mobile) li:hover .ab-icon:before, 486 #wpadminbar:not(.mobile) li:hover .ab-item:before, 487 #wpadminbar:not(.mobile) li:hover .ab-item:after, 488 #wpadminbar:not(.mobile) li:hover #adminbarsearch:before { 489 color: #7b90ff; 490 } 491 492 /* Admin Bar: submenu */ 493 #wpadminbar .menupop .ab-sub-wrapper { 494 background: rgb(12.15, 12.15, 12.15); 495 } 496 497 #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, 498 #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { 499 background: rgb(47.85, 47.85, 47.85); 500 } 501 502 #wpadminbar .ab-submenu .ab-item, 503 #wpadminbar .quicklinks .menupop ul li a, 504 #wpadminbar .quicklinks .menupop.hover ul li a, 505 #wpadminbar.nojs .quicklinks .menupop:hover ul li a { 506 color: rgb(187.5, 187.5, 187.5); 507 } 508 509 #wpadminbar .quicklinks li .blavatar, 510 #wpadminbar .menupop .menupop > .ab-item:before { 511 color: hsl(0, 7%, 95%); 512 } 513 514 #wpadminbar .quicklinks .menupop ul li a:hover, 515 #wpadminbar .quicklinks .menupop ul li a:focus, 516 #wpadminbar .quicklinks .menupop ul li a:hover strong, 517 #wpadminbar .quicklinks .menupop ul li a:focus strong, 518 #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, 519 #wpadminbar .quicklinks .menupop.hover ul li a:hover, 520 #wpadminbar .quicklinks .menupop.hover ul li a:focus, 521 #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, 522 #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, 523 #wpadminbar li:hover .ab-icon:before, 524 #wpadminbar li:hover .ab-item:before, 525 #wpadminbar li a:focus .ab-icon:before, 526 #wpadminbar li .ab-item:focus:before, 527 #wpadminbar li .ab-item:focus .ab-icon:before, 528 #wpadminbar li.hover .ab-icon:before, 529 #wpadminbar li.hover .ab-item:before, 530 #wpadminbar li:hover #adminbarsearch:before, 531 #wpadminbar li #adminbarsearch.adminbar-focused:before { 532 color: #7b90ff; 533 } 534 535 #wpadminbar .quicklinks li a:hover .blavatar, 536 #wpadminbar .quicklinks li a:focus .blavatar, 537 #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, 538 #wpadminbar .menupop .menupop > .ab-item:hover:before, 539 #wpadminbar.mobile .quicklinks .hover .ab-icon:before, 540 #wpadminbar.mobile .quicklinks .hover .ab-item:before { 541 color: #7b90ff; 542 } 543 544 #wpadminbar.mobile .quicklinks .ab-icon:before, 545 #wpadminbar.mobile .quicklinks .ab-item:before { 546 color: hsl(0, 7%, 95%); 547 } 548 549 /* Admin Bar: search */ 550 #wpadminbar #adminbarsearch:before { 551 color: hsl(0, 7%, 95%); 552 } 553 554 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { 555 color: #fff; 556 background: rgb(47.85, 47.85, 47.85); 557 } 558 559 /* Admin Bar: recovery mode */ 560 #wpadminbar #wp-admin-bar-recovery-mode { 561 color: #fff; 562 background-color: #3858e9; 563 } 564 565 #wpadminbar #wp-admin-bar-recovery-mode .ab-item, 566 #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { 567 color: #fff; 568 } 569 570 #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, 571 #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, 572 #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, 573 #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { 574 color: #fff; 575 background-color: rgb(50.4, 79.2, 209.7); 576 } 577 578 /* Admin Bar: my account */ 579 #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { 580 border-color: rgb(47.85, 47.85, 47.85); 581 background-color: rgb(47.85, 47.85, 47.85); 582 } 583 584 #wpadminbar #wp-admin-bar-user-info .display-name { 585 color: #fff; 586 } 587 588 #wpadminbar #wp-admin-bar-user-info a:hover .display-name { 589 color: #7b90ff; 590 } 591 592 #wpadminbar #wp-admin-bar-user-info .username { 593 color: rgb(187.5, 187.5, 187.5); 594 } 595 596 /* Pointers */ 597 .wp-pointer .wp-pointer-content h3 { 598 background-color: #3858e9; 599 border-color: rgb(33.0384615385, 68.7307692308, 230.4615384615); 600 } 601 602 .wp-pointer .wp-pointer-content h3:before { 603 color: #3858e9; 604 } 605 606 .wp-pointer.wp-pointer-top .wp-pointer-arrow, 607 .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, 608 .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, 609 .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { 610 border-bottom-color: #3858e9; 611 } 612 613 /* Media */ 614 .media-item .bar, 615 .media-progress-bar div { 616 background-color: #3858e9; 617 } 618 619 .details.attachment { 620 box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #3858e9; 621 } 622 623 .attachment.details .check { 624 background-color: #3858e9; 625 box-shadow: 0 0 0 1px #fff, 0 0 0 2px #3858e9; 626 } 627 628 .media-selection .attachment.selection.details .thumbnail { 629 box-shadow: 0 0 0 1px #fff, 0 0 0 3px #3858e9; 630 } 631 632 /* Themes */ 633 .theme-browser .theme.active .theme-name, 634 .theme-browser .theme.add-new-theme a:hover:after, 635 .theme-browser .theme.add-new-theme a:focus:after { 636 background: #3858e9; 637 } 638 639 .theme-browser .theme.add-new-theme a:hover span:after, 640 .theme-browser .theme.add-new-theme a:focus span:after { 641 color: #3858e9; 642 } 643 644 .theme-section.current, 645 .theme-filter.current { 646 border-bottom-color: #1e1e1e; 647 } 648 649 body.more-filters-opened .more-filters { 650 color: #fff; 651 background-color: #1e1e1e; 652 } 653 654 body.more-filters-opened .more-filters:before { 655 color: #fff; 656 } 657 658 body.more-filters-opened .more-filters:hover, 659 body.more-filters-opened .more-filters:focus { 660 background-color: #3858e9; 661 color: #fff; 662 } 663 664 body.more-filters-opened .more-filters:hover:before, 665 body.more-filters-opened .more-filters:focus:before { 666 color: #fff; 667 } 668 669 /* Widgets */ 670 .widgets-chooser li.widgets-chooser-selected { 671 background-color: #3858e9; 672 color: #fff; 673 } 674 675 .widgets-chooser li.widgets-chooser-selected:before, 676 .widgets-chooser li.widgets-chooser-selected:focus:before { 677 color: #fff; 678 } 679 680 /* Nav Menus */ 681 .nav-menus-php .item-edit:focus:before { 682 box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; 683 } 684 685 /* Responsive Component */ 686 div#wp-responsive-toggle a:before { 687 color: hsl(0, 7%, 95%); 688 } 689 690 .wp-responsive-open div#wp-responsive-toggle a { 691 border-color: transparent; 692 background: #3858e9; 693 } 694 695 .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { 696 background: rgb(12.15, 12.15, 12.15); 697 } 698 699 .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { 700 color: hsl(0, 7%, 95%); 701 } 702 703 /* TinyMCE */ 704 .mce-container.mce-menu .mce-menu-item:hover, 705 .mce-container.mce-menu .mce-menu-item.mce-selected, 706 .mce-container.mce-menu .mce-menu-item:focus, 707 .mce-container.mce-menu .mce-menu-item-normal.mce-active, 708 .mce-container.mce-menu .mce-menu-item-preview.mce-active { 709 background: #3858e9; 710 } 711 712 /* Customizer */ 713 .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, 714 .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, 715 .wp-core-ui #customize-controls .control-section.open .accordion-section-title, 716 .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { 717 color: #3858e9; 718 border-right-color: #3858e9; 719 } 720 .wp-core-ui .customize-controls-close:focus, 721 .wp-core-ui .customize-controls-close:hover, 722 .wp-core-ui .customize-controls-preview-toggle:focus, 723 .wp-core-ui .customize-controls-preview-toggle:hover { 724 color: #3858e9; 725 border-top-color: #3858e9; 726 } 727 .wp-core-ui .customize-panel-back:hover, 728 .wp-core-ui .customize-panel-back:focus, 729 .wp-core-ui .customize-section-back:hover, 730 .wp-core-ui .customize-section-back:focus { 731 color: #3858e9; 732 border-right-color: #3858e9; 733 } 734 .wp-core-ui .customize-screen-options-toggle:hover, 735 .wp-core-ui .customize-screen-options-toggle:active, 736 .wp-core-ui .customize-screen-options-toggle:focus, 737 .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, 738 .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, 739 .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, 740 .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { 741 color: #3858e9; 742 } 743 .wp-core-ui .customize-screen-options-toggle:focus:before, 744 .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, 745 .wp-core-ui .menu-item-bar .item-delete:focus:before, 746 .wp-core-ui #available-menu-items .item-add:focus:before, 747 .wp-core-ui #customize-save-button-wrapper .save:focus, 748 .wp-core-ui #publish-settings:focus { 749 box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; 750 } 751 .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, 752 .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, 753 .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { 754 color: #3858e9; 755 } 756 .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, 757 .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { 758 border-right-color: #3858e9; 759 color: #3858e9; 760 } 761 .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { 762 background: #3858e9; 763 } 764 .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { 765 color: #3858e9; 766 } 767 .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, 768 .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, 769 .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, 770 .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, 771 .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, 772 .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, 773 .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, 774 .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { 775 color: #3858e9; 776 } 777 .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { 778 background-color: #fbfbfc; 779 border-color: #3858e9; 780 border-style: solid; 781 box-shadow: 0 0 0 1px #3858e9; 782 outline: 2px solid transparent; 783 } 784 .wp-core-ui .wp-full-overlay-footer .devices button:focus, 785 .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { 786 border-bottom-color: #3858e9; 787 } 788 .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, 789 .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { 790 color: #3858e9; 791 } 792 .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, 793 .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { 794 color: #3858e9; 795 } 796 .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, 797 .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { 798 box-shadow: 0 0 0 1px rgb(101.9230769231, 126.5384615385, 238.0769230769), 0 0 2px 1px #3858e9; 799 } 800 .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .close:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .right:hover, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:focus, .wp-core-ui.wp-customizer .theme-overlay .theme-header .left:hover { 801 border-bottom-color: #3858e9; 802 color: #3858e9; 803 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Mon Aug 31 08:20:24 2026 | Cross-referenced by PHPXref |