Skip to content

Commit

Permalink
Merge pull request #1094 from NatLibFi/issue1080-fix-padding-issues
Browse files Browse the repository at this point in the history
introduce right-paddings for vocab uri & concept info labels; fixes #…
  • Loading branch information
joelit authored Feb 17, 2021
2 parents ec68c43 + 38e45e0 commit ec67331
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions resource/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -1227,6 +1227,10 @@ li.sub-group {
padding-left: 0;
}

.concept-info .row > .property-label {
padding-right: 20px;
}

.row > .property-label {
width: 225px;
word-break: break-word;
Expand Down
6 changes: 5 additions & 1 deletion view/vocab-shared.twig
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
{% endfor %}
<div class="row">
<div class="property-label versal"><h3>URI</h3></div>
<div class="property-value-column versal"><span class="uri-input-box">{{ vocab.defaultConceptScheme }}</span></div>
<div class="property-value-column versal">
<div class="property-value-wrapper">
<span class="uri-input-box">{{ vocab.defaultConceptScheme }}</span>
</div>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit ec67331

Please sign in to comment.