Skip to content

Commit

Permalink
Merge pull request #31 from uw-asa/develop
Browse files Browse the repository at this point in the history
patched font weight bootstrap utility classes so they work again
  • Loading branch information
shadowimmage authored Nov 19, 2021
2 parents 0481625 + deadbb9 commit 822c5c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion templates/eventDateCard.pug
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ div(class='card mx-0 mx-lg-2 p-0 d-inline-block w-100 eventDateCard')
tbody
each event in events
if event.now
tr(style=`background-color: ${event.highlight ? event.highlight : '#00000000'}`).font-weight-bold.shift-item
tr(style=`background-color: ${event.highlight ? event.highlight : '#00000000'}`).fw-bold.shift-item
td.d-table-cell.room-code #{event.room}
div.d-block.d-lg-none #{event.bookStart}
td.d-table-cell.text-truncate.event-title #{event.title}
Expand Down
2 changes: 1 addition & 1 deletion templates/eventShiftCard.pug
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ div(class='card mx-0 mx-lg-2 d-inline-block w-100 eventShiftCard')
ul(class='list-group list-group-flush list-unstyled')
each shift in shifts
if shift.now
li.shift-item.pl-lg-2.font-weight-bold= shift.str
li.shift-item.pl-lg-2.fw-bold= shift.str
else
li.shift-item.pl-lg-2= shift.str
2 changes: 1 addition & 1 deletion templates/eventShiftCardNarrow.pug
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ each event in events
each shift in event.shifts
ul(class='list-group list-group-flush list-unstyled mb-sm-1')
if shift.now
li.shift-item.pl-lg-2.font-weight-bold= shift.str
li.shift-item.pl-lg-2.fw-bold= shift.str
else
li.shift-item.pl-lg-2= shift.str
2 changes: 1 addition & 1 deletion templates/laborCard.pug
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ div(class='card mx-0 p-0 mx-lg-2 d-inline-block w-100 laborCard')
tbody
each shift in shifts
if shift.now
tr.font-weight-bold.shift-item-sm
tr.fw-bold.shift-item-sm
if shift.customIconText
td #{shift.customIconText}
td #{shift.personName}
Expand Down

0 comments on commit 822c5c6

Please sign in to comment.