Merge branch 'master' into update_chat_info

This commit is contained in:
Mickael 2019-08-18 23:15:06 +02:00
commit 6ce4189e61
2 changed files with 2 additions and 12 deletions

View file

@ -9,7 +9,7 @@
left: .1em;
}
.entete {
background-color: rgb(36, 33, 32);
background-color: rgb(33, 36, 32);
color: rgb(240, 233, 233);
}
.entete a, .footer a {
@ -39,17 +39,6 @@ li {
text-overflow: ellipsis;
list-style-type: square;
}
.card li:hover {
overflow: visible;
text-overflow: initial;
position: relative;
z-index: 99;
width: 100%;
}
.card li:hover a {
background-color: #fff;
padding-right: 1em;
}
.card:hover {
border: 1px solid rgb(36, 33, 32);
box-shadow: -3px 3px 10px 2px #aaa;

View file

@ -31,6 +31,7 @@ $(document).ready(function() {
var link = $("<a>")
.attr("href", "https://idees.crapaud-fou.org/" + index)
.attr("class", "list-item")
.attr("title", idee)
.text(idee);
var li = $("<li>").append(link);
$(".idees ul").append(li);