Styling - Fluid Topics - Latest

Fluid Topics Designer Guide

Category
Reference Guides
Audience
public
Version
Latest

The Saved bookmarks component has parts. Use the parts to style the following parts of the component:

  • container

    The box holding the various saved bookmarks.

  • bookmark

    The box holding the individual saved bookmarks.

  • link

    The link to the bookmarked topic.

For example, add the following to the component's CSS rules:

[part="link"] {
    text-decoration: underline;
    color: red;
}

[part="bookmark"] {
    border-style: dotted;
}

[part="container"] {
    border: 1px solid black;
}