46193ab5fe
The primary license of the project is changing to: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later with some specific files to be licensed under the one of two licenses: CC0-1.0 LGPL-3.0-or-later This commit is one of the many steps to relicense the entire codebase. Documentation granting permission for this relicensing (from all past contributors who hold copyrights) is on file with Software Freedom Conservancy, Inc.
52 lines
919 B
SCSS
52 lines
919 B
SCSS
/* License: AGPL-3.0-or-later WITH Web-Template-Output-Additional-Permission-3.0-or-later */
|
|
.gu-mirror {
|
|
position: fixed !important;
|
|
margin: 0 !important;
|
|
z-index: 9999 !important;
|
|
@include box-shadow(0 0 10px 0 rgba(black, 0.15));
|
|
background: white;
|
|
border: 1px solid rgba(black, 0.1);
|
|
}
|
|
|
|
.gu-hide {
|
|
display: none !important;
|
|
}
|
|
|
|
.gu-unselectable {
|
|
@include noselect;
|
|
}
|
|
|
|
.gu-transit {
|
|
background: rgba(black, 0.1);
|
|
@include opacity(0.3);
|
|
}
|
|
|
|
.gu-mirror {
|
|
display: table;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.gu-mirror button,
|
|
.gu-mirror a {
|
|
display: none;
|
|
}
|
|
|
|
.draggable-item {
|
|
cursor: pointer;
|
|
@include noselect;
|
|
}
|
|
|
|
.draggable-item:hover .draggable-grip {
|
|
@include opacity(0.5);
|
|
}
|
|
|
|
.draggable-grip {
|
|
display: inline-block;
|
|
height: 100%;
|
|
width: 12px;
|
|
background-image: url(/assets/graphics/icon-grip.svg);
|
|
background-repeat: repeat-y;
|
|
background-size: 8px;
|
|
@include opacity(0.1);
|
|
}
|
|
|