diff --git a/resource/css/styles.css b/resource/css/styles.css index 8dc85da13..ed5ab5119 100644 --- a/resource/css/styles.css +++ b/resource/css/styles.css @@ -751,6 +751,10 @@ span.xl-pref-label > img { padding: 15px 0 15px 10px; } +.property-label, .vocab-category > h3 { + text-transform: uppercase; +} + .vocab-category { display: inline-block; width: 100%; diff --git a/view/concept-shared.twig b/view/concept-shared.twig index debd6948a..7670c41ff 100644 --- a/view/concept-shared.twig +++ b/view/concept-shared.twig @@ -42,7 +42,7 @@ {% spaceless %}
-

{% set subPrefLabelTranslation = concept.preferredSubpropertyLabelTranslation(request.lang) %}{% if subPrefLabelTranslation %}{{ subPrefLabelTranslation|upper }}{% else %}{{ 'skos:prefLabel'|trans|upper }}{% endif %}

+

{% set subPrefLabelTranslation = concept.preferredSubpropertyLabelTranslation(request.lang) %}{% if subPrefLabelTranslation %}{{ subPrefLabelTranslation }}{% else %}{{ 'skos:prefLabel'|trans }}{% endif %}

{% if concept.foundBy %} {# hit has been found through an alternative label #} {{ concept.foundBy }} > @@ -90,7 +90,7 @@ {% if property.getSubPropertyOf != 'skos:hiddenLabel' %}
-

{{ property.label|upper }}

+

{{ property.label }}

{% if request.vocab.config.hasMultiLingualProperty(property.type) %} @@ -141,7 +141,7 @@ {% set foreignLabels = concept.foreignLabels %} {% if foreignLabels %}
-

{{ 'foreign prefLabels'|trans|upper }}

+

{{ 'foreign prefLabels'|trans }}

    @@ -207,7 +207,7 @@