Changing annotation interface for textcat.manual

Some of the documents that I have are long, and rather than scrolling down, it would be nice to have the annotations section on column to the right-hand side. Is it possible to do this?

Thank you!

Hi! You should be able to use some custom CSS via the "global_css" config setting. I just tried it and here's a super simple version that makes the container two columns:

[data-prodigy-view-id="choice"]  .prodigy-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

[data-prodigy-view-id="choice"] .prodigy-container:first-child {
    display: none; /* hide empty first element */
}

Including the [data-prodigy-view-id="choice"] element means that the overrides are only applied to the choice interface (and not all interfaces). The result looks like this: