How to: Make custom CSS files themable in SharePoint 2013
Working with the SharePoint Theming Engine
You can even define custom names/properties in your .spcolor files which can be used in your custom CSS. My colleague Matt Holden has a great post on this here:
Custom .spcolor files for SharePoint Composed Looks
We were using this method in one of our SharePoint Online projects along with Gulp tasks to bundle and minify all our JavaScript/CSS files as per my previous post Simple bundle, minify and upload JS to SharePoint using Gulp
Now, the SharePoint theming engine uses CSS comments to determine the color replacement:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.myClass p { | |
/* [ReplaceColor(themeColor:"ContentAccent1")] */ | |
background-color: #4b9461; | |
} | |
a#announcements .alert { | |
/* [ReplaceColor(themeColor:"ContentAccent2")] */ | |
color: #225A40; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<s:colorPalette isInverted="false" previewSlot1="BackgroundOverlay" previewSlot2="BodyText" previewSlot3="AccentText" xmlns:s="http://schemas.microsoft.com/sharepoint/"> | |
<s:color name="TileText" value="FFFFFF" /> | |
<s:color name="TileBackgroundOverlay" value="7F000000" /> | |
<!-- Custom Dark Green --> | |
<s:color name="ContentAccent1" value="225A40" /> | |
<!-- Custom Muted Green --> | |
<s:color name="ContentAccent2" value="4b9461" /> | |
</s:colorPalette> |
When I minified the Themable.css file using the clean-css gulp plugin, it stripped out all the comments which made the replacement not work:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.myClass p{background-color:#4b9461}a#announcements .alert{color:#225A40} |
Adding an exclamation mark before the comment was not going to work as that would be invalid syntax for the SharePoint theming engine.
So my final solution was to convert the ReplaceColor comment to a special comment before processing it through the minifier, then letting the minifier do it's thing by minifying the css file but preserving the special comments, and then after the minification, again converting the special comment to a regular comment suitable for the SharePoint theming engine:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var cleanCSS = require('gulp-clean-css'); | |
var replace = require('gulp-replace'); | |
var rename = require('gulp-rename'); | |
gulp.task('minify-css', function () { | |
gulp.src("./Styles/**/*.css") | |
.pipe(replace("/* [", "/*! [")) //convert all SP Replace comments to special comments | |
.pipe(cleanCSS({ keepSpecialComments: "*" })) //Preserve all special comments | |
.pipe(replace("/*! [", "/* [")) //convert the special comments back to SP Replace comments | |
.pipe(rename({ | |
suffix: '.min' | |
})) | |
.pipe(gulp.dest("./Output/")); | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.myClass p{/* [ReplaceColor(themeColor:"ContentAccent1")] */background-color:#4b9461}a#announcements .alert{/* [ReplaceColor(themeColor:"ContentAccent2")] */color:#225A40} |
No comments:
Post a Comment