Checklist By Alvis
  • Checklist introduction
  • HubSpot Installation
  • Widget
    • Widget installation
    • Show or hide checklist on URL changes
    • Show checklist manually
    • Embed checklist on a page
    • Hide checklist launcher
    • API Callback Methods
  • Why my checklist isn't acting correctly?
  • Checklist item actions
    • URL action
  • Complete checklist items
  • Add images in item detail
  • Customize checklist location
  • Customize embedded checklist UI
    • Default Checklist Scss File
  • Content Security Policy
  • How to set up multiple checklists in sequential order
  • What happens when trial ends?
  • How to uninstall
Powered by GitBook
On this page

Was this helpful?

Customize embedded checklist UI

PreviousCustomize checklist locationNextDefault Checklist Scss File

Last updated 1 year ago

Was this helpful?

Checklist UI is mostly based on Bootstrap 4 using SASS, and here's the default checklist SCSS file:

Below is the HTML code map of the embedded checklist UI

To customize the UI, go to the checklist page, and add customized CSS code into the Custom style input.

Be sure to add .cl-container--embed to change only the embedded checklist UI. Below is a sample custom style:

.cl-container--embed {
  .cl-inner {
    .cl-top {
      .cl-top__title {
        font-weight: bold;
      }
      .cl-top__progress {}
    }
    .cl-body {
      .cl-item {
        &.cl-item--active {}
        .cl-item__line {}
        .cl-item__title {}
        .cl-item__video {}
      }
    }
  }
}
Default Checklist Scss File
Custom Style Input