Home Analyst Portal - Community
Options

What item in the css file change the color of the buttons on the bottom bar? I need them to stand ou

Answers

  • Options
    alex_kokinalex_kokin Member IT Monkey ✭

    What item in the css file change the color of the buttons on the bottom bar? I need them to stand out.

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

    Hi @alex_kokin


    You can add this to your custom.css file:


    .fa-check:before {

    color: lawngreen;

    }

    .fa-pencil:before {

    color: orange;

    }

    .fa-times:before {

    color: red;

    }


    Thanks,

    Shane

  • Options
    Gerhard_GoossensGerhard_Goossens Customer Advanced IT Monkey ✭✭✭

    We are using this script to make the save button more visable

    https://community.cireson.com/discussion/1851/pulsating-save-button-in-drawer-taskbar

    and this in custom.css to change the colours

    /* Change colours of Save Submit  */
      .fa-check {
        color: #00FF00 !important;
      }
      .fa-times {
        color: #FF0000 !important;
      }
      .fa-pencil {
        color: #FFFF00 !important;
      }
    
  • Options
    Justin_WorkmanJustin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭

    @alex_kokin - I'm curious why you've rejected the above answers. They're both valid answers to your question. Adding the color values to custom.css is the best way to override the defaults without having to bother with editing the default CSS files.

  • Options
    alex_kokinalex_kokin Member IT Monkey ✭

    Sorry those did not work for me. I tried copying each option to my custom.css file in the CustomSpace folder and they did not work for me. am I missing something?

  • Options
    Justin_WorkmanJustin_Workman Cireson Support Super IT Monkey ✭✭✭✭✭

    You may need to do a "hard refresh" (Ctrl+F5) to make sure the change is reflected in the portal.

  • Options
    alex_kokinalex_kokin Member IT Monkey ✭

    @Justin_Workman

    no bueno

  • Options
    alex_kokinalex_kokin Member IT Monkey ✭
Sign In or Register to comment.