add message about reduced team during holidays

This commit is contained in:
Frédéric Péters 2018-12-26 13:58:01 +01:00
parent 23d29e443a
commit dc357c19af
2 changed files with 12 additions and 0 deletions

View File

@ -110,6 +110,10 @@ function alter_new_issue_page() {
}
$(function() {
var $top_info = $('<div id="top-info"></div>');
$top_info.text("🎄 Entr'ouvert fonctionne à équipe réduite pendant les fêtes, retour dès le 2 janvier 2019. 🎄");
$('#content').prepend($top_info);
$('.wiki table tr:first-child td').on('click', sort_table).css('cursor', 'row-resize');
/* 440 is header image height (500px) - header height (60px) */

View File

@ -380,3 +380,11 @@ div.jenkins-FAILURE {
div.journal ul.details {
color: inherit;
}
div#top-info {
border: 3px solid #38de38;
background: white;
padding: 1rem 2rem;
font-size: 130%;
text-align: center;
}