misc fixes

This commit is contained in:
axolotle
2021-08-02 16:54:55 +02:00
parent f4dc9f3fdb
commit 0ec16d9824
7 changed files with 54 additions and 15 deletions
+8
View File
@@ -16,3 +16,11 @@ $font-styles: (
src: url('#{$location}/#{$font-slug}-#{$weight}-#{$style}.woff2') format('woff2'); src: url('#{$location}/#{$font-slug}-#{$weight}-#{$style}.woff2') format('woff2');
} }
} }
@font-face {
font-family: $font-name;
font-style: italic;
font-display: swap;
font-weight: 700;
src: url('#{$location}/#{$font-slug}-400-italic.woff2') format('woff2');
}
@@ -99,6 +99,8 @@ export default {
.b-form-tag-remove { .b-form-tag-remove {
opacity: 1; opacity: 1;
line-height: 0; line-height: 0;
height: 15px;
text-shadow: none;
} }
} }
} }
+4 -4
View File
@@ -126,15 +126,15 @@ export default {
height: var(--max); height: var(--max);
img { img {
max-width: 100%; width: 100%;
max-height: 100%; height: 100%;
object-fit: cover;
margin: auto; margin: auto;
cursor: pointer; cursor: pointer;
} }
&.current { &.current img {
border: 5px solid theme-color('creation'); border: 5px solid theme-color('creation');
background-color: theme-color('creation');
} }
} }
} }
+1
View File
@@ -44,6 +44,7 @@
<node-view <node-view
:node="node" :node="node"
@close-node="hide" @close-node="hide"
@open-node="$emit('view-origin')"
force-type="ref" show-origin force-type="ref" show-origin
/> />
</template> </template>
+31 -9
View File
@@ -6,7 +6,11 @@
> >
<foreignObject <foreignObject
v-for="node in filteredNodes" :key="'f-' + node.data.id" v-for="node in filteredNodes" :key="'f-' + node.data.id"
:style="`--x: ${node.x}px; --y: ${node.y}px; --r: ${node.rotate}deg;`" :class="{ 'safari': isSafari }"
:width="size.w" :height="size.h"
:x="node.x" :y="node.y"
:transform="`rotate(${node.rotate}) translate(-${size.w / 2}, -${size.h / 2})`"
:transform-origin="`${node.x} ${node.y}`"
> >
<node-view <node-view
:id="'preview-node-' + node.data.id" :id="'preview-node-' + node.data.id"
@@ -78,6 +82,16 @@ export default {
dataNodes () { dataNodes () {
if (!this.nodes) return if (!this.nodes) return
return this.nodes.map(node => node.data) return this.nodes.map(node => node.data)
},
isSafari () {
return /^((?!chrome|android).)*safari/i.test(navigator.userAgent)
},
size () {
return window.innerWidth < 1200
? { w: 560 / 1.5, h: 350 / 1.5 }
: { w: 560, h: 350 }
} }
}, },
@@ -131,17 +145,25 @@ export default {
<style lang="scss"> <style lang="scss">
#library-map { #library-map {
foreignObject { foreignObject {
width: $node-card-width-sm; // width: $node-card-width-sm;
height: $node-card-height-sm; // height: $node-card-height-sm;
x: var(--x); // x: var(--x);
y: var(--y); // y: var(--y);
transform-origin: var(--x) var(--y); // transform-origin: var(--x) var(--y);
transform: rotate(var(--r)) translate(-#{$node-card-width / 2}, -#{$node-card-height / 2}); // transform: rotate(var(--r)) translate(-#{$node-card-width / 2}, -#{$node-card-height / 2});
overflow: visible; overflow: visible;
@include media-breakpoint-up($size-bp) { @include media-breakpoint-up($size-bp) {
width: $node-card-width; // width: $node-card-width;
height: $node-card-height; // height: $node-card-height;
}
&.safari .node-view {
position: static;
.node-view-footer {
display: none;
}
} }
.node-view { .node-view {
+4 -2
View File
@@ -90,7 +90,7 @@
<b-form-group v-else id="depart-group" :label="$t('variants.depart')"> <b-form-group v-else id="depart-group" :label="$t('variants.depart')">
<b-dropdown id="text-depart-select" variant="outline-dark" right> <b-dropdown id="text-depart-select" variant="outline-dark" right>
<template #button-content> <template #button-content>
<node-view-title :node="activeNode" /> <node-view-title v-if="activeNode" :node="activeNode" />
</template> </template>
<b-dropdown-item v-for="node in nodesDeparts" :key="node.id" @click="activeNodeId = node.id"> <b-dropdown-item v-for="node in nodesDeparts" :key="node.id" @click="activeNodeId = node.id">
@@ -208,7 +208,9 @@ export default {
scrollToChar (char) { scrollToChar (char) {
const h = document.querySelector(`h3[id=${char}]`) const h = document.querySelector(`h3[id=${char}]`)
if (h) { if (h) {
h.scrollIntoView({ behavior: 'smooth' }) h.scrollIntoView({
behavior: navigator.userAgent.indexOf('Safari') !== -1 ? 'instant' : 'smooth'
})
} }
} }
} }
+4
View File
@@ -210,6 +210,10 @@ foreignObject {
} }
.dot-btn { .dot-btn {
@media (hover: none) {
display: none;
}
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
pointer-events: none; pointer-events: none;
min-width: 200px; min-width: 200px;