Changing the default colour of Primary/Secondary/Related Action Buttons

Certified Lead Developer
Hi All,

Is there any way we can customise the colour of the buttons/links in interfaces or dashboards? It should

Thanks.
Hitesh

OriginalPostID-266217

  Discussion posts and replies are publicly visible

Parents
  • AFAIK the color of links/buttons from OOTB Appian functionality cannot be customized. A possible workaround is to use combinations of imageField that uses document/webImage for the image parameter that also makes use of a link function for the link parameter depending on the image's purpose.

    Keep in mind if this is a plausible approach, then you will have to do trial-and-error with the image size as well as image placement on your UI.

    Simple example below:
    a!imageField(
    label:"Some Label",
    images:a!documentImage(
    document:12345, /*Upload doc and reference docId here*/
    altText:"docImage",
    link:a!dynamicLink(
    label:"some label",
    value:{}
    )
    ),
    size:"ICON"
    )
Reply
  • AFAIK the color of links/buttons from OOTB Appian functionality cannot be customized. A possible workaround is to use combinations of imageField that uses document/webImage for the image parameter that also makes use of a link function for the link parameter depending on the image's purpose.

    Keep in mind if this is a plausible approach, then you will have to do trial-and-error with the image size as well as image placement on your UI.

    Simple example below:
    a!imageField(
    label:"Some Label",
    images:a!documentImage(
    document:12345, /*Upload doc and reference docId here*/
    altText:"docImage",
    link:a!dynamicLink(
    label:"some label",
    value:{}
    )
    ),
    size:"ICON"
    )
Children
No Data