Config Wizard CSS
OverviewCopy
In order to customize the Configuration Wizard which pops up when End Users are configuring a Solution Instance for their own use, it is possible to upload your own custom CSS in your Partner Account settings.
This will allow you to make sure that Config Wizard screens visible to End Users are in keeping with your branding.
It is recommended that you only make simple styling changes to the Config Wizard. Changing the layout and positioning of items may break the display and may also be subject to being overwritten by product updates. The main purpose of this feature is to allow styling changes to colours, fonts, the shape/roundness of buttons, the thickness of borders etc.
Activate Config Wizard CSS by setting Embedded IDCopy
To activate the feature you first of all need to set an Embedded ID (e.g. the initials of your company)
Editing the Config Wizard CSSCopy
You have a choice of either uploading custom css files (using the 'choose file' button), or using the in-app editor and live preview facility (using the 'Edit & Preview' button).
Downloading the pre-populated CSS/LESS file or using the Edit & Preview function will show you the classes available to work with.
You can work with elements according to the following example:
partner__item
affects all items in the UIpartner__item--auth
specifically affects all authentication items (e.g. auth drop-down list)
So the following rule could be implemented to affect all authentication items .partner__item--auth > div { color: red; }
The following screenshot shows the live edit and preview when customizing your CSS:
Following is the full list of available classes:
1partner__screen2partner__screen--first3partner__screen--last4partner__screen__header5partner__screen__header__title6partner__screen__header__description7partner__screen__items8partner__item__title9partner__item--auth10partner__item--config11partner__item--public-url12partner__modal__delete-auth13partner__modal__edit-auth14partner__modal__new-auth15partner__message--error16partner__field__checkbox17partner__field__radio18partner__button--cancel19partner__button--previous20partner__button--finish21partner__button--next22partner__button--add23partner__footer24partner__footer__button-group25partner__footer__step-indicator26partner__footer__step-indicator__dot27partner__footer__step-indicator__dot--active
Using customized fontsCopy
You can use google fonts or self hosted fonts on a CDN to customize typography.
1@import url('https://fonts.googleapis.com/css2?family=Phudu&display=swap');2.partner__screen {3font-family: 'Phudu';4}
Testing your CSSCopy
You can create a test project and solution before running our demo app in order to preview and check that your CSS is working as expected.
Note on CachingCopy
Note that once you save changes, it can take up to an hour for CSS changes to fully propagate to your applications globally.
Further NotesCopy
Some further notes when editing CSS:
Avoid using more than 2 levels within a class (for example
.partner__screen div h1 span
)Analysis of the source CSS for the End User Config Wizard will show that there are some Tray-specific classes (such as 'header_123ABC123QWE') for elements in the wizard. These are hashed on deployment so will change regularly. Therefore you should not attempt to use these as customizable classes.
Some elements may require the use of
!important
to take effect. For example, in order to change the color of the 'Next' button...
1.partner__button--next{2background: green!important;3}