Skip to main content

Archer Enhanced User Experience Tool

Comments

4 comments

  • Madhu Sai

    Hi @ThemistoclesC ,

    Does the following URL require Internet access? Our end users do not have internet access, so any alternate option to resolve this issue?

    /* Imports Material Icons font for rendering new "more" and "delete" buttons */

    @import url("https://fonts.googleapis.com/icon?family=Material+Icons"); /* Creates variable for setting background color in view mode */

    Originally posted on July 10, 2024.

    0
  • Themistocles Chronis

    The ReformatLayoutCustomObject should be loading the Material Icons font:

    /* Imports Material Icons font for rendering new "more" and "delete" buttons */

    @import url("https://fonts.googleapis.com/icon?family=Material+Icons"); /* Creates variable for setting background color in view mode */

    If you have the user open Developer Tools (F12) on their browser and go into the Network tab, do you see icon?family=Material+icons get loaded with a 200 OK Status Code?

    ThemistoclesC_0-1720619332290.png

    Originally posted on July 10, 2024.

    0
  • Madhu Sai

    Hi @ThemistoclesC ,

    Do you have any Workaround for our issue?

    Originally posted on July 15, 2024.

    0
  • Themistocles Chronis

    Here's the workaround:

    On the Archer web server, unzip the attached file and copy material-icons.woff2 file to the apps\common\fonts folder in the default application folder of your Archer website.

    In the ReformatLayoutCustomObject in Archer Accessories Objects, replace:

    /* Imports Material Icons font for rendering new "more" and "delete" buttons */ @import url("https://fonts.googleapis.com/icon?family=Material+Icons");

    with this:

    /* References Material Icons font for rendering new "more" and "delete" buttons */ @font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; src: url(../apps/common/fonts/material-icons.woff2) format('woff2'); } .material-icons { font-family: 'Material Icons'; font-weight: normal; font-style: normal; font-size: 24px; line-height: 1; letter-spacing: normal; text-transform: none; display: inline-block; white-space: nowrap; word-wrap: normal; direction: ltr; -webkit-font-smoothing: antialiased; }

    Use the Archer Accessories dashboard to redeploy the custom object to all layout you previously deployed it to.

    Originally posted on July 15, 2024.

    0

Please sign in to leave a comment.