Global Style
CSS styling that should apply to all content and all layouts added to the launchpad, independent of the UI5 version and/or theme you apply in the General tab of the Launchpad tool, can be added in the Global Style tool. CSS added in the Global Style tool will apply globally to all content, like tiles and tile groups.
You can also add CSS style in the header section, but CSS added there is placed before the UI5 library files. |
CSS added in the Global Style tool is placed dynamically below the UI5 library
CSS files, so that you can target UI5 classes without resorting to the !important
property.
An example of css
:root {
--lightPrimaryColor: #91c8f6
}
.sun-editor .se-wrapper .se-wrapper-inner {
user-select: all;
-o-user-select: all;
-moz-user-select: all;
-khtml-user-select: all;
-webkit-user-select: all;
-ms-user-select: all;
}