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