mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
Compare commits
2 commits
dev
...
debian/4.2
Author | SHA1 | Date | |
---|---|---|---|
|
9a43eccffd | ||
|
43611ede4c |
4 changed files with 25 additions and 0 deletions
|
@ -144,6 +144,11 @@ export default {
|
|||
if (today.getDate() === 1 && today.getMonth() + 1 === 4) {
|
||||
this.$store.commit('SET_SPINNER', 'magikarp')
|
||||
}
|
||||
|
||||
// Halloween easter egg ;)
|
||||
if (today.getDate() === 31 && today.getMonth() + 1 === 10) {
|
||||
this.$store.commit('SET_SPINNER', 'spookycat')
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
BIN
app/src/assets/spinners/spookycat.gif
Normal file
BIN
app/src/assets/spinners/spookycat.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.4 KiB |
|
@ -103,5 +103,19 @@ export default {
|
|||
99% { transform: scale(-1, 1); margin-left: 0;}
|
||||
}
|
||||
}
|
||||
|
||||
&.spookycat {
|
||||
height: 40px;
|
||||
width: 65px;
|
||||
background-image: url('../../assets/spinners/spookycat.gif');
|
||||
animation-name: back-and-forth-spookycat;
|
||||
|
||||
@keyframes back-and-forth-spookycat {
|
||||
0%, 100% { transform: scale(1, 1); margin-left: 0; }
|
||||
49% { transform: scale(1, 1); margin-left: calc(100% - 100px);}
|
||||
50% { transform: scale(-1, 1); margin-left: calc(100% - 100px);}
|
||||
99% { transform: scale(-1, 1); margin-left: 0;}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
6
debian/changelog
vendored
6
debian/changelog
vendored
|
@ -1,3 +1,9 @@
|
|||
yunohost-admin (4.2.5.1) stable; urgency=low
|
||||
|
||||
- [enh] Spooky easter egg ;) (43611ede)
|
||||
|
||||
-- Alexandre Aubin <alex.aubin@mailoo.org> Sun, 24 Oct 2021 23:39:41 +0200
|
||||
|
||||
yunohost-admin (4.2.5) stable; urgency=low
|
||||
|
||||
- [fix] user password change not working properly (c26c4c9)
|
||||
|
|
Loading…
Add table
Reference in a new issue