Skip to content

Commit

Permalink
Merge pull request #883 from nextcloud/bugfix/noid/polish
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusknorr authored Mar 4, 2024
2 parents fb189a2 + 495ad70 commit 0d6cb1b
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
17 changes: 14 additions & 3 deletions src/shared/components/ncTable/partials/TableCellEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ export default {
}
</script>

<style scoped>
<style lang="scss" scoped>
div {
max-width: 670px;
max-height: calc(var(--default-line-height) * 6);
overflow-y: scroll;
min-width: 100px;
Expand All @@ -44,10 +45,20 @@ div {
}
:deep(.text-editor__wrapper div.ProseMirror) {
padding: 0px 0px 0px 0px
padding: 0px 0px 0px 0px;
}
:deep(div[contenteditable='false']) {
background: transparent;
color: var(--color-main-text);
width: auto;
min-height: auto;
opacity: 1;
font-size: var(--default-font-size);
}
:deep(.editor__content) {
max-width: 100% !important
max-width: 100% !important;
}
</style>
1 change: 1 addition & 0 deletions src/shared/components/ncTable/sections/CustomTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -299,6 +299,7 @@ export default {
td, th {
padding-right: 8px;
max-width: 500px;
}
td .showOnHover, th .showOnHover {
Expand Down
2 changes: 2 additions & 0 deletions src/shared/components/ncTable/sections/Options.vue
Original file line number Diff line number Diff line change
Expand Up @@ -202,10 +202,12 @@ export default {
.actionButtonsLeft {
display: inline-flex;
align-items: center;
padding-left: calc(var(--default-grid-baseline) * 1);
}
:deep(.actionButtonsLeft button) {
min-width: fit-content;
margin-top: 5px;
}
.searchAndFilter {
Expand Down

0 comments on commit 0d6cb1b

Please sign in to comment.