How to I move `label selector` in text annotation component?


In text annotation component, when we want to select the labeling for a specific entities we need to scroll to the bottom of the component.

is there a way to either :

  • right click on the entity we want to label and select the available labels?
  • Or click on the entity and have a modal that pops up and allow us to select the label?
  • Or move it to the top of the component?

Thanks

@lowly2005 -- You can do this with custom CSS! (Here's how to add custom CSS to your app.) Please note that CSS overrides like this are very brittle and likely to break with future updates to Retool :wink:

<style>
  .text-annotation-container {
    display: flex;
  	flex-direction: column-reverse;
  }
</style>

1 Like