Updated container.scss to be a 'pointer' on timeline events
This commit is contained in:
parent
b73f71c652
commit
172f1e5935
|
@ -550,24 +550,30 @@ svg > circle[class^=svg_]{
|
|||
|
||||
}
|
||||
|
||||
/* (2) Middle circles -> scale+ on hover */
|
||||
/* (2) Set cursor to pointer */
|
||||
svg > circle[class^=svg_]:not(.op_svg){
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* (3) Middle circles -> scale+ on hover */
|
||||
svg > circle[class^=svg_]:not(.op_svg):hover{
|
||||
|
||||
-webkit-transform: scale(1.2);
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
/* (3) Avoid icons inside middle circles to block :hover */
|
||||
/* (4) Avoid icons inside middle circles to block :hover */
|
||||
svg > circle[class^=svg_]:not(.op_svg) + image{
|
||||
-webkit-pionter-events: none;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* (4) Make around circles a bit transparent */
|
||||
/* (5) Make around circles a bit transparent */
|
||||
svg > circle.op_svg{
|
||||
opacity: .6;
|
||||
}
|
||||
|
||||
/* (5) Set circle colors according to action type */
|
||||
/* (6) Set circle colors according to action type */
|
||||
svg > circle.svg_start{ fill: #2cde8b; }
|
||||
svg > circle.svg_stop{ fill: #3a3a3a; }
|
||||
svg > circle.svg_lock{ fill: #e04343; }
|
||||
|
|
|
@ -705,24 +705,29 @@ svg > circle[class^=svg_] {
|
|||
transition: transform .2s ease-in-out;
|
||||
}
|
||||
|
||||
/* (2) Middle circles -> scale+ on hover */
|
||||
/* (2) Set cursor to pointer */
|
||||
svg > circle[class^=svg_]:not(.op_svg) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/* (3) Middle circles -> scale+ on hover */
|
||||
svg > circle[class^=svg_]:not(.op_svg):hover {
|
||||
-webkit-transform: scale(1.2);
|
||||
transform: scale(1.2);
|
||||
}
|
||||
|
||||
/* (3) Avoid icons inside middle circles to block :hover */
|
||||
/* (4) Avoid icons inside middle circles to block :hover */
|
||||
svg > circle[class^=svg_]:not(.op_svg) + image {
|
||||
-webkit-pionter-events: none;
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
/* (4) Make around circles a bit transparent */
|
||||
/* (5) Make around circles a bit transparent */
|
||||
svg > circle.op_svg {
|
||||
opacity: .6;
|
||||
}
|
||||
|
||||
/* (5) Set circle colors according to action type */
|
||||
/* (6) Set circle colors according to action type */
|
||||
svg > circle.svg_start {
|
||||
fill: #2cde8b;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue