révision
b1ac8d82f7
4 fichiers modifiés avec 16 ajouts et 12 suppressions
|
@ -2,7 +2,7 @@
|
|||
.nightswitch {
|
||||
position: fixed;
|
||||
top: 12px;
|
||||
right: 48px;
|
||||
right: 12px;
|
||||
}
|
||||
.nightswitch > a > img {
|
||||
width: 24px;
|
||||
|
@ -43,7 +43,7 @@
|
|||
}
|
||||
#container.cont-view {
|
||||
background: #29363d url(/img/megumin.png) no-repeat;
|
||||
background-size: 75px, 100px;
|
||||
background-size: 75px;
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -178,6 +178,7 @@ div.container div.blockBody:nth-of-type(2) table tr:first-of-type th:last-of-typ
|
|||
max-height: 80vh;
|
||||
}
|
||||
|
||||
/* the curved edges triggered my autism */
|
||||
.navbar {
|
||||
border-radius: 0px;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
.nightswitch {
|
||||
position: fixed;
|
||||
top: 12px;
|
||||
right: 48px;
|
||||
right: 12px;
|
||||
}
|
||||
.nightswitch > a > img {
|
||||
width: 24px;
|
||||
|
@ -43,7 +43,7 @@
|
|||
}
|
||||
#container.cont-view {
|
||||
background: white url(/img/renchon.png) no-repeat;
|
||||
background-size: 75px, 100px;
|
||||
background-size: 61px;
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
// Night mode
|
||||
var night = localStorage.getItem("night");
|
||||
if (night == "true") {
|
||||
$("#style")[0].href = "/css/style-night.css";
|
||||
$("#nighticon")[0].src = "/img/sun.png";
|
||||
}
|
||||
|
||||
function toggleNightMode() {
|
||||
var night = localStorage.getItem("night");
|
||||
if(night == "true") {
|
||||
|
|
|
@ -27,6 +27,15 @@
|
|||
|
||||
<!-- Website CSS -->
|
||||
<link rel="stylesheet" id="style" href="{{.URL.Parse "/css/style.css"}}">
|
||||
<script type="text/javascript">
|
||||
// Inlined here to allow early style switch
|
||||
if (localStorage.getItem("night") == "true") {
|
||||
document.getElementById("style").href = "/css/style-night.css";
|
||||
document.body.addEventListener("load", function() {
|
||||
document.getElementById("nighticon").src = "/img/sun.png";
|
||||
}, false);
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body>
|
||||
<nav class="navbar navbar-default" id="mainmenu">
|
||||
|
@ -55,7 +64,7 @@
|
|||
{{block "search_button" .}}{{end}}
|
||||
</div>
|
||||
</form>
|
||||
<div class="nightswitch" style="position:absolute;right:1em">
|
||||
<div class="nightswitch">
|
||||
<a href="javascript:toggleNightMode();" ><img id="nighticon" src="/img/moon.png"></a>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Référencer dans un nouveau ticket