Skip to content

Commit

Permalink
More fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kepano committed Nov 18, 2023
1 parent 3ac3a82 commit c137a34
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 7 deletions.
7 changes: 5 additions & 2 deletions Minimal.css
Original file line number Diff line number Diff line change
Expand Up @@ -2935,10 +2935,13 @@ body.minimal-focus-mode.show-view-header .view-content {
.row-lines-off table:not(.calendar) tbody > tr:last-child > td {
border-bottom: none; }

.row-lines:not(.table-lines) .markdown-source-view:not(.cards) {
.row-lines:not(.table-lines) .markdown-source-view:not(.cards),
.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) {
--table-row-last-border-width: 0px; }
.row-lines:not(.table-lines) .markdown-source-view:not(.cards) table:not(.calendar) tbody > tr:not(:last-child) > td,
.row-lines:not(.table-lines) .markdown-source-view:not(.cards) .table-view-table > tbody > tr:not(:last-child) > td {
.row-lines:not(.table-lines) .markdown-source-view:not(.cards) .table-view-table > tbody > tr:not(:last-child) > td,
.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) table:not(.calendar) tbody > tr:not(:last-child) > td,
.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) .table-view-table > tbody > tr:not(:last-child) > td {
border-bottom: var(--table-border-width) solid var(--table-border-color); }

.col-lines table:not(.calendar) tbody > tr > td:not(:last-child),
Expand Down
7 changes: 5 additions & 2 deletions src/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -2892,10 +2892,13 @@ body.minimal-focus-mode.show-view-header .view-content {
.row-lines-off table:not(.calendar) tbody > tr:last-child > td {
border-bottom: none; }

.row-lines:not(.table-lines) .markdown-source-view:not(.cards) {
.row-lines:not(.table-lines) .markdown-source-view:not(.cards),
.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) {
--table-row-last-border-width: 0px; }
.row-lines:not(.table-lines) .markdown-source-view:not(.cards) table:not(.calendar) tbody > tr:not(:last-child) > td,
.row-lines:not(.table-lines) .markdown-source-view:not(.cards) .table-view-table > tbody > tr:not(:last-child) > td {
.row-lines:not(.table-lines) .markdown-source-view:not(.cards) .table-view-table > tbody > tr:not(:last-child) > td,
.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) table:not(.calendar) tbody > tr:not(:last-child) > td,
.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) .table-view-table > tbody > tr:not(:last-child) > td {
border-bottom: var(--table-border-width) solid var(--table-border-color); }

.col-lines table:not(.calendar) tbody > tr > td:not(:last-child),
Expand Down
2 changes: 1 addition & 1 deletion src/css/main.min.css

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/scss/features/helpers-tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,8 @@
}
}

.row-lines:not(.table-lines) .markdown-source-view:not(.cards) {
.row-lines:not(.table-lines) .markdown-source-view:not(.cards),
.row-lines:not(.table-lines) .markdown-preview-view:not(.cards) {
--table-row-last-border-width: 0px;

table:not(.calendar) tbody > tr:not(:last-child) > td,
Expand Down
2 changes: 1 addition & 1 deletion theme.css

Large diffs are not rendered by default.

0 comments on commit c137a34

Please sign in to comment.