Move selrect styles under viewport.

This commit is contained in:
Andrey Antukh 2016-02-16 19:52:50 +02:00
parent a49e0c2f84
commit 2982f347a4

View File

@ -21,7 +21,6 @@
width: 100%; width: 100%;
transition: none; transition: none;
/* margin: 0 230px 0 230px; */
margin-top: 20px; margin-top: 20px;
margin-left: 20px; margin-left: 20px;
@ -45,10 +44,17 @@
/* } */ /* } */
.viewport { .viewport {
&.drawing { &.drawing {
cursor: cell; cursor: cell;
} }
rect.selection-rect {
fill: rgba(235, 215, 92, 0.1);
stroke: #000000;
stroke-width: 0.1px;
}
svg { svg {
g.shape { g.shape {
&.selected { &.selected {
@ -59,17 +65,11 @@
} }
} }
rect.selection-rect {
fill: rgba(235, 215, 92, 0.1);
stroke: #000000;
stroke-width: 0.1px;
}
} }
} }
.viewport, .page-canvas, .page-layout { .viewport, .page-canvas, .page-layout {
/* overflow: visible; */ overflow: visible;
} }
} }