• If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Announcement

Collapse
No announcement yet.

NAB: How do I control background colors used when striping select for Grid

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • NAB: How do I control background colors used when striping select for Grid

    Hard for my eyes to detect the difference between grid rows when Stripe Rows is selected in the widget GUI control configurations.

    Would like to be able to select something with slightly darker to provide more contrast, or possibly a color.
    Last edited by jcallahan; 08-20-2018, 09:16 AM.

  • #2
    You can create a global wide css change by modifying the overrides.css file.
    This is located in folder resources/desktop/themes/css/Portal.

    You can add the following to darken the striped rows a bit.

    Code:
    .x-grid-item-alt{
        background-color:#DFDFDF;
    }

    Comment


    • #3
      Exactly what I was looking for. Thank you.

      Comment

      Working...
      X