classic-themes.css 638 B

123456789101112131415161718
  1. /**
  2. * These rules are needed for backwards compatibility.
  3. * They should match the button element rules in the base theme.json file.
  4. */
  5. .wp-block-button__link {
  6. color: #ffffff;
  7. background-color: #32373c;
  8. border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */
  9. /* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
  10. box-shadow: none;
  11. text-decoration: none;
  12. /* The extra 2px are added to size solids the same as the outline versions.*/
  13. padding: calc(0.667em + 2px) calc(1.333em + 2px);
  14. font-size: 1.125em;
  15. }