@geode/opengeodeweb-front 10.24.1 → 10.24.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -21,7 +21,8 @@ const { show_dialog, width } = defineProps({
21
21
  variant="panel"
22
22
  padding="pa-0"
23
23
  class="position-absolute elevation-24"
24
- style="z-index: 2; top: 90px; right: 55px"
24
+ style="top: 90px; right: 55px"
25
+ z-index="1"
25
26
  >
26
27
  <v-card-text class="pa-0">
27
28
  <Saver />
@@ -172,7 +172,8 @@ watch(hoveredFace, (newFace, oldFace) => {
172
172
  v-model="show"
173
173
  title="Camera Orientations"
174
174
  :width="width"
175
- style="z-index: 2; top: 90px; right: 55px"
175
+ style="top: 90px; right: 55px"
176
+ z-index="1"
176
177
  >
177
178
  <div
178
179
  class="pa-0 overflow-hidden position-relative"
@@ -12,7 +12,7 @@ function reload() {
12
12
  <v-banner
13
13
  v-if="feedbackStore.server_error"
14
14
  elevation="2"
15
- style="background-color: grey; z-index: 9999"
15
+ style="background-color: grey; z-index: 4"
16
16
  position="fixed"
17
17
  >
18
18
  <v-row>
@@ -24,6 +24,7 @@ function calc_margin(index) {
24
24
  max-width="200px"
25
25
  height="20px"
26
26
  timeout="10000"
27
+ z-index="4"
27
28
  >
28
29
  <v-row dense class="flex-nowrap">
29
30
  <v-col cols="auto">
@@ -181,7 +181,7 @@ function formatAttributeValue(val) {
181
181
  .floating-tooltip {
182
182
  position: absolute;
183
183
  pointer-events: none;
184
- z-index: 10000;
184
+ z-index: 4;
185
185
  min-width: 200px;
186
186
  max-width: 450px;
187
187
  transition: opacity 0.15s ease;
@@ -31,7 +31,7 @@ if (infraStore.app_mode !== appMode.CLOUD) {
31
31
  class="align"
32
32
  cols="12"
33
33
  align-self="center"
34
- style="z-index: 1000"
34
+ z-index="4"
35
35
  >
36
36
  <Recaptcha :button_color="'secondary'" />
37
37
  </v-col>
@@ -61,8 +61,8 @@ onUnmounted(() => {
61
61
  height: 100vh;
62
62
  background: rgba(0, 0, 0, 0.45);
63
63
  backdrop-filter: blur(10px);
64
- z-index: 2400;
65
64
  pointer-events: auto;
65
+ z-index: 3;
66
66
  "
67
67
  >
68
68
  <div
@@ -73,7 +73,7 @@ onUnmounted(() => {
73
73
  background-size: 40px 40px;
74
74
  background-position: center;
75
75
  pointer-events: none;
76
- z-index: -1;
76
+ z-index: 0;
77
77
  "
78
78
  />
79
79
 
@@ -123,7 +123,8 @@ onMounted(async () => {
123
123
  <slot name="ui"></slot>
124
124
  <v-col
125
125
  ref="viewer"
126
- style="overflow: hidden; position: relative; z-index: 0; height: 100%; width: 100%"
126
+ style="overflow: hidden; position: relative; height: 100%; width: 100%"
127
+ z-index="0"
127
128
  class="pa-0"
128
129
  @pointerup.capture="get_x_y"
129
130
  @keydown.esc="viewerStore.toggle_picking_mode(false)"
@@ -135,7 +136,7 @@ onMounted(async () => {
135
136
  <style scoped>
136
137
  .list {
137
138
  position: absolute;
138
- z-index: 2;
139
+ z-index: 1;
139
140
  left: 0;
140
141
  top: 0;
141
142
  background-color: transparent;
@@ -62,7 +62,7 @@ function close() {
62
62
 
63
63
  <style scoped>
64
64
  .tool-panel {
65
- z-index: 2;
65
+ z-index: 1;
66
66
  top: 90px;
67
67
  right: 55px;
68
68
  }
@@ -215,7 +215,7 @@ const camera_options = computed(() => [
215
215
  <style module>
216
216
  .floatToolbar {
217
217
  position: absolute;
218
- z-index: 2;
218
+ z-index: 1;
219
219
  right: 20px;
220
220
  top: 20px;
221
221
  background-color: rgba(0, 0, 0, 0);
@@ -74,7 +74,8 @@ function onCenterClick(event) {
74
74
  icon
75
75
  variant="outlined"
76
76
  class="central-selector-btn elevation-6"
77
- style="width: 52px; height: 52px; z-index: 5"
77
+ style="width: 52px; height: 52px"
78
+ z-index="1"
78
79
  :style="computedItemStyles"
79
80
  @mousedown="onMouseDown"
80
81
  @mouseup="onMouseUp"
@@ -244,7 +244,7 @@ function toggleOptions() {
244
244
  position: absolute;
245
245
  top: 50%;
246
246
  transform: translateY(-50%);
247
- z-index: 1001;
247
+ z-index: 4;
248
248
  }
249
249
 
250
250
  .options-right {
@@ -178,7 +178,7 @@ const formattedId = computed(() => {
178
178
  bottom: 110px; /* Positions it beautifully above the circular menu */
179
179
  left: 50%;
180
180
  transform: translateX(-50%);
181
- z-index: 100;
181
+ z-index: 3;
182
182
  pointer-events: auto;
183
183
  }
184
184
  </style>
@@ -37,7 +37,7 @@ const emit = defineEmits(["toggle-open", "toggle-select"]);
37
37
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
38
38
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
39
39
  cursor: pointer;
40
- z-index: 20;
40
+ z-index: 2;
41
41
  }
42
42
 
43
43
  .sticky-tree-header:hover {
@@ -304,7 +304,7 @@ function onVerticalResizeStart(event, index) {
304
304
  <style scoped>
305
305
  .treeview-layout {
306
306
  position: absolute;
307
- z-index: 2;
307
+ z-index: 1;
308
308
  left: 0;
309
309
  top: 0;
310
310
  height: calc(100vh - 100px);
@@ -414,7 +414,7 @@ function onVerticalResizeStart(event, index) {
414
414
  position: relative;
415
415
  cursor: ns-resize;
416
416
  background-color: transparent;
417
- z-index: 5;
417
+ z-index: 1;
418
418
  }
419
419
 
420
420
  .v-split-resizer::after {
@@ -442,7 +442,7 @@ function onVerticalResizeStart(event, index) {
442
442
  width: 8px;
443
443
  height: 100%;
444
444
  cursor: ew-resize;
445
- z-index: 10;
445
+ z-index: 2;
446
446
  }
447
447
 
448
448
  .total-resizer:hover {
@@ -135,7 +135,7 @@ defineExpose({ get_viewer_id });
135
135
  top: 20px;
136
136
  left: 0;
137
137
  pointer-events: none;
138
- z-index: 100;
138
+ z-index: 3;
139
139
  }
140
140
 
141
141
  @keyframes pulse-ring {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@geode/opengeodeweb-front",
3
- "version": "10.24.1",
3
+ "version": "10.24.2",
4
4
  "description": "OpenSource Vue/Nuxt/Pinia/Vuetify framework for web applications",
5
5
  "homepage": "https://github.com/Geode-solutions/OpenGeodeWeb-Front",
6
6
  "bugs": {