[ Index ]

PHP Cross Reference of WordPress Trunk (Updated Daily)

Search

title

Body

[close]

/wp-includes/blocks/term-template/ -> editor.css (source)

   1  /**
   2   * Colors
   3   */
   4  .wp-block-term-template .term-loading .term-loading-placeholder {
   5    width: 100%;
   6    height: 1.5em;
   7    margin-bottom: 0.25em;
   8    background-color: #f0f0f0;
   9    border-radius: 2px;
  10  }
  11  @media not (prefers-reduced-motion) {
  12    .wp-block-term-template .term-loading .term-loading-placeholder {
  13      animation: loadingpulse 1.5s ease-in-out infinite;
  14    }
  15  }
  16  
  17  @keyframes loadingpulse {
  18    0% {
  19      opacity: 1;
  20    }
  21    50% {
  22      opacity: 0.5;
  23    }
  24    100% {
  25      opacity: 1;
  26    }
  27  }


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