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; left: .1em;
} }
.entete { .entete {
background-color: rgb(36, 33, 32); background-color: rgb(33, 36, 32);
color: rgb(240, 233, 233); color: rgb(240, 233, 233);
} }
.entete a, .footer a { .entete a, .footer a {
@ -39,17 +39,6 @@ li {
text-overflow: ellipsis; text-overflow: ellipsis;
list-style-type: square; 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 { .card:hover {
border: 1px solid rgb(36, 33, 32); border: 1px solid rgb(36, 33, 32);
box-shadow: -3px 3px 10px 2px #aaa; box-shadow: -3px 3px 10px 2px #aaa;

View file

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