gitea源码

12345678910111213141516171819202122232425262728293031
  1. .markup .code-copy {
  2. position: absolute;
  3. top: 8px;
  4. right: 6px;
  5. padding: 9px;
  6. visibility: hidden;
  7. animation: fadeout 0.2s both;
  8. }
  9. /* adjustments for comment content having only 14px font size */
  10. .repository.view.issue .comment-list .comment .markup .code-copy {
  11. right: 5px;
  12. padding: 8px;
  13. }
  14. /* can not use regular transparent button colors for hover and active states because
  15. we need opaque colors here as code can appear behind the button */
  16. .markup .code-copy:hover {
  17. background: var(--color-secondary) !important;
  18. }
  19. .markup .code-copy:active {
  20. background: var(--color-secondary-dark-1) !important;
  21. }
  22. .markup .code-block-container:hover .code-copy,
  23. .markup .code-block:hover .code-copy {
  24. visibility: visible;
  25. animation: fadein 0.2s both;
  26. }