Le blog de Victor Héry https://blog.victor-hery.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
646 B

  1. .codecopy {
  2. position: relative;
  3. overflow: visible;
  4. & button.codecopy-btn {
  5. font-size: rfs(0.9rem);
  6. box-shadow: none;
  7. min-height: initial;
  8. position: absolute;
  9. z-index: 1;
  10. right: 0;
  11. top: 0;
  12. background-color: #fe8019;
  13. padding: rfs(0.2rem);
  14. border: none;
  15. border-top-right-radius: var(--borderRadius);
  16. border-bottom-left-radius: var(--borderRadius);
  17. &:hover,
  18. &:focus {
  19. box-shadow: none;
  20. }
  21. }
  22. }
  23. /* Remove radus when inside liquid_tags.include_code */
  24. figure.code
  25. > div.highlight:not(:first-child)
  26. > div.codecopy
  27. > button.codecopy-btn {
  28. border-top-right-radius: 0;
  29. }