Skip to content

Commit

Permalink
Update facet style
Browse files Browse the repository at this point in the history
  • Loading branch information
skodapetr committed Nov 15, 2024
1 parent 34f03ef commit 387ea60
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ a {
gap: 0.5rem;
}

/* General layout styles. */
/* General styles. */

.italic {
font-style: italic;
}

.break-word-wrap {
word-wrap: break-word;
Expand Down
4 changes: 2 additions & 2 deletions server/component/facet-cs.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ <h3 class="facet-title inline">
</li>
{{/each}}
{{#if showMoreHref}}
<li class="facet-item">
<li class="facet-item italic">
<a href="{{showMoreHref}}">Zobrazit další</a>
</li>
{{/if}}
{{#if showInitialHref}}
<li class="facet-item">
<li class="facet-item italic">
<a href="{{showInitialHref}}">Zobrazit pouze populární</a>
</li>
{{/if}}
Expand Down
4 changes: 2 additions & 2 deletions server/component/facet-en.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ <h3 class="facet-title inline">
</li>
{{/each}}
{{#if showMoreHref}}
<li class="facet-item">
<li class="facet-item italic">
<a href="{{showMoreHref}}">Show more</a>
</li>
{{/if}}
{{#if showInitialHref}}
<li class="facet-item">
<li class="facet-item italic">
<a href="{{showInitialHref}}">Show popular only</a>
</li>
{{/if}}
Expand Down

0 comments on commit 387ea60

Please sign in to comment.