The Freshsales Suite UI is built on a modified version of the Bootstrap v3.3 framework. The user interface of apps that are to be published on Freshworks Marketplace need to be consistent with the Freshsales Suite UI. We do not enforce this for custom apps but it is highly recommended for better user experience. This section provides information on the default Freshsales Suite UI stylesheet and how to include a custom stylesheet.
Here are a few guidelines that you need to follow.
Import the Freshsales Suite app stylesheet in all templates and ensure that the class names of UI elements used in the app match those used by Bootstrap.
template.html
<link rel="stylesheet" type="text/css" href="https://static.freshdev.io/fdk/2.0/assets/freshworks_crm.css">
All template files should contain a div block with class="fs-widget-wrapper" inside the body of the template. This is used to implement styles which are applicable to all elements of the app.
1<body> 2<div class="fw-widget-wrapper"> 3//template code 4</div> 5</body>
A few elements and their usage are listed in the following table.
ELEMENT | USAGE |
---|---|
Label - Defines a label for an input element |
|
Section Divider - Separates various sections of the app. |
|
Links - Allows users to move from one page to another. No class needs to be added. |
|
List - All divs within the parent are placed one after the other. If you are using this template to display field names and values, use the muted class for field names. |
|
Crayons To build apps that are consistent with the Freshworks UI, you can use our UI component library - Crayons. Crayons leverages the custom CSS properties to provide a default theme and style for the app’s UI components.