Make panel headers static when scrolling panel content
This commit is contained in:
parent
4c6e5415cb
commit
2ce3c11da2
|
@ -162,6 +162,26 @@
|
||||||
background-color: transparent !important;
|
background-color: transparent !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grid-stack-item-content {
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column !important;
|
||||||
|
overflow-x: hidden !important;
|
||||||
|
overflow-y: hidden !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel {
|
||||||
|
display: flex !important;
|
||||||
|
flex-direction: column !important;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panel-block {
|
||||||
|
overflow-y:scroll;
|
||||||
|
overflow-x:scroll;
|
||||||
|
min-height: 90%;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -54,7 +54,7 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
<div id="table-container" class="table-container" style="display:none;">
|
<div id="table-container" style="display:none;">
|
||||||
<table {% render_attrs table.attrs class="table drilldown-results-table is-fullwidth" %}>
|
<table {% render_attrs table.attrs class="table drilldown-results-table is-fullwidth" %}>
|
||||||
{% block table.thead %}
|
{% block table.thead %}
|
||||||
{% if table.show_header %}
|
{% if table.show_header %}
|
||||||
|
|
Loading…
Reference in New Issue