grandlyon-sau: restyle forms buttons (#26107)

Hide 'cancel' button and re-order next and previous buttons.
This commit is contained in:
Serghei Mihai 2018-09-11 11:49:47 +02:00
parent a5b4180fe6
commit 41a4b12602
1 changed files with 18 additions and 0 deletions

View File

@ -202,6 +202,24 @@ div.cell > div {
background-color: $input-background-color;
}
}
div.submit {
@include flexbox();
}
div.SubmitWidget {
&.submit-button {
order: 1;
button {
background-color: $primary-color;
color: #ffffff;
}
}
&.previous-button {
order: 0;
}
&.cancel-button {
display: none;
}
}
}
}
div.linkcell {