Merge remote-tracking branch 'origin/master'

This commit is contained in:
M_Kececi
2026-05-12 13:10:30 +03:00
parent 20ec92167c
commit 43f965a3cf
2 changed files with 0 additions and 20 deletions

View File

@@ -3061,9 +3061,6 @@ watch(
} }
.pcd-sticky-stack { .pcd-sticky-stack {
position: sticky !important;
top: 50px !important;
z-index: 1000 !important;
background: #fff; background: #fff;
margin-bottom: 0; margin-bottom: 0;
border-bottom: 1px solid #ddd; border-bottom: 1px solid #ddd;
@@ -3256,9 +3253,6 @@ watch(
} }
.pcd-sub-header { .pcd-sub-header {
position: sticky !important;
top: var(--pcd-subheader-top) !important;
z-index: 990 !important;
display: flex !important; display: flex !important;
align-items: center; align-items: center;
justify-content: space-between; justify-content: space-between;
@@ -3302,9 +3296,6 @@ watch(
} }
.pcd-detail-table :deep(.q-table thead tr:first-child th) { .pcd-detail-table :deep(.q-table thead tr:first-child th) {
position: sticky !important;
top: calc(var(--pcd-subheader-top) + 42px) !important;
z-index: 980 !important;
background: #f8f9fa !important; background: #f8f9fa !important;
opacity: 1 !important; opacity: 1 !important;
} }

View File

@@ -37,7 +37,6 @@
no-data-label="Kayit bulunamadi" no-data-label="Kayit bulunamadi"
:rows-per-page-options="[0]" :rows-per-page-options="[0]"
hide-bottom hide-bottom
sticky-header
> >
<template #header-cell="props"> <template #header-cell="props">
<q-th :props="props"> <q-th :props="props">
@@ -867,11 +866,6 @@ onMounted(async () => {
<style scoped> <style scoped>
.pcmm-page { .pcmm-page {
background: #fafafa; background: #fafafa;
/* Prevent page scroll; table body will scroll inside .pcmm-table-wrap */
height: 100%;
overflow: hidden;
display: flex;
flex-direction: column;
} }
.pcmm-header { .pcmm-header {
@@ -885,8 +879,6 @@ onMounted(async () => {
.pcmm-table-wrap { .pcmm-table-wrap {
flex: 1 1 auto; flex: 1 1 auto;
min-height: 0; /* important for flex overflow scrolling */
overflow: auto;
} }
.pcmm-form { .pcmm-form {
@@ -927,9 +919,6 @@ onMounted(async () => {
/* Keep q-table top controls visible while scrolling (like sticky headers). */ /* Keep q-table top controls visible while scrolling (like sticky headers). */
.pcmm-table :deep(.q-table__top) { .pcmm-table :deep(.q-table__top) {
position: sticky;
top: 0;
z-index: 3;
background: #fafafa; background: #fafafa;
} }