noatpad / obsidian-banners

An Obsidian plugin that adds banners to your notes
MIT License
616 stars 39 forks source link

[2.0.5 beta] Missing cursor icon in tables #165

Open ObsidianTTRPGProject opened 2 months ago

ObsidianTTRPGProject commented 2 months ago

Hey team,

Heads up on a bug in the latest beta. When moving within a table in Live Preview mode there is no cursor icon in empty table cells.

Obsidian_PQAuxGMrYA

Have completed an isolation test with a fresh vault and confirmed this issue is coming from the latest beta of Banners.

VertexMachine commented 1 month ago

Workaround: css snippet:

/* bugfix for disappearing caret in new obsidian tables */
.table-editor .table-cell-wrapper .cm-scroller {
  flex-direction: row;
}

Solution from here

i-iooi-i commented 2 weeks ago

I'm having the same problem.

i-iooi-i commented 2 weeks ago

解决方法:css 代码片段:

/* bugfix for disappearing caret in new obsidian tables */
.table-editor .table-cell-wrapper .cm-scroller {
  flex-direction: row;
}

解决方案从这里开始

This one is useful, thank you very much