fix conflict with fa-ul and floatbutton (different with top or bottom)

This commit is contained in:
Mathieu Jaumotte 2021-09-06 16:36:27 +02:00
parent f4ce634061
commit 6e57d16ebf

View File

@ -260,8 +260,7 @@ div.wrap-header {
/* /*
* FLOATBUTTON * FLOATBUTTON
* pas convaincant: * p-ê pas convaincant: cet asset est toujours en observation
* conflits avec les fa-ul > li, lien non cliquables, text qui ne se place pas correctement
*/ */
div.floatbutton { div.floatbutton {
@ -278,6 +277,11 @@ div.floatbutton {
div.action { div.action {
padding: 0 0 1em 1em; padding: 0 0 1em 1em;
} }
// avoid a position relative that make links unclickable
.fa-ul > li {
position: initial;
}
} }
&.bottom { &.bottom {
display: flex; display: flex;
@ -301,9 +305,4 @@ div.floatbutton {
background-color: #00ffffa3; background-color: #00ffffa3;
} }
} }
// avoid a position relative that make links unclickable
.fa-ul > li {
//position: initial; // in conflict with picto fa-ul !!
}
} }