Skip to content

Commit 07735ba

Browse files
khangonnorbusan
authored andcommitted
fix 9140: The value of the status dropdown list cannot be displayed in full (#9160)
* fix-9140: The value of the status dropdown list cannot be displayed in full * fix-9140: The value of the status dropdown list cannot be displayed in full
1 parent 7ee7dbe commit 07735ba

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

app/styles/pages/events.scss

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -264,3 +264,45 @@
264264
}
265265
}
266266
}
267+
268+
.reset-overflow {
269+
.z-index-0 {
270+
div {
271+
overflow: visible !important;
272+
}
273+
}
274+
}
275+
276+
.session-list .table tbody tr {
277+
&:nth-last-child(2) {
278+
.ui.dropdown.button {
279+
position: relative;
280+
}
281+
282+
.menu {
283+
position: absolute;
284+
transform: translateY(-122%);
285+
transition: transform .3s ease-in-out;
286+
}
287+
288+
.menu.hidden.transition {
289+
position: relative;
290+
}
291+
}
292+
293+
&:nth-last-child(3) {
294+
.ui.dropdown.button {
295+
position: relative;
296+
}
297+
298+
.menu {
299+
position: absolute;
300+
transform: translateY(-122%);
301+
transition: transform .3s ease-in-out;
302+
}
303+
304+
.menu.hidden.transition {
305+
position: relative;
306+
}
307+
}
308+
}

app/templates/events/view/sessions/list.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<div class="sixteen wide column">
1+
<div class="sixteen wide column session-list {{if (lte this.model.sessions.data.length 1) 'reset-overflow'}}">
22
<Tables::Default
33
@columns={{this.columns}}
44
@rows={{this.model.sessions.data}}

0 commit comments

Comments
 (0)