Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
trymebytes committed Feb 20, 2024
1 parent 1d4269b commit 454307f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
32 changes: 16 additions & 16 deletions assets/css/translation-events.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,18 +46,18 @@
margin: 1em;
}
.event-details-stats table {
width: 100%;
table-layout: fixed;
width: 100%;
table-layout: fixed;
}
.event-details-stats table th, .event-details-stats table td{
padding: 1em;
text-align: center;
text-align: center;
}
.event-details-stats table tr {
border-bottom: thin solid #f0f0f0;
border-bottom: thin solid #f0f0f0;
}
.event-details-stats table th {
background-color: #e9e9e9;
background-color: #e9e9e9;
}
.event-details-stats-totals {
font-weight: bold;
Expand Down Expand Up @@ -187,21 +187,21 @@ input[type="submit"].attending-btn {
font-weight: 500;
}
.event-page-edit-link {
float: right;
text-decoration: none;
float: right;
text-decoration: none;
}
.event-stats-summary {
margin-top: 1em;
margin-top: 1em;
}
.event-stats-summary summary {
background: #f8f8f8;
padding: 0.4em;
cursor: pointer;
background: #f8f8f8;
padding: 0.4em;
cursor: pointer;
}
.event-stats-summary p.event-stats-text {
margin: 0;
background: #f8f8f8;
padding: 0.8em;
font-size: .9em;
border-top: thin solid #e0e0e0;
margin: 0;
background: #f8f8f8;
padding: 0.8em;
font-size: .9em;
border-top: thin solid #e0e0e0;
}
4 changes: 2 additions & 2 deletions templates/event.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
</tr>
</thead>
<tbody>
<?php /** @var $row Stats_Row */ ?>
<?php foreach ( $event_stats->rows() as $locale_ => $row ) : ?>
<?php /** @var $row Stats_Row */ ?>
<?php foreach ( $event_stats->rows() as $locale_ => $row ) : ?>
<tr>
<td><?php echo esc_html( $locale_ ); ?></td>
<td><?php echo esc_html( $row->created ); ?></td>
Expand Down

0 comments on commit 454307f

Please sign in to comment.