gitea源码

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. .issue-card {
  2. display: flex;
  3. flex-direction: column;
  4. gap: 4px;
  5. align-items: stretch;
  6. border-radius: var(--border-radius);
  7. padding: 8px 10px;
  8. border: 1px solid var(--color-secondary);
  9. background: var(--color-card);
  10. color: var(--color-text); /* it can't inherit from parent because the card already has its own background */
  11. }
  12. .issue-card-icon,
  13. .issue-card-unpin {
  14. margin-top: 1px;
  15. flex-shrink: 0;
  16. }
  17. .issue-card-title {
  18. flex: 1;
  19. font-size: 14px;
  20. }
  21. .issue-card.sortable-chosen .issue-card-title {
  22. cursor: inherit;
  23. }
  24. .issue-card-bottom {
  25. display: flex;
  26. width: 100%;
  27. justify-content: space-between;
  28. gap: 1em;
  29. }
  30. .issue-card-bottom-part {
  31. display: flex;
  32. flex: 1;
  33. align-items: center;
  34. gap: 0.25em;
  35. flex-wrap: wrap;
  36. overflow: hidden;
  37. max-width: fit-content;
  38. max-height: fit-content;
  39. }