Skip to content

Commit 92dafd6

Browse files
authored
fix-9127:Top align table content on manage event dashboard (#9159)
* fix-9127: Top align table content on manage event dashboard * fix-9127: Top align table content on manage event dashboard
1 parent 25ab4c1 commit 92dafd6

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

app/styles/pages/events.scss

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -256,3 +256,11 @@
256256
min-width: 7rem;
257257
}
258258
}
259+
260+
.table-event-live {
261+
table {
262+
td {
263+
vertical-align: top !important;
264+
}
265+
}
266+
}

app/templates/components/tables/default.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
</div>
1515
{{/unless}}
1616
</div>
17-
<div class="ui no bottom padding row z-index-0">
17+
<div class="ui no bottom padding row z-index-0 {{this.classEvent}}">
1818
<EmberTable @tableColor={{@color}} as |t|>
1919
<t.head
2020
@sortFunction={{null}}

app/templates/events/list.hbs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@
1010
@filterOptions={{this.filterOptions}}
1111
@widthConstraint="eq-container"
1212
@resizeMode="fluid"
13-
@fillMode="equal-column" />
13+
@fillMode="equal-column"
14+
@classEvent="table-event-live"/>

0 commit comments

Comments
 (0)