1
0
Fork 0
forked from DGNum/gestioCOF

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
bds/static

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,35 +22,41 @@ 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 {
.yourlabs-autocomplete {
ul {
list-style: none;
padding: 0;
margin: 0;
}
.yourlabs-autocomplete ul li {
li {
height: 2em;
line-height: 2em;
padding: 0;
}
.yourlabs-autocomplete ul li.hilight {
li.hilight {
background: #e8554e;
}
}
}
.yourlabs-autocomplete ul li a {
color: inherit;