Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/components/CameraManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ const { show_dialog, width } = defineProps({
variant="panel"
padding="pa-0"
class="position-absolute elevation-24"
style="z-index: 2; top: 90px; right: 55px"
style="top: 90px; right: 55px"
z-index="1"
>
<v-card-text class="pa-0">
<Saver />
Expand Down
3 changes: 2 additions & 1 deletion app/components/CameraOrientation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ watch(hoveredFace, (newFace, oldFace) => {
v-model="show"
title="Camera Orientations"
:width="width"
style="z-index: 2; top: 90px; right: 55px"
style="top: 90px; right: 55px"
z-index="1"
>
<div
class="pa-0 overflow-hidden position-relative"
Expand Down
2 changes: 1 addition & 1 deletion app/components/FeedBack/ErrorBanner.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ function reload() {
<v-banner
v-if="feedbackStore.server_error"
elevation="2"
style="background-color: grey; z-index: 9999"
style="background-color: grey; z-index: 4"
position="fixed"
>
<v-row>
Expand Down
1 change: 1 addition & 0 deletions app/components/FeedBack/Snackers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ function calc_margin(index) {
max-width="200px"
height="20px"
timeout="10000"
z-index="4"
>
<v-row dense class="flex-nowrap">
<v-col cols="auto">
Expand Down
2 changes: 1 addition & 1 deletion app/components/HybridViewerTooltip.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function formatAttributeValue(val) {
.floating-tooltip {
position: absolute;
pointer-events: none;
z-index: 10000;
z-index: 4;
min-width: 200px;
max-width: 450px;
transition: opacity 0.15s ease;
Expand Down
2 changes: 1 addition & 1 deletion app/components/Launcher.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ if (infraStore.app_mode !== appMode.CLOUD) {
class="align"
cols="12"
align-self="center"
style="z-index: 1000"
z-index="4"
>
<Recaptcha :button_color="'secondary'" />
</v-col>
Expand Down
4 changes: 2 additions & 2 deletions app/components/Loading.vue
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ onUnmounted(() => {
height: 100vh;
background: rgba(0, 0, 0, 0.45);
backdrop-filter: blur(10px);
z-index: 2400;
pointer-events: auto;
z-index: 3;
"
>
<div
Expand All @@ -73,7 +73,7 @@ onUnmounted(() => {
background-size: 40px 40px;
background-position: center;
pointer-events: none;
z-index: -1;
z-index: 0;
"
/>

Expand Down
5 changes: 3 additions & 2 deletions app/components/RemoteRenderingView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,8 @@ onMounted(async () => {
<slot name="ui"></slot>
<v-col
ref="viewer"
style="overflow: hidden; position: relative; z-index: 0; height: 100%; width: 100%"
style="overflow: hidden; position: relative; height: 100%; width: 100%"
z-index="0"
class="pa-0"
@click="get_x_y"
@keydown.esc="viewerStore.toggle_picking_mode(false)"
Expand All @@ -117,7 +118,7 @@ onMounted(async () => {
<style scoped>
.list {
position: absolute;
z-index: 2;
z-index: 1;
left: 0;
top: 0;
background-color: transparent;
Expand Down
2 changes: 1 addition & 1 deletion app/components/ToolPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ function close() {

<style scoped>
.tool-panel {
z-index: 2;
z-index: 1;
top: 90px;
right: 55px;
}
Expand Down
2 changes: 1 addition & 1 deletion app/components/ViewToolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const camera_options = computed(() => [
<style module>
.floatToolbar {
position: absolute;
z-index: 2;
z-index: 1;
right: 20px;
top: 20px;
background-color: rgba(0, 0, 0, 0);
Expand Down
3 changes: 2 additions & 1 deletion app/components/Viewer/ContextMenu/CenterButton.vue
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ function onCenterClick(event) {
icon
variant="outlined"
class="central-selector-btn elevation-6"
style="width: 52px; height: 52px; z-index: 5"
style="width: 52px; height: 52px"
z-index="1"
:style="computedItemStyles"
@mousedown="onMouseDown"
@mouseup="onMouseUp"
Expand Down
2 changes: 1 addition & 1 deletion app/components/Viewer/ContextMenu/ContextMenuItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ function toggleOptions() {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 1001;
z-index: 4;
}

.options-right {
Expand Down
2 changes: 1 addition & 1 deletion app/components/Viewer/ContextMenu/InfoCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ const formattedId = computed(() => {
bottom: 110px; /* Positions it beautifully above the circular menu */
left: 50%;
transform: translateX(-50%);
z-index: 100;
z-index: 3;
pointer-events: auto;
}
</style>
2 changes: 1 addition & 1 deletion app/components/Viewer/ObjectTree/Base/StickyHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ const emit = defineEmits(["toggle-open", "toggle-select"]);
border-bottom: 2px solid rgba(0, 0, 0, 0.05);
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
cursor: pointer;
z-index: 20;
z-index: 2;
}

.sticky-tree-header:hover {
Expand Down
6 changes: 3 additions & 3 deletions app/components/Viewer/ObjectTree/Layout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ function onVerticalResizeStart(event, index) {
<style scoped>
.treeview-layout {
position: absolute;
z-index: 2;
z-index: 1;
left: 0;
top: 0;
height: calc(100vh - 100px);
Expand Down Expand Up @@ -414,7 +414,7 @@ function onVerticalResizeStart(event, index) {
position: relative;
cursor: ns-resize;
background-color: transparent;
z-index: 5;
z-index: 1;
}

.v-split-resizer::after {
Expand Down Expand Up @@ -442,7 +442,7 @@ function onVerticalResizeStart(event, index) {
width: 8px;
height: 100%;
cursor: ew-resize;
z-index: 10;
z-index: 2;
}

.total-resizer:hover {
Expand Down
2 changes: 1 addition & 1 deletion app/components/Viewer/Ui.vue
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ defineExpose({ get_viewer_id });
top: 20px;
left: 0;
pointer-events: none;
z-index: 100;
z-index: 3;
}

@keyframes pulse-ring {
Expand Down
Loading