Create a CSS include to override theming for AI Search in Service Portal

  • リリースバージョン: Australia
  • 更新日 2026年03月12日
  • 所要時間:4分
  • Override theming for AI Search in Service Portal to match your company branding.

    始める前に

    Role required: sp_admin or admin

    このタスクについて

    As an example of styling features of AI Search in Service Portal, this procedure removes the borders around the search filters. You can style several other features using additional CSS variables. For more information about these variables, see Theming for AI Search in Service Portal.

    Search filters: Remove the line borders around search filters.

    Search filters panel showing line borders.

    手順

    1. Create a style sheet record.
      1. Enter sp_css.do in the Filter navigator.
      2. On the form, fill in the fields.
        表 : 1. Style Sheet form
        Field Description
        Name Unique name for your style sheet. For example, sp_ais.css.
        CSS Field for your CSS code. Enter this code and then customize the variables.
        To remove the border for the search filters panel, paste this code and customize as desired.
        sn-search-facets {
          --now-color--divider-tertiary: 0px !important;
        }
        Application Application this style sheet applies to. Global means the style sheet applies to all applications.
      3. Select Submit.
    2. Create a CSS include record.
      1. Enter sp_css_include.do in the filter navigator.
      2. On the form, fill in the fields.
        表 : 2. CSS Include form
        Field Description
        Name Unique name for your CSS include record.
        Source Source for your CSS include. Select Style Sheet.
        Style sheet The style sheet you want to incorporate with this CSS include form. Select the style sheet you created in step 1.
        Application Application this CSS include record applies to. Global means the CSS include applies to all applications.
        Lazy Load

        Option to load the CSS Include asynchronously to improve page load time. This option should be set to the same value for all CSS Includes of a theme. Enabling asynchronous loading for only some CSS Includes associated with a theme isn’t recommended.

        注:
        Enabling Lazy Load isn’t recommended for portals with flashing of unstyled content.

        The CSS Includes with Lazy Load enabled are listed in the Lazy load CSS includes related list in the theme record.

    3. Input your CSS override into the style sheets form and override the theme that's applied to your UI.
      1. Enter m2m_sp_theme_css_include in the filter navigator.
      2. On the form, fill in the fields.
        表 : 3. Style Sheets form
        Field Description
        Order An integer that prioritizes the incorporation of this style sheet against other style sheets. The lower the number, the higher in the list. The typical practice is to make these numbers hundreds, for example, 100, 200, 300, and 400, so you can put new icons between existing ones in the future.
        CSS Include CSS include that includes the overrides you created in previous steps.
        Application Application this style sheet applies to. Global means the style sheet applies to all applications.
        Theme Theme that's applied to your UI that you want to override.
      3. Select Submit.

    タスクの結果

    The borders around the search filters are removed.Search filters panel with line borders removed.