mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
34 lines
677 B
SCSS
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%;
|
|
}
|