Shifts overview: Style cleanup

This commit is contained in:
Igor Scheller 2019-10-20 14:54:00 +02:00
parent 941c08b2f6
commit eec1eff65b
2 changed files with 7 additions and 20 deletions

View File

@ -38,11 +38,11 @@ class ShiftCalendarShiftRenderer
return [ return [
$blocks, $blocks,
div( 'panel-' . $class. ' shift-card" style="height: ' div('shift-card" style="height: '
. ($blocks * ShiftCalendarRenderer::BLOCK_HEIGHT - ShiftCalendarRenderer::MARGIN) . ($blocks * ShiftCalendarRenderer::BLOCK_HEIGHT - ShiftCalendarRenderer::MARGIN)
. 'px;', . 'px;',
div( div(
'shift panel panel-' . $class. '" style="position: absolute; width:100%;', 'shift panel panel-' . $class,
[ [
$this->renderShiftHead($shift, $class), $this->renderShiftHead($shift, $class),
div('panel-body', [ div('panel-body', [
@ -52,11 +52,10 @@ class ShiftCalendarShiftRenderer
'Name' => $shift['room_name'] 'Name' => $shift['room_name']
]) ])
]), ]),
$shifts_row, $shifts_row
div('shift-spacer')
] ]
) )
) )
]; ];
} }

View File

@ -196,27 +196,15 @@ table a > .icon-icon_angel {
z-index: 0; z-index: 0;
overflow: hidden; overflow: hidden;
position: relative; position: relative;
margin: 0 5px 5px 0;
&:hover { &:hover {
overflow: visible; overflow: visible;
z-index: 100; z-index: 100;
border: none;
.shift {
z-index: 100;
}
} }
}
.shift { .shift {
margin: 0 5px 5px 0; min-height: 100%;
position: absolute;
width: 100%;
&:hover {
margin: 0 5px 5px 0;
position: absolute;
width: 100%;
} }
} }
} }