Skip to content
Snippets Groups Projects
Commit bcfc72a5 authored by waffle's avatar waffle
Browse files

Fix session holders shrinking on hover

parent c3607e3d
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@ select {
@apply pl-2 pr-6 py-1;
}
.session-holder { @apply w-full; }
.session-holder:hover { height: auto; min-height: var(--height); }
.session {
@apply border p-2 bg-slate-100 border-slate-300 rounded-md w-full hover:shadow-2xl;
......
......@@ -116,12 +116,11 @@ current_time = Time.zone.now.in_time_zone(@conference.time_zone)
<h4><%= stage.name %></h4>
<div class="stage-sessions">
<% sessions.each do |session| %>
<div class="session-holder hover:z-30 h-full hover:!h-auto" style="
<div class="session-holder hover:z-30 h-full" style="
position: absolute;
top: <%= (session.starts_at - timeline_starts_at) / 3600.0 * pixels_per_hour %>px;
max-height: <%= (session.ends_at - session.starts_at) / 3600.0 * pixels_per_hour %>px;
min-height: <%= (session.ends_at - session.starts_at) / 3600.0 * pixels_per_hour %>px;
hxeight: <%= (session.ends_at - session.starts_at) / 3600.0 * pixels_per_hour %>px;
--height: <%= (session.ends_at - session.starts_at) / 3600.0 * pixels_per_hour %>px;
height: var(--height);
">
<%= render partial: "sessions/session", locals: { session: session } %>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment