mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
29 lines
719 B
SCSS
29 lines
719 B
SCSS
$vis-hover-background-color: linen;
|
|
$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 {
|
|
&:hover {
|
|
background-color: $vis-hover-background-color !important;
|
|
cursor: pointer !important;
|
|
}
|
|
.vis-item-overflow {
|
|
overflow: visible;
|
|
}
|
|
.vis-item-content {
|
|
padding: $vis-item-content-padding;
|
|
&:hover {
|
|
background-color: $vis-hover-background-color !important;
|
|
}
|
|
}
|
|
}
|
|
}
|