mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
34 lines
595 B
SCSS
34 lines
595 B
SCSS
![]() |
.template-highlighter{
|
||
|
position: absolute;
|
||
|
border: 1px solid rgba(255,0,0,0.3);
|
||
|
display: none;
|
||
|
.show-highlighters &{
|
||
|
display: block;
|
||
|
}
|
||
|
&:hover{
|
||
|
background: rgba(255,0,0,0.15);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.template-highlighter:hover:after{
|
||
|
display: inline-block;
|
||
|
content: attr(data-template);
|
||
|
background:red;
|
||
|
color:white;
|
||
|
font-size:12px;
|
||
|
position: absolute;
|
||
|
top: 100%;
|
||
|
right: 0px;
|
||
|
z-index: 20000;
|
||
|
padding: 2px 8px;
|
||
|
}
|
||
|
|
||
|
.zone-highlighter{
|
||
|
border-color: rgba(0,0,255,0.3);
|
||
|
&:hover{
|
||
|
background: rgba(0,0,255,0.15);
|
||
|
}
|
||
|
}
|
||
|
.zone-highlighter:hover:after{
|
||
|
background: blue;
|
||
|
}
|