Home Analyst Portal

Font Color change for picker

Brian_WinterBrian_Winter Customer Advanced IT Monkey ✭✭✭

In the new CI Picker, I'm trying to find a css to change my light grey color to something darker. This appears for any secondary data fields.



Best Answers

Answers

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    Hi @Brian_Winter

    Give this a try for me in Custom.css:

    .multiquery-select__items__details{

    color:blue;

    }

    Thanks,

    Shane

  • Brian_WinterBrian_Winter Customer Advanced IT Monkey ✭✭✭

    Thanks @Shane_White !! 😎👊 That got the drop-down details a nice blue. Now I need to do the same thing with the selected objects (and it'd be nice to have the "Required*" in red 😀)


  • Brian_WinterBrian_Winter Customer Advanced IT Monkey ✭✭✭

    Followup. Taking my cue from @Shane_White , I solved the selected details:

    .multi-query__list__selected-items__details {

    color:blue;

    }


    Still being challenged by the Required* and also the "Find..." Search input. Almost there.....

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    Hi @Brian_Winter

    No worries! Give this a try:

    .multiquery-select__items__details{

    color:blue;

    }

    .multi-query__list__selected-items__details {

    color: blue;

    }

    .required-userinput-label {

    color: red;

    }

    Thanks,

    Shane

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    What do you mean by the find search input?

    Thanks,

    Shane

  • Brian_WinterBrian_Winter Customer Advanced IT Monkey ✭✭✭

    Even the Magnifying Glass is a mere ghotst.

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    This is the complete code for all you have asked 😁

    .multiquery-select__items__details{

    color:blue;

    }

    .multi-query__list__selected-items__details {

    color: blue;

    }

    .required-userinput-label {

    color: red;

    }

    .fa.fa-search.icon-addon {

    color: black !important;

    }

    Thanks,

    Shane

  • Brian_WinterBrian_Winter Customer Advanced IT Monkey ✭✭✭

    So CLOSE! Just missing the one of the Multi-Select



  • Brian_WinterBrian_Winter Customer Advanced IT Monkey ✭✭✭

    Icon fixed. Search... and any input text is still grey.

  • Brian_WinterBrian_Winter Customer Advanced IT Monkey ✭✭✭

    Man, that's awesome!!

    ...


    but one last try??? That "Required*" is still ghost grey. All the rest are lovely Red

  • Brian_WinterBrian_Winter Customer Advanced IT Monkey ✭✭✭

    @Shane_White , you are the CSS MAN! I spent hours digging around and never got close. Thanks for your time and this looks killer!

    You should bundle this up and share as a Feature! These little changes really pop and really makes the forms more user friendly. Could be a simple addition to the RO Toolbox! (@john_doyle )

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    You're welcome anytime 😎 That is definitely a decision for John to make, but I agree it looks good!

    Shane

  • Shane_WhiteShane_White Cireson Support Super IT Monkey ✭✭✭✭✭

    Screenshot for Community to see what the changes look like:


Sign In or Register to comment.