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.

fileEntryInlineSystemTags.scss 759B

1234567891011121314151617181920212223242526272829303132
  1. .files-list__system-tags {
  2. --min-size: 32px;
  3. display: flex;
  4. justify-content: center;
  5. align-items: center;
  6. min-width: calc(var(--min-size) * 2);
  7. max-width: 300px;
  8. }
  9. .files-list__system-tag {
  10. padding: 5px 10px;
  11. border: 1px solid;
  12. border-radius: var(--border-radius-pill);
  13. border-color: var(--color-border);
  14. color: var(--color-text-maxcontrast);
  15. height: var(--min-size);
  16. white-space: nowrap;
  17. overflow: hidden;
  18. text-overflow: ellipsis;
  19. line-height: 22px; // min-size - 2 * 5px padding
  20. text-align: center;
  21. &--more {
  22. overflow: visible;
  23. text-overflow: initial;
  24. }
  25. // Proper spacing if multiple shown
  26. & + .files-list__system-tag {
  27. margin-left: 5px;
  28. }
  29. }