Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[#12288] Admin notifications page: Fix notifications table overflow #12386

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exports[`NotificationsTableComponent should snap like in notification page with
class="row"
>
<div
class="col-12"
class="col-12 table-responsive"
>
<table
class="table table-responsive-lg table-striped table-bordered margin-bottom-0"
Expand Down Expand Up @@ -295,7 +295,7 @@ exports[`NotificationsTableComponent should snap like in notification page with
class="row"
>
<div
class="col-12"
class="col-12 table-responsive"
>
<table
class="table table-responsive-lg table-striped table-bordered margin-bottom-0"
Expand Down Expand Up @@ -570,7 +570,7 @@ exports[`NotificationsTableComponent should snap with default fields 1`] = `
class="row"
>
<div
class="col-12"
class="col-12 table-responsive"
>
<table
class="table table-responsive-lg table-striped table-bordered margin-bottom-0"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div class="row">
<div class="col-12">
<div class="col-12 table-responsive">
<table id="notifications-table" class="table table-responsive-lg table-striped table-bordered margin-bottom-0">
<thead>
<tr [ngClass]="{ 'bg-primary text-white': headerColorScheme === NotificationsTableHeaderColorScheme.BLUE }">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,7 @@
.padding-left-7px {
padding-left: 7px;
}

#notifications-table {
min-width: 650px;
}