Spaces:
Sleeping
Sleeping
File size: 757 Bytes
13555f3 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 | @import '../styles/z-index';
.ContentBlock {
// HACK: Fixes Chrome drag and drop preview
transform: translate3d(0, 0, 0);
.MenuWrapper,
.dnd-handle {
display: none;
}
&:hover,
&.menuOpened {
@include z-index(menu);
.MenuWrapper {
display: flex;
}
.dnd-handle {
display: flex;
opacity: 0.8;
height: 18px;
}
}
> * {
flex: 1 1 auto;
max-width: 100%;
min-height: 32px;
}
> .octo-block-margin {
flex: 0 0 auto;
}
.ImageElement {
pointer-events: none;
width: 100%;
}
}
.rowContents {
display: flex;
width: 100%;
}
.addToRow {
width: 10px;
}
|