We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6573504 commit c1be80eCopy full SHA for c1be80e
templates/switchers.js
@@ -41,9 +41,12 @@ const _create_placeholders_if_missing = () => {
41
if (item.innerText.toLowerCase().includes("documentation")) {
42
const container = document.createElement("li");
43
container.className = "switchers";
44
+ container.style.display = "inline-flex";
45
for (const placeholder_name of ["language", "version"]) {
46
const placeholder = document.createElement("div");
47
placeholder.className = `${placeholder_name}_switcher_placeholder`;
48
+ placeholder.style.marginRight = "5px";
49
+ placeholder.style.paddingLeft = "5px";
50
container.appendChild(placeholder);
51
}
52
item.parentElement.insertBefore(container, item);
0 commit comments