| [ 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: #0073aa; 24 } 25 a:hover, a:active, a:focus { 26 color: rgb(0, 149.5, 221); 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(0, 149.5, 221); 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: #333c42; 257 } 258 .wp-core-ui .wp-ui-text-primary { 259 color: #333c42; 260 } 261 .wp-core-ui .wp-ui-highlight { 262 color: #fff; 263 background-color: #cf4339; 264 } 265 .wp-core-ui .wp-ui-text-highlight { 266 color: #cf4339; 267 } 268 .wp-core-ui .wp-ui-notification { 269 color: #1e1e1e; 270 background-color: #69a8bb; 271 } 272 .wp-core-ui .wp-ui-text-notification { 273 color: #69a8bb; 274 } 275 .wp-core-ui .wp-ui-text-icon { 276 color: hsl(204, 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: #333c42; 310 } 311 312 .view-switch a:hover:before { 313 color: #69a8bb; 314 } 315 316 /* Admin Menu */ 317 #adminmenuback, 318 #adminmenuwrap, 319 #adminmenu { 320 background: #333c42; 321 } 322 323 #adminmenu a { 324 color: #fff; 325 } 326 327 #adminmenu div.wp-menu-image:before { 328 color: hsl(204, 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: #cf4339; 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(35.4384615385, 41.6923076923, 45.8615384615); 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-right-color: rgb(35.4384615385, 41.6923076923, 45.8615384615); 363 } 364 365 #adminmenu .wp-submenu .wp-submenu-head { 366 color: rgb(193.8, 196.5, 198.3); 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(193.8, 196.5, 198.3); 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: #fff; 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: #fff; 397 } 398 399 ul#adminmenu a.wp-has-current-submenu:after, 400 ul#adminmenu > li.current > a.current:after { 401 border-right-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: #cf4339; 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: #1e1e1e; 428 background: #69a8bb; 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(35.4384615385, 41.6923076923, 45.8615384615); 437 } 438 439 /* Admin Menu: collapse button */ 440 #collapse-button { 441 color: hsl(204, 7%, 95%); 442 } 443 444 #collapse-button:hover, 445 #collapse-button:focus { 446 color: #fff; 447 background: #cf4339; 448 } 449 450 /* Admin Bar */ 451 #wpadminbar { 452 color: #fff; 453 background: #333c42; 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(204, 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: #fff; 476 background: rgb(35.4384615385, 41.6923076923, 45.8615384615); 477 } 478 479 #wpadminbar > #wp-toolbar li:hover span.ab-label, 480 #wpadminbar > #wp-toolbar li.hover span.ab-label, 481 #wpadminbar > #wp-toolbar :focus span.ab-label { 482 color: #fff; 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: #fff; 490 } 491 492 /* Admin Bar: submenu */ 493 #wpadminbar .menupop .ab-sub-wrapper { 494 background: rgb(35.4384615385, 41.6923076923, 45.8615384615); 495 } 496 497 #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, 498 #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu { 499 background: rgb(71.9060384615, 77.2387923077, 80.7939615385); 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(193.8, 196.5, 198.3); 507 } 508 509 #wpadminbar .quicklinks li .blavatar, 510 #wpadminbar .menupop .menupop > .ab-item:before, 511 #wpadminbar.mobile .quicklinks .ab-icon:before, 512 #wpadminbar.mobile .quicklinks .ab-item:before { 513 color: hsl(204, 7%, 95%); 514 } 515 516 #wpadminbar .quicklinks .menupop ul li a:hover, 517 #wpadminbar .quicklinks .menupop ul li a:focus, 518 #wpadminbar .quicklinks .menupop ul li a:hover strong, 519 #wpadminbar .quicklinks .menupop ul li a:focus strong, 520 #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a, 521 #wpadminbar .quicklinks .menupop.hover ul li a:hover, 522 #wpadminbar .quicklinks .menupop.hover ul li a:focus, 523 #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover, 524 #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, 525 #wpadminbar li:hover .ab-icon:before, 526 #wpadminbar li:hover .ab-item:before, 527 #wpadminbar li a:focus .ab-icon:before, 528 #wpadminbar li .ab-item:focus:before, 529 #wpadminbar li .ab-item:focus .ab-icon:before, 530 #wpadminbar li.hover .ab-icon:before, 531 #wpadminbar li.hover .ab-item:before, 532 #wpadminbar li:hover #adminbarsearch:before, 533 #wpadminbar li #adminbarsearch.adminbar-focused:before { 534 color: #fff; 535 } 536 537 #wpadminbar .quicklinks li a:hover .blavatar, 538 #wpadminbar .quicklinks li a:focus .blavatar, 539 #wpadminbar .quicklinks .ab-sub-wrapper .menupop.hover > a .blavatar, 540 #wpadminbar .menupop .menupop > .ab-item:hover:before, 541 #wpadminbar.mobile .quicklinks .hover .ab-icon:before, 542 #wpadminbar.mobile .quicklinks .hover .ab-item:before, 543 #wpadminbar.mobile .quicklinks .ab-item:focus:before { 544 color: #fff; 545 } 546 547 /* Admin Bar: search */ 548 #wpadminbar #adminbarsearch:before { 549 color: hsl(204, 7%, 95%); 550 } 551 552 #wpadminbar > #wp-toolbar > #wp-admin-bar-top-secondary > #wp-admin-bar-search #adminbarsearch input.adminbar-input:focus { 553 color: #fff; 554 background: rgb(66.5615384615, 78.3076923077, 86.1384615385); 555 } 556 557 /* Admin Bar: recovery mode */ 558 #wpadminbar #wp-admin-bar-recovery-mode { 559 color: #1e1e1e; 560 background-color: #69a8bb; 561 } 562 563 #wpadminbar #wp-admin-bar-recovery-mode .ab-item, 564 #wpadminbar #wp-admin-bar-recovery-mode a.ab-item { 565 color: #1e1e1e; 566 } 567 568 #wpadminbar .ab-top-menu > #wp-admin-bar-recovery-mode.hover > .ab-item, 569 #wpadminbar.nojq .quicklinks .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus, 570 #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode:hover > .ab-item, 571 #wpadminbar:not(.mobile) .ab-top-menu > #wp-admin-bar-recovery-mode > .ab-item:focus { 572 color: #1e1e1e; 573 background-color: rgb(94.5, 151.2, 168.3); 574 } 575 576 /* Admin Bar: my account */ 577 #wpadminbar .quicklinks li#wp-admin-bar-my-account.with-avatar > a img { 578 border-color: rgb(66.5615384615, 78.3076923077, 86.1384615385); 579 background-color: rgb(66.5615384615, 78.3076923077, 86.1384615385); 580 } 581 582 #wpadminbar #wp-admin-bar-user-info .display-name { 583 color: #fff; 584 } 585 586 #wpadminbar #wp-admin-bar-user-info .username { 587 color: rgb(193.8, 196.5, 198.3); 588 } 589 590 #wpadminbar #wp-admin-bar-user-info a:hover .display-name, 591 #wpadminbar #wp-admin-bar-user-info a:focus .display-name, 592 #wpadminbar #wp-admin-bar-user-info a:hover .username, 593 #wpadminbar #wp-admin-bar-user-info a:focus .username { 594 color: #fff; 595 } 596 597 /* Pointers */ 598 .wp-pointer .wp-pointer-content h3 { 599 background-color: #cf4339; 600 border-color: rgb(191.9634146341, 56.2317073171, 46.5365853659); 601 } 602 603 .wp-pointer .wp-pointer-content h3:before { 604 color: #cf4339; 605 } 606 607 .wp-pointer.wp-pointer-top .wp-pointer-arrow, 608 .wp-pointer.wp-pointer-top .wp-pointer-arrow-inner, 609 .wp-pointer.wp-pointer-undefined .wp-pointer-arrow, 610 .wp-pointer.wp-pointer-undefined .wp-pointer-arrow-inner { 611 border-bottom-color: #cf4339; 612 } 613 614 /* Media */ 615 .media-item .bar, 616 .media-progress-bar div { 617 background-color: #cf4339; 618 } 619 620 .details.attachment { 621 box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 7px #cf4339; 622 } 623 624 .attachment.details .check { 625 background-color: #cf4339; 626 box-shadow: 0 0 0 1px #fff, 0 0 0 2px #cf4339; 627 } 628 629 .media-selection .attachment.selection.details .thumbnail { 630 box-shadow: 0 0 0 1px #fff, 0 0 0 3px #cf4339; 631 } 632 633 /* Themes */ 634 .theme-browser .theme.active .theme-name, 635 .theme-browser .theme.add-new-theme a:hover:after, 636 .theme-browser .theme.add-new-theme a:focus:after { 637 background: #cf4339; 638 } 639 640 .theme-browser .theme.add-new-theme a:hover span:after, 641 .theme-browser .theme.add-new-theme a:focus span:after { 642 color: #cf4339; 643 } 644 645 .theme-section.current, 646 .theme-filter.current { 647 border-bottom-color: #333c42; 648 } 649 650 body.more-filters-opened .more-filters { 651 color: #fff; 652 background-color: #333c42; 653 } 654 655 body.more-filters-opened .more-filters:before { 656 color: #fff; 657 } 658 659 body.more-filters-opened .more-filters:hover, 660 body.more-filters-opened .more-filters:focus { 661 background-color: #cf4339; 662 color: #fff; 663 } 664 665 body.more-filters-opened .more-filters:hover:before, 666 body.more-filters-opened .more-filters:focus:before { 667 color: #fff; 668 } 669 670 /* Widgets */ 671 .widgets-chooser li.widgets-chooser-selected { 672 background-color: #cf4339; 673 color: #fff; 674 } 675 676 .widgets-chooser li.widgets-chooser-selected:before, 677 .widgets-chooser li.widgets-chooser-selected:focus:before { 678 color: #fff; 679 } 680 681 /* Nav Menus */ 682 .nav-menus-php .item-edit:focus:before { 683 box-shadow: 0 0 0 1px rgb(216.9512195122, 105.9756097561, 98.0487804878), 0 0 2px 1px #cf4339; 684 } 685 686 /* Responsive Component */ 687 div#wp-responsive-toggle a:before { 688 color: hsl(204, 7%, 95%); 689 } 690 691 .wp-responsive-open div#wp-responsive-toggle a { 692 border-color: transparent; 693 background: #cf4339; 694 } 695 696 .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a { 697 background: rgb(35.4384615385, 41.6923076923, 45.8615384615); 698 } 699 700 .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before { 701 color: hsl(204, 7%, 95%); 702 } 703 704 /* TinyMCE */ 705 .mce-container.mce-menu .mce-menu-item:hover, 706 .mce-container.mce-menu .mce-menu-item.mce-selected, 707 .mce-container.mce-menu .mce-menu-item:focus, 708 .mce-container.mce-menu .mce-menu-item-normal.mce-active, 709 .mce-container.mce-menu .mce-menu-item-preview.mce-active { 710 background: #cf4339; 711 } 712 713 /* Customizer */ 714 .wp-core-ui #customize-controls .control-section:hover > .accordion-section-title, 715 .wp-core-ui #customize-controls .control-section .accordion-section-title:hover, 716 .wp-core-ui #customize-controls .control-section.open .accordion-section-title, 717 .wp-core-ui #customize-controls .control-section .accordion-section-title:focus { 718 color: #0073aa; 719 border-left-color: #cf4339; 720 } 721 .wp-core-ui .customize-controls-close:focus, 722 .wp-core-ui .customize-controls-close:hover, 723 .wp-core-ui .customize-controls-preview-toggle:focus, 724 .wp-core-ui .customize-controls-preview-toggle:hover { 725 color: #0073aa; 726 border-top-color: #cf4339; 727 } 728 .wp-core-ui .customize-panel-back:hover, 729 .wp-core-ui .customize-panel-back:focus, 730 .wp-core-ui .customize-section-back:hover, 731 .wp-core-ui .customize-section-back:focus { 732 color: #0073aa; 733 border-left-color: #cf4339; 734 } 735 .wp-core-ui .customize-screen-options-toggle:hover, 736 .wp-core-ui .customize-screen-options-toggle:active, 737 .wp-core-ui .customize-screen-options-toggle:focus, 738 .wp-core-ui .active-menu-screen-options .customize-screen-options-toggle, 739 .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:hover, 740 .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:active, 741 .wp-core-ui #customize-controls .customize-info.open.active-menu-screen-options .customize-help-toggle:focus { 742 color: #0073aa; 743 } 744 .wp-core-ui .customize-screen-options-toggle:focus:before, 745 .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus:before, .wp-core-ui.wp-customizer button:focus .toggle-indicator:before, 746 .wp-core-ui .menu-item-bar .item-delete:focus:before, 747 .wp-core-ui #available-menu-items .item-add:focus:before, 748 .wp-core-ui #customize-save-button-wrapper .save:focus, 749 .wp-core-ui #publish-settings:focus { 750 box-shadow: 0 0 0 1px rgb(216.9512195122, 105.9756097561, 98.0487804878), 0 0 2px 1px #cf4339; 751 } 752 .wp-core-ui #customize-controls .customize-info.open .customize-help-toggle, 753 .wp-core-ui #customize-controls .customize-info .customize-help-toggle:focus, 754 .wp-core-ui #customize-controls .customize-info .customize-help-toggle:hover { 755 color: #0073aa; 756 } 757 .wp-core-ui .control-panel-themes .customize-themes-section-title:focus, 758 .wp-core-ui .control-panel-themes .customize-themes-section-title:hover { 759 border-left-color: #cf4339; 760 color: #0073aa; 761 } 762 .wp-core-ui .control-panel-themes .theme-section .customize-themes-section-title.selected:after { 763 background: #cf4339; 764 } 765 .wp-core-ui .control-panel-themes .customize-themes-section-title.selected { 766 color: #0073aa; 767 } 768 .wp-core-ui #customize-theme-controls .control-section:hover > .accordion-section-title:after, 769 .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:hover:after, 770 .wp-core-ui #customize-theme-controls .control-section.open .accordion-section-title:after, 771 .wp-core-ui #customize-theme-controls .control-section .accordion-section-title:focus:after, 772 .wp-core-ui #customize-outer-theme-controls .control-section:hover > .accordion-section-title:after, 773 .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:hover:after, 774 .wp-core-ui #customize-outer-theme-controls .control-section.open .accordion-section-title:after, 775 .wp-core-ui #customize-outer-theme-controls .control-section .accordion-section-title:focus:after { 776 color: #0073aa; 777 } 778 .wp-core-ui .customize-control .attachment-media-view .button-add-media:focus { 779 background-color: #fbfbfc; 780 border-color: #cf4339; 781 border-style: solid; 782 box-shadow: 0 0 0 1px #cf4339; 783 outline: 2px solid transparent; 784 } 785 .wp-core-ui .wp-full-overlay-footer .devices button:focus, 786 .wp-core-ui .wp-full-overlay-footer .devices button.active:hover { 787 border-bottom-color: #cf4339; 788 } 789 .wp-core-ui .wp-full-overlay-footer .devices button:hover:before, 790 .wp-core-ui .wp-full-overlay-footer .devices button:focus:before { 791 color: #cf4339; 792 } 793 .wp-core-ui .wp-full-overlay .collapse-sidebar:hover, 794 .wp-core-ui .wp-full-overlay .collapse-sidebar:focus { 795 color: #cf4339; 796 } 797 .wp-core-ui .wp-full-overlay .collapse-sidebar:hover .collapse-sidebar-arrow, 798 .wp-core-ui .wp-full-overlay .collapse-sidebar:focus .collapse-sidebar-arrow { 799 box-shadow: 0 0 0 1px rgb(216.9512195122, 105.9756097561, 98.0487804878), 0 0 2px 1px #cf4339; 800 } 801 .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 { 802 border-bottom-color: #cf4339; 803 color: #0073aa; 804 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated : Fri Aug 14 08:20:23 2026 | Cross-referenced by PHPXref |