Skip to content

Commit

Permalink
πŸ’„ (#114): add table css
Browse files Browse the repository at this point in the history
Signed-off-by: Vinicius Reis <vinicius.reis@nextcloud.com>
  • Loading branch information
Vinicius Reis authored and max-nextcloud committed Mar 15, 2022
1 parent 4f685c5 commit 4beea0b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions css/prosemirror.scss
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,35 @@ div.ProseMirror {
}
}

// TODO: create new css variables to improve the theming capability.
table {
border-collapse: collapse;
border-spacing: 0;
width: 100%;
table-layout: fixed;
white-space: normal; // force text to wrapping

td, th {
border: 1px solid var(--color-border);
color: var(--color-main-text);
padding: 0.5em 0.75em;
vertical-align: top;
max-width: 100%;
}
thead tr {
background-color: var(--color-background-darker);
th {
font-weight: bold;
border-color: var(--color-border-dark);
}
}
tbody tr {
background-color: var(--color-main-background);
&:hover, &:active, &:focus {
background-color: var(--color-background-dark);
}
}
}
}

.ProseMirror-focused .ProseMirror-gapcursor {
Expand Down

0 comments on commit 4beea0b

Please sign in to comment.