2020-10-17 11:12:00 +00:00
|
|
|
<template>
|
2020-12-19 01:55:52 +00:00
|
|
|
<transition :name="$store.state.animation ? 'window' : ''" appear @after-leave="$emit('closed')">
|
2022-07-17 20:03:39 +00:00
|
|
|
<div v-if="showing" ref="rootEl" class="ebkgocck" :class="{ maximized }">
|
2022-06-26 10:41:21 +00:00
|
|
|
<div class="body _shadow _narrow_" @mousedown="onBodyMousedown" @keydown="onKeydown">
|
2021-02-27 04:08:34 +00:00
|
|
|
<div class="header" :class="{ mini }" @contextmenu.prevent.stop="onContextmenu">
|
2021-10-08 13:03:06 +00:00
|
|
|
<span class="left">
|
2022-06-20 08:38:49 +00:00
|
|
|
<button v-for="button in buttonsLeft" v-tooltip="button.title" class="button _button" :class="{ highlighted: button.highlighted }" @click="button.onClick"><i :class="button.icon"></i></button>
|
2021-10-08 13:03:06 +00:00
|
|
|
</span>
|
2020-10-17 11:12:00 +00:00
|
|
|
<span class="title" @mousedown.prevent="onHeaderMousedown" @touchstart.prevent="onHeaderMousedown">
|
|
|
|
<slot name="header"></slot>
|
|
|
|
</span>
|
2021-10-08 13:03:06 +00:00
|
|
|
<span class="right">
|
2022-06-20 08:38:49 +00:00
|
|
|
<button v-for="button in buttonsRight" v-tooltip="button.title" class="button _button" :class="{ highlighted: button.highlighted }" @click="button.onClick"><i :class="button.icon"></i></button>
|
2022-12-20 23:39:28 +00:00
|
|
|
<button v-if="canResize && maximized" v-tooltip="i18n.ts.windowRestore" class="button _button" @click="unMaximize()"><i class="ti ti-picture-in-picture"></i></button>
|
|
|
|
<button v-else-if="canResize && !maximized" v-tooltip="i18n.ts.windowMaximize" class="button _button" @click="maximize()"><i class="ti ti-rectangle"></i></button>
|
2022-12-20 06:11:20 +00:00
|
|
|
<button v-if="closeButton" v-tooltip="i18n.ts.close" class="button _button" @click="close()"><i class="ti ti-x"></i></button>
|
2021-10-08 13:03:06 +00:00
|
|
|
</span>
|
2020-10-17 11:12:00 +00:00
|
|
|
</div>
|
2022-06-26 10:41:21 +00:00
|
|
|
<div class="body">
|
2020-10-17 11:12:00 +00:00
|
|
|
<slot></slot>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<template v-if="canResize">
|
|
|
|
<div class="handle top" @mousedown.prevent="onTopHandleMousedown"></div>
|
|
|
|
<div class="handle right" @mousedown.prevent="onRightHandleMousedown"></div>
|
|
|
|
<div class="handle bottom" @mousedown.prevent="onBottomHandleMousedown"></div>
|
|
|
|
<div class="handle left" @mousedown.prevent="onLeftHandleMousedown"></div>
|
|
|
|
<div class="handle top-left" @mousedown.prevent="onTopLeftHandleMousedown"></div>
|
|
|
|
<div class="handle top-right" @mousedown.prevent="onTopRightHandleMousedown"></div>
|
|
|
|
<div class="handle bottom-right" @mousedown.prevent="onBottomRightHandleMousedown"></div>
|
|
|
|
<div class="handle bottom-left" @mousedown.prevent="onBottomLeftHandleMousedown"></div>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</transition>
|
|
|
|
</template>
|
|
|
|
|
2022-07-17 15:31:55 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onBeforeUnmount, onMounted, provide } from 'vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import contains from '@/scripts/contains';
|
|
|
|
import * as os from '@/os';
|
2022-07-17 15:31:55 +00:00
|
|
|
import { MenuItem } from '@/types/menu';
|
2022-12-20 06:11:20 +00:00
|
|
|
import { i18n } from '@/i18n';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
const minHeight = 50;
|
|
|
|
const minWidth = 250;
|
|
|
|
|
2022-07-17 15:31:55 +00:00
|
|
|
function dragListen(fn: (ev: MouseEvent) => void) {
|
2022-06-20 08:38:49 +00:00
|
|
|
window.addEventListener('mousemove', fn);
|
|
|
|
window.addEventListener('touchmove', fn);
|
2020-10-17 11:12:00 +00:00
|
|
|
window.addEventListener('mouseleave', dragClear.bind(null, fn));
|
2022-06-20 08:38:49 +00:00
|
|
|
window.addEventListener('mouseup', dragClear.bind(null, fn));
|
|
|
|
window.addEventListener('touchend', dragClear.bind(null, fn));
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function dragClear(fn) {
|
2022-06-20 08:38:49 +00:00
|
|
|
window.removeEventListener('mousemove', fn);
|
|
|
|
window.removeEventListener('touchmove', fn);
|
2020-10-17 11:12:00 +00:00
|
|
|
window.removeEventListener('mouseleave', dragClear);
|
2022-06-20 08:38:49 +00:00
|
|
|
window.removeEventListener('mouseup', dragClear);
|
|
|
|
window.removeEventListener('touchend', dragClear);
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
|
2022-07-17 15:31:55 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
initialWidth?: number;
|
|
|
|
initialHeight?: number | null;
|
|
|
|
canResize?: boolean;
|
|
|
|
closeButton?: boolean;
|
|
|
|
mini?: boolean;
|
|
|
|
front?: boolean;
|
|
|
|
contextmenu?: MenuItem[] | null;
|
|
|
|
buttonsLeft?: any[];
|
|
|
|
buttonsRight?: any[];
|
|
|
|
}>(), {
|
|
|
|
initialWidth: 400,
|
|
|
|
initialHeight: null,
|
|
|
|
canResize: false,
|
|
|
|
closeButton: true,
|
|
|
|
mini: false,
|
2022-07-18 16:20:36 +00:00
|
|
|
front: false,
|
2022-07-17 15:31:55 +00:00
|
|
|
contextmenu: null,
|
|
|
|
buttonsLeft: () => [],
|
|
|
|
buttonsRight: () => [],
|
|
|
|
});
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
provide('inWindow', true);
|
|
|
|
|
2022-07-17 20:03:39 +00:00
|
|
|
let rootEl = $ref<HTMLElement | null>();
|
2022-07-17 15:31:55 +00:00
|
|
|
let showing = $ref(true);
|
|
|
|
let beforeClickedAt = 0;
|
|
|
|
let maximized = $ref(false);
|
|
|
|
let unMaximizedTop = '';
|
|
|
|
let unMaximizedLeft = '';
|
|
|
|
let unMaximizedWidth = '';
|
|
|
|
let unMaximizedHeight = '';
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
showing = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onKeydown(evt) {
|
|
|
|
if (evt.which === 27) { // Esc
|
|
|
|
evt.preventDefault();
|
|
|
|
evt.stopPropagation();
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onContextmenu(ev: MouseEvent) {
|
|
|
|
if (props.contextmenu) {
|
|
|
|
os.contextMenu(props.contextmenu, ev);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 最前面へ移動
|
|
|
|
function top() {
|
2022-07-17 20:03:39 +00:00
|
|
|
if (rootEl) {
|
|
|
|
rootEl.style.zIndex = os.claimZIndex(props.front ? 'middle' : 'low');
|
|
|
|
}
|
2022-07-17 15:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function maximize() {
|
|
|
|
maximized = true;
|
|
|
|
unMaximizedTop = rootEl.style.top;
|
|
|
|
unMaximizedLeft = rootEl.style.left;
|
|
|
|
unMaximizedWidth = rootEl.style.width;
|
|
|
|
unMaximizedHeight = rootEl.style.height;
|
|
|
|
rootEl.style.top = '0';
|
|
|
|
rootEl.style.left = '0';
|
|
|
|
rootEl.style.width = '100%';
|
|
|
|
rootEl.style.height = '100%';
|
|
|
|
}
|
|
|
|
|
|
|
|
function unMaximize() {
|
|
|
|
maximized = false;
|
|
|
|
rootEl.style.top = unMaximizedTop;
|
|
|
|
rootEl.style.left = unMaximizedLeft;
|
|
|
|
rootEl.style.width = unMaximizedWidth;
|
|
|
|
rootEl.style.height = unMaximizedHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onBodyMousedown() {
|
|
|
|
top();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onDblClick() {
|
|
|
|
maximize();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onHeaderMousedown(evt: MouseEvent) {
|
|
|
|
// 右クリックはコンテキストメニューを開こうとした可能性が高いため無視
|
|
|
|
if (evt.button === 2) return;
|
|
|
|
|
|
|
|
let beforeMaximized = false;
|
|
|
|
|
|
|
|
if (maximized) {
|
|
|
|
beforeMaximized = true;
|
|
|
|
unMaximize();
|
|
|
|
}
|
|
|
|
|
|
|
|
// ダブルクリック判定
|
|
|
|
if (Date.now() - beforeClickedAt < 300) {
|
|
|
|
beforeClickedAt = Date.now();
|
|
|
|
onDblClick();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeClickedAt = Date.now();
|
|
|
|
|
|
|
|
const main = rootEl;
|
2022-07-20 15:32:41 +00:00
|
|
|
if (main == null) return;
|
2022-07-17 15:31:55 +00:00
|
|
|
|
|
|
|
if (!contains(main, document.activeElement)) main.focus();
|
|
|
|
|
|
|
|
const position = main.getBoundingClientRect();
|
|
|
|
|
|
|
|
const clickX = evt.touches && evt.touches.length > 0 ? evt.touches[0].clientX : evt.clientX;
|
|
|
|
const clickY = evt.touches && evt.touches.length > 0 ? evt.touches[0].clientY : evt.clientY;
|
|
|
|
const moveBaseX = beforeMaximized ? parseInt(unMaximizedWidth, 10) / 2 : clickX - position.left; // TODO: parseIntやめる
|
|
|
|
const moveBaseY = beforeMaximized ? 20 : clickY - position.top;
|
|
|
|
const browserWidth = window.innerWidth;
|
|
|
|
const browserHeight = window.innerHeight;
|
|
|
|
const windowWidth = main.offsetWidth;
|
|
|
|
const windowHeight = main.offsetHeight;
|
|
|
|
|
|
|
|
function move(x: number, y: number) {
|
|
|
|
let moveLeft = x - moveBaseX;
|
|
|
|
let moveTop = y - moveBaseY;
|
|
|
|
|
|
|
|
// 下はみ出し
|
|
|
|
if (moveTop + windowHeight > browserHeight) moveTop = browserHeight - windowHeight;
|
|
|
|
|
|
|
|
// 左はみ出し
|
|
|
|
if (moveLeft < 0) moveLeft = 0;
|
|
|
|
|
|
|
|
// 上はみ出し
|
|
|
|
if (moveTop < 0) moveTop = 0;
|
|
|
|
|
|
|
|
// 右はみ出し
|
|
|
|
if (moveLeft + windowWidth > browserWidth) moveLeft = browserWidth - windowWidth;
|
|
|
|
|
|
|
|
rootEl.style.left = moveLeft + 'px';
|
|
|
|
rootEl.style.top = moveTop + 'px';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (beforeMaximized) {
|
|
|
|
move(clickX, clickY);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 動かした時
|
|
|
|
dragListen(me => {
|
|
|
|
const x = me.touches && me.touches.length > 0 ? me.touches[0].clientX : me.clientX;
|
|
|
|
const y = me.touches && me.touches.length > 0 ? me.touches[0].clientY : me.clientY;
|
|
|
|
|
|
|
|
move(x, y);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// 上ハンドル掴み時
|
|
|
|
function onTopHandleMousedown(evt) {
|
|
|
|
const main = rootEl;
|
2022-12-18 10:52:50 +00:00
|
|
|
// どういうわけかnullになることがある
|
|
|
|
if (main == null) return;
|
2022-07-17 15:31:55 +00:00
|
|
|
|
|
|
|
const base = evt.clientY;
|
|
|
|
const height = parseInt(getComputedStyle(main, '').height, 10);
|
|
|
|
const top = parseInt(getComputedStyle(main, '').top, 10);
|
|
|
|
|
|
|
|
// 動かした時
|
|
|
|
dragListen(me => {
|
|
|
|
const move = me.clientY - base;
|
|
|
|
if (top + move > 0) {
|
|
|
|
if (height + -move > minHeight) {
|
|
|
|
applyTransformHeight(height + -move);
|
|
|
|
applyTransformTop(top + move);
|
|
|
|
} else { // 最小の高さより小さくなろうとした時
|
|
|
|
applyTransformHeight(minHeight);
|
|
|
|
applyTransformTop(top + (height - minHeight));
|
|
|
|
}
|
|
|
|
} else { // 上のはみ出し時
|
|
|
|
applyTransformHeight(top + height);
|
|
|
|
applyTransformTop(0);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// 右ハンドル掴み時
|
|
|
|
function onRightHandleMousedown(evt) {
|
|
|
|
const main = rootEl;
|
2022-12-18 10:52:50 +00:00
|
|
|
if (main == null) return;
|
2022-07-17 15:31:55 +00:00
|
|
|
|
|
|
|
const base = evt.clientX;
|
|
|
|
const width = parseInt(getComputedStyle(main, '').width, 10);
|
|
|
|
const left = parseInt(getComputedStyle(main, '').left, 10);
|
|
|
|
const browserWidth = window.innerWidth;
|
|
|
|
|
|
|
|
// 動かした時
|
|
|
|
dragListen(me => {
|
|
|
|
const move = me.clientX - base;
|
|
|
|
if (left + width + move < browserWidth) {
|
|
|
|
if (width + move > minWidth) {
|
|
|
|
applyTransformWidth(width + move);
|
|
|
|
} else { // 最小の幅より小さくなろうとした時
|
|
|
|
applyTransformWidth(minWidth);
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
2022-07-17 15:31:55 +00:00
|
|
|
} else { // 右のはみ出し時
|
|
|
|
applyTransformWidth(browserWidth - left);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// 下ハンドル掴み時
|
|
|
|
function onBottomHandleMousedown(evt) {
|
|
|
|
const main = rootEl;
|
2022-12-18 10:52:50 +00:00
|
|
|
if (main == null) return;
|
2022-07-17 15:31:55 +00:00
|
|
|
|
|
|
|
const base = evt.clientY;
|
|
|
|
const height = parseInt(getComputedStyle(main, '').height, 10);
|
|
|
|
const top = parseInt(getComputedStyle(main, '').top, 10);
|
|
|
|
const browserHeight = window.innerHeight;
|
|
|
|
|
|
|
|
// 動かした時
|
|
|
|
dragListen(me => {
|
|
|
|
const move = me.clientY - base;
|
|
|
|
if (top + height + move < browserHeight) {
|
|
|
|
if (height + move > minHeight) {
|
|
|
|
applyTransformHeight(height + move);
|
|
|
|
} else { // 最小の高さより小さくなろうとした時
|
|
|
|
applyTransformHeight(minHeight);
|
|
|
|
}
|
|
|
|
} else { // 下のはみ出し時
|
|
|
|
applyTransformHeight(browserHeight - top);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-07-17 15:31:55 +00:00
|
|
|
// 左ハンドル掴み時
|
|
|
|
function onLeftHandleMousedown(evt) {
|
|
|
|
const main = rootEl;
|
2022-12-18 10:52:50 +00:00
|
|
|
if (main == null) return;
|
2022-07-17 15:31:55 +00:00
|
|
|
|
|
|
|
const base = evt.clientX;
|
|
|
|
const width = parseInt(getComputedStyle(main, '').width, 10);
|
|
|
|
const left = parseInt(getComputedStyle(main, '').left, 10);
|
|
|
|
|
|
|
|
// 動かした時
|
|
|
|
dragListen(me => {
|
|
|
|
const move = me.clientX - base;
|
|
|
|
if (left + move > 0) {
|
|
|
|
if (width + -move > minWidth) {
|
|
|
|
applyTransformWidth(width + -move);
|
|
|
|
applyTransformLeft(left + move);
|
|
|
|
} else { // 最小の幅より小さくなろうとした時
|
|
|
|
applyTransformWidth(minWidth);
|
|
|
|
applyTransformLeft(left + (width - minWidth));
|
2020-10-24 16:21:41 +00:00
|
|
|
}
|
2022-07-17 15:31:55 +00:00
|
|
|
} else { // 左のはみ出し時
|
|
|
|
applyTransformWidth(left + width);
|
|
|
|
applyTransformLeft(0);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// 左上ハンドル掴み時
|
|
|
|
function onTopLeftHandleMousedown(evt) {
|
|
|
|
onTopHandleMousedown(evt);
|
|
|
|
onLeftHandleMousedown(evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 右上ハンドル掴み時
|
|
|
|
function onTopRightHandleMousedown(evt) {
|
|
|
|
onTopHandleMousedown(evt);
|
|
|
|
onRightHandleMousedown(evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 右下ハンドル掴み時
|
|
|
|
function onBottomRightHandleMousedown(evt) {
|
|
|
|
onBottomHandleMousedown(evt);
|
|
|
|
onRightHandleMousedown(evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 左下ハンドル掴み時
|
|
|
|
function onBottomLeftHandleMousedown(evt) {
|
|
|
|
onBottomHandleMousedown(evt);
|
|
|
|
onLeftHandleMousedown(evt);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 高さを適用
|
|
|
|
function applyTransformHeight(height) {
|
|
|
|
if (height > window.innerHeight) height = window.innerHeight;
|
|
|
|
rootEl.style.height = height + 'px';
|
|
|
|
}
|
|
|
|
|
|
|
|
// 幅を適用
|
|
|
|
function applyTransformWidth(width) {
|
|
|
|
if (width > window.innerWidth) width = window.innerWidth;
|
|
|
|
rootEl.style.width = width + 'px';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Y座標を適用
|
|
|
|
function applyTransformTop(top) {
|
|
|
|
rootEl.style.top = top + 'px';
|
|
|
|
}
|
|
|
|
|
|
|
|
// X座標を適用
|
|
|
|
function applyTransformLeft(left) {
|
|
|
|
rootEl.style.left = left + 'px';
|
|
|
|
}
|
|
|
|
|
|
|
|
function onBrowserResize() {
|
|
|
|
const main = rootEl;
|
2022-12-18 10:52:50 +00:00
|
|
|
if (main == null) return;
|
|
|
|
|
2022-07-17 15:31:55 +00:00
|
|
|
const position = main.getBoundingClientRect();
|
|
|
|
const browserWidth = window.innerWidth;
|
|
|
|
const browserHeight = window.innerHeight;
|
|
|
|
const windowWidth = main.offsetWidth;
|
|
|
|
const windowHeight = main.offsetHeight;
|
|
|
|
if (position.left < 0) main.style.left = '0'; // 左はみ出し
|
|
|
|
if (position.top + windowHeight > browserHeight) main.style.top = browserHeight - windowHeight + 'px'; // 下はみ出し
|
|
|
|
if (position.left + windowWidth > browserWidth) main.style.left = browserWidth - windowWidth + 'px'; // 右はみ出し
|
|
|
|
if (position.top < 0) main.style.top = '0'; // 上はみ出し
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (props.initialWidth) applyTransformWidth(props.initialWidth);
|
|
|
|
if (props.initialHeight) applyTransformHeight(props.initialHeight);
|
|
|
|
|
|
|
|
applyTransformTop((window.innerHeight / 2) - (rootEl.offsetHeight / 2));
|
|
|
|
applyTransformLeft((window.innerWidth / 2) - (rootEl.offsetWidth / 2));
|
|
|
|
|
|
|
|
// 他のウィンドウ内のボタンなどを押してこのウィンドウが開かれた場合、親が最前面になろうとするのでそれに隠されないようにする
|
|
|
|
top();
|
|
|
|
|
|
|
|
window.addEventListener('resize', onBrowserResize);
|
|
|
|
});
|
|
|
|
|
|
|
|
onBeforeUnmount(() => {
|
|
|
|
window.removeEventListener('resize', onBrowserResize);
|
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
close,
|
2020-10-17 11:12:00 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.window-enter-active, .window-leave-active {
|
2021-10-16 10:30:31 +00:00
|
|
|
transition: opacity 0.2s, transform 0.2s !important;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
.window-enter-from, .window-leave-to {
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0.9);
|
|
|
|
}
|
|
|
|
|
|
|
|
.ebkgocck {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2021-02-27 04:08:34 +00:00
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
> .body {
|
2022-07-17 20:03:39 +00:00
|
|
|
overflow: clip;
|
2020-10-17 11:12:00 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
contain: content;
|
|
|
|
width: 100%;
|
2022-06-26 10:41:21 +00:00
|
|
|
height: 100%;
|
|
|
|
border-radius: var(--radius);
|
2020-10-17 11:12:00 +00:00
|
|
|
|
|
|
|
> .header {
|
2022-12-20 06:11:20 +00:00
|
|
|
--height: 39px;
|
2021-02-27 04:08:34 +00:00
|
|
|
|
|
|
|
&.mini {
|
2022-12-20 06:11:20 +00:00
|
|
|
--height: 32px;
|
2021-02-27 04:08:34 +00:00
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
display: flex;
|
|
|
|
position: relative;
|
2020-10-18 07:10:28 +00:00
|
|
|
z-index: 1;
|
2020-10-17 11:12:00 +00:00
|
|
|
flex-shrink: 0;
|
|
|
|
user-select: none;
|
2021-02-27 04:08:34 +00:00
|
|
|
height: var(--height);
|
2022-06-26 10:41:21 +00:00
|
|
|
background: var(--windowHeader);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
2022-06-28 09:09:42 +00:00
|
|
|
//border-bottom: solid 1px var(--divider);
|
2022-06-22 11:47:53 +00:00
|
|
|
font-size: 95%;
|
2022-06-29 05:19:40 +00:00
|
|
|
font-weight: bold;
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-10-08 13:03:06 +00:00
|
|
|
> .left, > .right {
|
2022-06-20 08:38:49 +00:00
|
|
|
> .button {
|
2021-10-08 13:03:06 +00:00
|
|
|
height: var(--height);
|
|
|
|
width: var(--height);
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2021-10-08 13:03:06 +00:00
|
|
|
&:hover {
|
|
|
|
color: var(--fgHighlighted);
|
|
|
|
}
|
2022-06-20 08:38:49 +00:00
|
|
|
|
|
|
|
&.highlighted {
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-24 03:34:24 +00:00
|
|
|
> .left {
|
2022-06-20 08:38:49 +00:00
|
|
|
margin-right: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .right {
|
2021-12-24 03:34:24 +00:00
|
|
|
min-width: 16px;
|
|
|
|
}
|
|
|
|
|
2020-10-17 11:12:00 +00:00
|
|
|
> .title {
|
|
|
|
flex: 1;
|
|
|
|
position: relative;
|
2021-02-27 04:08:34 +00:00
|
|
|
line-height: var(--height);
|
2020-10-17 11:12:00 +00:00
|
|
|
white-space: nowrap;
|
2021-03-02 13:57:16 +00:00
|
|
|
overflow: hidden;
|
2020-10-17 11:12:00 +00:00
|
|
|
text-overflow: ellipsis;
|
2020-10-19 10:29:04 +00:00
|
|
|
cursor: move;
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
flex: 1;
|
|
|
|
overflow: auto;
|
2022-06-26 10:41:21 +00:00
|
|
|
background: var(--panel);
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .handle {
|
|
|
|
$size: 8px;
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
&.top {
|
|
|
|
top: -($size);
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: $size;
|
|
|
|
cursor: ns-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
top: 0;
|
|
|
|
right: -($size);
|
|
|
|
width: $size;
|
|
|
|
height: 100%;
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom {
|
|
|
|
bottom: -($size);
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: $size;
|
|
|
|
cursor: ns-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.left {
|
|
|
|
top: 0;
|
|
|
|
left: -($size);
|
|
|
|
width: $size;
|
|
|
|
height: 100%;
|
|
|
|
cursor: ew-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top-left {
|
|
|
|
top: -($size);
|
|
|
|
left: -($size);
|
|
|
|
width: $size * 2;
|
|
|
|
height: $size * 2;
|
|
|
|
cursor: nwse-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.top-right {
|
|
|
|
top: -($size);
|
|
|
|
right: -($size);
|
|
|
|
width: $size * 2;
|
|
|
|
height: $size * 2;
|
|
|
|
cursor: nesw-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom-right {
|
|
|
|
bottom: -($size);
|
|
|
|
right: -($size);
|
|
|
|
width: $size * 2;
|
|
|
|
height: $size * 2;
|
|
|
|
cursor: nwse-resize;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.bottom-left {
|
|
|
|
bottom: -($size);
|
|
|
|
left: -($size);
|
|
|
|
width: $size * 2;
|
|
|
|
height: $size * 2;
|
|
|
|
cursor: nesw-resize;
|
|
|
|
}
|
|
|
|
}
|
2022-07-17 20:03:39 +00:00
|
|
|
|
|
|
|
&.maximized {
|
|
|
|
> .body {
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
}
|
2020-10-17 11:12:00 +00:00
|
|
|
}
|
|
|
|
</style>
|