mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 11:06:40 +07:00
200 lines
3.4 KiB
Text
200 lines
3.4 KiB
Text
.sticker-container {
|
|
outline: none;
|
|
position: relative;
|
|
transition: transform 250ms;
|
|
cursor: pointer;
|
|
z-index: 10;
|
|
|
|
&.leaflet-drag-target {
|
|
transition: none !important;
|
|
}
|
|
|
|
&:before {
|
|
content: ' ';
|
|
background: @red_secondary;
|
|
width: 48px;
|
|
height: 48px;
|
|
left: -24px;
|
|
top: -24px;
|
|
position: absolute;
|
|
border-radius: 40px;
|
|
opacity: 0.25;
|
|
transform: scale(0.5);
|
|
transition: opacity 250ms, transform 500ms;
|
|
}
|
|
|
|
&:active {
|
|
.sticker-delete {
|
|
pointer-events: none;
|
|
}
|
|
}
|
|
|
|
&:hover, &:active {
|
|
&:before {
|
|
opacity: 0.3;
|
|
transform: scale(1);
|
|
}
|
|
}
|
|
|
|
&.inactive {
|
|
pointer-events: none;
|
|
|
|
.sticker-delete {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sticker-label {
|
|
width: 48px;
|
|
height: 48px;
|
|
position: absolute;
|
|
//background: white;
|
|
//border-radius: 32px;
|
|
left: 0;
|
|
top: 0;
|
|
outline: none;
|
|
|
|
//&:after {
|
|
// content: ' ';
|
|
// box-shadow: 0 0 0 1px #ff3344;
|
|
// width: 80px;
|
|
// height: 80px;
|
|
// left: -16px;
|
|
// top: -16px;
|
|
// position: absolute;
|
|
// border-radius: 40px;
|
|
// pointer-events: none;
|
|
// opacity: 0;
|
|
//}
|
|
|
|
svg {
|
|
left: -8px;
|
|
top: -8px;
|
|
position: relative;
|
|
z-index: 0;
|
|
}
|
|
|
|
.sticker-image {
|
|
width: 72px;
|
|
height: 72px;
|
|
left: -12px;
|
|
top: -12px;
|
|
position: relative;
|
|
z-index: 0;
|
|
background-size: cover;
|
|
}
|
|
|
|
&.left {
|
|
.sticker-desc {
|
|
padding: 10px 36px 10px 10px;
|
|
left: auto;
|
|
right: 24px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.sticker-arrow {
|
|
position: absolute;
|
|
transform-origin: 0 0;
|
|
left: 0;
|
|
top: 0;
|
|
pointer-events: none;
|
|
|
|
&:after {
|
|
content: ' ';
|
|
background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 38,20 38,38 20,38' style='fill:%23ff4433;' /%3E%3C/svg%3E") no-repeat;
|
|
width: 50px;
|
|
height: 50px;
|
|
transform-origin: 0 0;
|
|
transform: rotate(-45deg);
|
|
left: 0;
|
|
top: 0;
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
.sticker-delete {
|
|
position: absolute;
|
|
width: 24px;
|
|
height: 24px;
|
|
background: red;
|
|
border-radius: 24px;
|
|
transition: transform 500ms;
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
pointer-events: all;
|
|
left: 28px;
|
|
top: -16px;
|
|
z-index: 20;
|
|
|
|
&:hover {
|
|
transform: scale(1.2) !important;
|
|
}
|
|
}
|
|
|
|
.leaflet-control-container .leaflet-routing-container-hide {
|
|
display: none;
|
|
}
|
|
|
|
.stickers-helper {
|
|
display: grid;
|
|
grid-template-columns: repeat( auto-fit , minmax(48px, 1fr) );
|
|
}
|
|
|
|
.sticker-preview {
|
|
float: left;
|
|
cursor: pointer;
|
|
transform: scale(1);
|
|
transition: transform 250ms;
|
|
width: 48px;
|
|
height: 48px;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: 0 50%;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
transform: scale(1.5);
|
|
z-index: 2;
|
|
}
|
|
}
|
|
|
|
.sticker-desc {
|
|
min-width: 60px;
|
|
|
|
height: auto;
|
|
background: #222222;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 24px;
|
|
transform: translate3d(0, -50%, 0);
|
|
color: white;
|
|
box-sizing: border-box;
|
|
padding: 10px 10px 10px 36px;
|
|
}
|
|
|
|
.sticker-desc-sizer {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
color: rgba(0,0,0,0);
|
|
white-space: nowrap;
|
|
padding: 1px;
|
|
|
|
textarea {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
font: inherit;
|
|
padding: 0;
|
|
border: none;
|
|
background: none;
|
|
color: white;
|
|
resize: none;
|
|
outline: none;
|
|
overflow: hidden;
|
|
}
|
|
}
|