Use more specific names for the version picker CSS classes and add them to the PurgeCSS safelist (#2264)

main
Johannes Marbach 3 days ago committed by GitHub
parent 705240da72
commit 13aa6e83ae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -44,10 +44,10 @@ function appendVersion(parent, name, segment, url) {
// The list item // The list item
const li = document.createElement("li"); const li = document.createElement("li");
if (segment === selected) { if (segment === selected) {
li.classList.add("selected"); li.classList.add("version-picker-selected");
} }
if (segment === "latest") { if (segment === "latest") {
li.classList.add("latest"); li.classList.add("version-picker-latest");
} }
parent.appendChild(li); parent.appendChild(li);

@ -57,18 +57,13 @@ Custom SCSS for the Matrix spec
overflow-y: auto; overflow-y: auto;
} }
/* As these styles are only applied by JavaScript, PurgeCSS doesn't see them ul#version-selector li.version-picker-selected a {
* in the source code and removes them unless we explicitly tell it not to.
*/
/* purgecss start ignore */
ul#version-selector li.selected a {
font-weight: bold; font-weight: bold;
} }
ul#version-selector li.latest a { ul#version-selector li.version-picker-latest a {
color: $secondary; color: $secondary;
} }
/* purgecss end ignore */
} }
/* Styles for the sidebar nav */ /* Styles for the sidebar nav */

@ -0,0 +1 @@
Add version picker in the navbar.

@ -16,6 +16,9 @@ const purgecss = require('@fullhuman/postcss-purgecss')({
extensions: ["json"], extensions: ["json"],
}, },
], ],
// As these classes are only applied by JavaScript, PurgeCSS doesn't see them
// in the source code and removes them unless we explicitly tell it not to.
safelist: ['version-picker-selected', 'version-picker-latest']
}); });
module.exports = { module.exports = {

Loading…
Cancel
Save