Skip to content

Commit

Permalink
color modification easier to see (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Theotime23 authored Nov 23, 2023
1 parent 4583ab8 commit a727810
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions bundle/Resources/public/admin/css/ibexamailing.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,22 @@ $eZLightBackground: #F5F5F5;
.c-list-item__row {
cursor: pointer;
}
.bage-status{
padding: 10px !important;
border-radius: 5px !important;
}
.text-bg-success {
color: white !important;
background-color: #56c356 !important;
}
.text-bg-warning {
color: white !important;
background-color: #f99275 !important;
}
.text-bg-info {
color: white !important;
background-color: #188090 !important;
}

.pagination {
justify-content: center !important;
Expand Down
2 changes: 1 addition & 1 deletion bundle/Resources/views/admin/common/list/users.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
>{{ item.email }}</a></td>
{% if withStatus %}
<td class="ibexa-table__cell c-table-view-item__cell">
<span class="badge text-bg-{{ item.statusStyle }}">{{ ("generic.users.status."~item.status)|trans }}</span>
<span class="badge bage-status text-bg-{{ item.statusStyle }}">{{ ("generic.users.status."~item.status)|trans }}</span>
</td>
{% endif %}
<td class="ibexa-table__cell c-table-view-item__cell text-center">{{ item.country|country_name }}</td>
Expand Down

0 comments on commit a727810

Please sign in to comment.