|
|
|
@ -75,13 +75,13 @@ if (location.search.length > 0) { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
var vars = { |
|
|
|
var vars = { |
|
|
|
'background': themes[ui.theme].background.normal, |
|
|
|
'@background': themes[ui.theme].background.normal, |
|
|
|
'background_halftone': themes[ui.theme].background.halftone, |
|
|
|
'@background_halftone': themes[ui.theme].background.halftone, |
|
|
|
'foreground': themes[ui.theme].foreground.normal, |
|
|
|
'@foreground': themes[ui.theme].foreground.normal, |
|
|
|
'foreground_halftone': themes[ui.theme].foreground.halftone, |
|
|
|
'@foreground_halftone': themes[ui.theme].foreground.halftone, |
|
|
|
'link_fresh': themes[ui.theme].link.fresh, |
|
|
|
'@link_fresh': themes[ui.theme].link.fresh, |
|
|
|
'link_visited': themes[ui.theme].link.visited, |
|
|
|
'@link_visited': themes[ui.theme].link.visited, |
|
|
|
'link_hover': themes[ui.theme].link.hover |
|
|
|
'@link_hover': themes[ui.theme].link.hover |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
var fontURL = "https://fonts.googleapis.com/" + |
|
|
|
var fontURL = "https://fonts.googleapis.com/" + |
|
|
|
@ -92,7 +92,7 @@ var fontURL = "https://fonts.googleapis.com/" + |
|
|
|
if(ui["header-font"] || ui["text-font"]) { |
|
|
|
if(ui["header-font"] || ui["text-font"]) { |
|
|
|
injection = ["header-font", "text-font"].reduce(function(acc, font){ |
|
|
|
injection = ["header-font", "text-font"].reduce(function(acc, font){ |
|
|
|
if(ui[font]) { |
|
|
|
if(ui[font]) { |
|
|
|
vars[font.replace(/-/, "_")] = ui[font].replace(/\+/g," "); |
|
|
|
vars["@" + font.replace(/-/, "_")] = ui[font].replace(/\+/g," "); |
|
|
|
return acc + "|" + ui[font]; |
|
|
|
return acc + "|" + ui[font]; |
|
|
|
} else return acc; |
|
|
|
} else return acc; |
|
|
|
}, ""); |
|
|
|
}, ""); |
|
|
|
@ -108,10 +108,6 @@ fileref.setAttribute("type", "text/css") |
|
|
|
fileref.setAttribute("href", fontURL) |
|
|
|
fileref.setAttribute("href", fontURL) |
|
|
|
document.getElementsByTagName("head")[0].appendChild(fileref) |
|
|
|
document.getElementsByTagName("head")[0].appendChild(fileref) |
|
|
|
|
|
|
|
|
|
|
|
var less = { modifyVars: vars }; |
|
|
|
function onLoad () { |
|
|
|
var script = document.createElement("script"); |
|
|
|
if(ui.theme != "default") less.modifyVars(vars); |
|
|
|
script.type = "text/javascript"; |
|
|
|
} |
|
|
|
script.src = "//cdnjs.cloudflare.com/ajax/libs/less.js/2.1.2/less.min.js"; |
|
|
|
|
|
|
|
document.head.appendChild(script); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function onLoad () {} |
|
|
|
|
|
|
|
|