This sample shows how to inject a custom Cascading Style Sheet (CSS) on modern pages.
Note: This code is provided as a sample only. Keep in mind that Microsoft may change page elements and styles at any time, rendering your custom CSS useless. It is preferrable to use well-known HTML element placeholders.
When you need to make minor cosmetic changes to modern pages (e.g.: match your corporate branding guidelines) and cannot use placeholders,you can create a custom CSS and inject on every modern page.
In this example, we deploy the CSS in a shared location; this allows us to change the CSS file at any time without re-deploying or re-configuring the application customizer.
You can deploy the application customizer with different settings to point to different CSS files.
Please refrain from making drastic changes that may negatively impact your users' experience. If you experience issues with modern pages, please try disabling the extension before calling Microsoft Support to ensure that the issue isn't caused by your custom CSS.
Solution | Author(s) |
---|---|
react-application-injectcss | Hugo Bernier (Tahoe Ninjas, @bernierh) |
Version | Date | Comments |
---|---|---|
1.0.0 | 07 May, 2018 | Initial release |
1.1.0 | 18 October, 2018 | Updated to SPFx 1.6 |
1.2.0 | 28 March, 2018 | Updated to SPFx 1.8 |
1.3.0 | 4 Sept, 2019 | Updated to SPFx 1.9.1 |
THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
- create a custom CSS file that meets your needs. For example, this CSS will change the feedback button's background color to orange.
.sitePage-uservoice-button {
background-color: orange;
}
- Upload the CSS file as
custom.css
to yourStyles Library
of the root site collection (i.e.:https://<yourtenant>.sharepoint.com/Style%20Library/Forms/AllItems.aspx
). - Navigate to your site. Your custom CSS should be applied.
For example, the CSS provided above will make the feedback button appear as follows:
- clone repo
- Ryn
npm install
gulp bundle --ship gulp package-solution --ship
- Upload the
react-application-injectcss.sppkg
from thesharepoint
folder to your App catalog. - When prompted to deploy to all sites, choose the option that suits your needs.
To simplify deployment, the extension looks for a custom.css
in your tenant's root Style Library
. If you wish to use a different CSS name and location, use one of the following approaches:
This approach will change the default css location in the solution so that it will automatically load your custom CSS when the extension is deployed.
Note that if you intend to deploy this extension tenant-wide, your custom CSS URL should be an absolute URL or a server-relative URL.
- Locate the
elements.xml
file, in thesharepoint
>assets
folder - Change the
ClientSideComponentProperties
to point to your custom CSS URL. - Run
gulp bundle --ship
- Run
gulp package-solution --ship
- Upload the
react-application-injectcss.sppkg
from thesharepoint
folder to your App catalog. - When prompted to deploy to all sites, choose the option that suits your needs.
Sample SharePoint Framework Application Customiser which injects a custom CSS in the HTML header.
This sample illustrates the following concepts on top of the SharePoint Framework:
- HTML manipulation