Skip to content

fix-9127:Top align table content on manage event dashboard #9159

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

Merged
merged 3 commits into from Aug 25, 2023
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
8 changes: 8 additions & 0 deletions app/styles/pages/events.scss
Original file line number Diff line number Diff line change
Expand Up @@ -256,3 +256,11 @@
min-width: 7rem;
}
}

.table-event-live {
table {
td {
vertical-align: top !important;
}
}
}
2 changes: 1 addition & 1 deletion app/templates/components/tables/default.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</div>
{{/unless}}
</div>
<div class="ui no bottom padding row z-index-0">
<div class="ui no bottom padding row z-index-0 {{this.classEvent}}">
<EmberTable @tableColor={{@color}} as |t|>
<t.head
@sortFunction={{null}}
Expand Down
3 changes: 2 additions & 1 deletion app/templates/events/list.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@
@filterOptions={{this.filterOptions}}
@widthConstraint="eq-container"
@resizeMode="fluid"
@fillMode="equal-column" />
@fillMode="equal-column"
@classEvent="table-event-live"/>