Files
web/web_timeline/static/src/scss/web_timeline.scss
2022-08-02 14:35:04 +02:00

34 lines
677 B
SCSS

$vis-weekend-background-color: #dcdcdc;
$vis-item-content-padding: 0 3px !important;
.oe_timeline_view .vis-timeline {
.vis-grid {
&.vis-saturday,
&.vis-sunday {
background: $vis-weekend-background-color;
}
}
.vis-item {
&.vis-box:hover {
cursor: pointer !important;
}
&.vis-item-overflow {
overflow: visible;
}
.vis-item-content {
width: 100%;
padding: $vis-item-content-padding;
}
}
}
.oe_timeline_view_canvas {
pointer-events: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}