Multi lang docs
This commit is contained in:
parent
380858dfb2
commit
9045cbbd3f
155 changed files with 24615 additions and 8 deletions
16
docs/_static/css/translation-hint.css
vendored
Normal file
16
docs/_static/css/translation-hint.css
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
#translation-closer {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.translation-hint {
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
bottom: 20px;
|
||||
right: 20px;
|
||||
background-color: #c9c9c9;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.translation-hint h1 {
|
||||
font-size: 20px;
|
||||
}
|
||||
7
docs/_static/js/translation-hint.js
vendored
Normal file
7
docs/_static/js/translation-hint.js
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
hideTranslationHint = function() {
|
||||
document.getElementsByClassName("translation-hint")[0].style.display = "none"
|
||||
}
|
||||
|
||||
window.onload = function() {
|
||||
document.getElementById("translation-closer").addEventListener("click", hideTranslationHint);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue