mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Magikarp ftw!
This commit is contained in:
parent
8124d7e4f4
commit
cbfc532c6f
3 changed files with 13 additions and 0 deletions
|
@ -388,6 +388,12 @@ div.br {
|
||||||
z-index: 2000;
|
z-index: 2000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.magikarp {
|
||||||
|
.loader{
|
||||||
|
background: rgba(255, 255, 255, 0.5) url(../img/magikarp.gif) center 15% no-repeat;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.with-nyancat {
|
.with-nyancat {
|
||||||
.loader{
|
.loader{
|
||||||
background: rgba(255, 255, 255, 0.5) url(../img/nyancat.gif) center 15% no-repeat;
|
background: rgba(255, 255, 255, 0.5) url(../img/nyancat.gif) center 15% no-repeat;
|
||||||
|
|
BIN
src/img/magikarp.gif
Normal file
BIN
src/img/magikarp.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 391 B |
|
@ -238,6 +238,13 @@
|
||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
// Run Sammy.js application
|
// Run Sammy.js application
|
||||||
app.run('#/');
|
app.run('#/');
|
||||||
|
|
||||||
|
// April fools easter egg ;)
|
||||||
|
var today = new Date();
|
||||||
|
if ((today.getDate() == 1) && (today.getMonth()+1 == 4))
|
||||||
|
{
|
||||||
|
$('#main').addClass("magikarp");
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
})();
|
})();
|
||||||
|
|
Loading…
Reference in a new issue