Search code examples
cssgoogle-app-maker

How to style options in Appmaker MultiSelect Widget


I'm trying to use CSS to stylize the options within the MultiSelect widget, for example to make a border around each of the individual options.

Is there any way to do this through Appmaker? Thank you


Solution

  • app-MultiSelect-Item is what you are looking for to customize the options.

    For example:

    .app-MultiSelect-Item {                       
      font-size: 12px;
      line-height: 12px;
      padding-bottom: 8px;
      padding-top: 8px;
      border: 1px black solid ;
      border-top-right-radius: 20px;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 20px;
      border-bottom-right-radius: 20px;
      background-color: #FF9800;
    }