Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

4.0.1 #6037

Merged
merged 24 commits into from
Nov 30, 2023
Merged

4.0.1 #6037

Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
6aa58d7
Slug field: fix wizard button
distantnative Nov 27, 2023
6805e04
Fix sticky table header inside blocks
distantnative Nov 29, 2023
cb7d407
Fix sticky table header inside table block
distantnative Nov 29, 2023
88ec4ad
Update CONTRIBUTING for new branches
distantnative Nov 29, 2023
6e44216
Writer toolbar: don’t set position when not inline
distantnative Nov 29, 2023
f9fd133
Fix slug field in file rename dialog
distantnative Nov 30, 2023
76c29ff
Merge pull request #6027 from getkirby/fix/6024-rename-files-slug
bastianallgeier Nov 30, 2023
ead26ae
Merge pull request #6023 from getkirby/fix/6021-writer-toolbar-offset
bastianallgeier Nov 30, 2023
ea94126
Merge pull request #6022 from getkirby/fix/contributor-notes
bastianallgeier Nov 30, 2023
31ac829
Merge pull request #6018 from getkirby/fix/6016-scroll-top
bastianallgeier Nov 30, 2023
3c7aa6e
Merge pull request #6009 from getkirby/fix/6008-slug-field-wizard
bastianallgeier Nov 30, 2023
5e7c38d
Fix bottom margin on the collection pagination in a models dialog
bastianallgeier Nov 30, 2023
f844e74
Fix in more patching way
bastianallgeier Nov 30, 2023
fa00fd1
Merge pull request #6031 from getkirby/fix/6010-dialog-pagination
bastianallgeier Nov 30, 2023
242a6d3
Fix the bottom margin for the info box in the lab
bastianallgeier Nov 30, 2023
662c16d
Fix layout field when there are no fieldsets
bastianallgeier Nov 30, 2023
7b0fe50
Merge pull request #6034 from getkirby/fix/6033-missing-lab-box-margin
bastianallgeier Nov 30, 2023
99f3422
Merge pull request #6035 from getkirby/fix/5988-fix-layout-without-fi…
distantnative Nov 30, 2023
73bfe2e
Update panel dist files
bastianallgeier Nov 30, 2023
2d29f78
Update composer
bastianallgeier Nov 30, 2023
3f8d6cd
Update translations
bastianallgeier Nov 30, 2023
053e476
Fix composer dependencies
bastianallgeier Nov 30, 2023
bcd3adf
Merge branch 'develop-patch' into release/4.0.1
bastianallgeier Nov 30, 2023
b21f04e
Update dist files after last merge again
bastianallgeier Nov 30, 2023
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
Prev Previous commit
Next Next commit
Fix sticky table header inside table block
  • Loading branch information
distantnative committed Nov 29, 2023
commit cb7d4077e8aa0371cd07dd0e5a88f6dc168ce7fd
6 changes: 6 additions & 0 deletions panel/lab/components/blocks/table/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,9 @@
</k-lab-example>
</k-lab-examples>
</template>

<style>
.k-lab-examples {
padding-bottom: 100rem;
}
</style>
4 changes: 1 addition & 3 deletions panel/src/components/Forms/Blocks/Types/Table.vue
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,8 @@ export default {
border: 1px solid var(--color-gray-300);
border-spacing: 0;
border-radius: var(--rounded-sm);
overflow: hidden;
}
.k-block-type-table-preview td,
.k-block-type-table-preview th {
.k-block-type-table-preview :where(th, td) {
text-align: start;
line-height: 1.5em;
font-size: var(--text-sm);
Expand Down