Chromium support

This commit is contained in:
Ludovic Stephan 2020-07-19 22:36:59 +02:00
parent 8cd9434664
commit aa2f691f1e
3 changed files with 23 additions and 17 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -22,34 +22,40 @@ a {
background-color: $primary_color;
padding: 0 1em;
& :first-child {
justify-content: left;
// Workaround : `justify-content : <left/right>` pas encore supporté
// Voir https://developer.mozilla.org/en-US/docs/Web/CSS/justify-content
& :first-child, & :last-child {
justify-content: space-between;
}
& :last-child {
justify-content: right;
flex-direction: row-reverse;
}
}
/* Autocomplétion du BDS */
.highlight {
text-decoration: underline;
font-weight: bold;
}
.yourlabs-autocomplete ul {
list-style: none;
padding: 0;
margin: 0;
}
.yourlabs-autocomplete {
ul {
list-style: none;
padding: 0;
margin: 0;
.yourlabs-autocomplete ul li {
height: 2em;
line-height: 2em;
padding: 0;
}
li {
height: 2em;
line-height: 2em;
padding: 0;
}
.yourlabs-autocomplete ul li.hilight {
background: #e8554e;
li.hilight {
background: #e8554e;
}
}
}
.yourlabs-autocomplete ul li a {