_style.scss 666 B

1234567891011121314151617181920212223
  1. .wp-block-file {
  2. .wp-block-file__button {
  3. background-color: #{map-deep-get($config-button, "color", "background")};
  4. color: #{map-deep-get($config-button, "color", "text")};
  5. font-size: #{map-deep-get($config-global, "font", "size", "sm")};
  6. margin-left: #{map-deep-get($config-global, "spacing", "horizontal")};
  7. margin-right: #{map-deep-get($config-global, "spacing", "horizontal")};
  8. &:before,
  9. &:after {
  10. display: inherit;
  11. }
  12. }
  13. a.wp-block-file__button:active,
  14. a.wp-block-file__button:focus,
  15. a.wp-block-file__button:hover,
  16. a.wp-block-file__button:visited {
  17. color: #{map-deep-get($config-button, "color", "text-hover")};
  18. opacity: .85;
  19. }
  20. }