Skip to content

Commit

Permalink
improve contrast between entry buttons and background
Browse files Browse the repository at this point in the history
  • Loading branch information
mjmusante committed Oct 30, 2024
1 parent ce2cfbf commit 0d126ee
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion IFComp/root/src/ballot/index.tt
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ you have played so far.[% END %]</p>

[% FOR entry IN entries %]
[% IF entry.is_qualified %]
<div itemscope itemtype="https://schema.org/VideoGame" class="bg-primary-subtle card p-4 m-3" id="entry-[% entry.id %]"
<div itemscope itemtype="https://schema.org/VideoGame" class="bg-secondary-subtle card p-4 m-3" id="entry-[% entry.id %]"
ifcomp-style="[% IF entry.style %][% entry.style %][% ELSE %]other[% END %]"
ifcomp-playtime="[% IF entry.playtime %][% entry.playtime %][% ELSE %]other[% END %]"
ifcomp-platform="[% IF entry.platform %][% entry.platform %][% ELSE %]other[% END %]"
Expand Down
2 changes: 1 addition & 1 deletion IFComp/root/src/comp/cover_sheet.tt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ judging on [% comp.judging_begins.strftime( '%{month_name} %{day}' ) %], [% comp
</div>

[% FOR entry IN entries %]
<div class="bg-primary-subtle card p-4 m-3" itemscope itemtype="https://schema.org/VideoGame" id="entry-[% entry.id %]">
<div class="bg-secondary-subtle card p-4 m-3" itemscope itemtype="https://schema.org/VideoGame" id="entry-[% entry.id %]">
[% INCLUDE _entry_title.tt %]
<div class="row">

Expand Down
2 changes: 1 addition & 1 deletion IFComp/root/src/entry/preview.tt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
[% IF entries.size %]

[% FOR entry IN entries %]
<div class="bg-primary-subtle card p-4 m-3">
<div class="bg-secondary-subtle card p-4 m-3">
[% INCLUDE _entry_title.tt %]
[% INCLUDE _current_entry_row.tt current_comp = 1 %]
</div>
Expand Down

0 comments on commit 0d126ee

Please sign in to comment.