Skip to content

Commit

Permalink
Fixed spurious whitespace for gn-comma-list
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimnielandt committed Oct 2, 2024
1 parent cfcd829 commit 6139456
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -258,14 +258,20 @@
display: inline;
line-break: auto;
word-break: break-word;
letter-spacing: -1em;
* {
letter-spacing: normal;
}
a {
line-break: normal;
}
&:after {
content: ", ";
letter-spacing: normal;
}
&:last-child:after {
content: "";
letter-spacing: normal;
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ <h3 data-translate="">updatedOn</h3>
<div>
<h3 data-translate="">metadataLanguage</h3>
<ul class="gn-comma-list">
<li data-ng-repeat="l in mdLanguages">{{l | translate}}</li>
<li data-ng-repeat="l in mdLanguages">
<span> {{l | translate}} </span>
</li>
</ul>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ <h3 data-translate="">scale</h3>
data-ng-repeat="d in mdView.current.record.resolutionScaleDenominator"
class="gn-scale"
>
{{d}}
<span> {{d}} </span>
</li>
</ul>
</div>
Expand All @@ -51,7 +51,9 @@ <h3 data-translate="">scale</h3>
<div>
<h3 data-translate="">resolution</h3>
<ul class="gn-comma-list">
<li data-ng-repeat="r in mdView.current.record.resolutionDistance">{{r}}</li>
<li data-ng-repeat="r in mdView.current.record.resolutionDistance">
<span>{{r}}</span>
</li>
</ul>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ <h3 data-translate="">language</h3>
data-ng-repeat="l in mdView.current.record.resourceLanguage"
data-translate=""
>
{{l}}
<span> {{l}} </span>
</li>
</ul>
</div>
Expand Down

0 comments on commit 6139456

Please sign in to comment.