diff --git a/server/components/AlternativeValues.tsx b/server/components/AlternativeValues.tsx index d5ece67..d28a5c9 100644 --- a/server/components/AlternativeValues.tsx +++ b/server/components/AlternativeValues.tsx @@ -22,8 +22,10 @@ export function setupAlternativeValues(providerMap: Record (
  • - {display ? display(value) : value} - {providerNames.map((name) => )} + + {display ? display(value) : value} + {providerNames.map((name) => )} +
  • ), )} diff --git a/server/static/harmony.css b/server/static/harmony.css index 34e4117..a83cf36 100644 --- a/server/static/harmony.css +++ b/server/static/harmony.css @@ -152,6 +152,11 @@ ul.alt-values { list-style: square; } +span.alt-value { + display: flex; + flex-direction: row; +} + span.label svg.icon, ul.alt-values svg.icon { height: 16px; @@ -330,6 +335,11 @@ code.isrc > span:not(:last-child)::after { /* LinkedEntity.tsx */ +span.entity-links { + display: inline-flex; + flex-direction: row; +} + span.entity-links > a { text-decoration-style: dotted; color: inherit;