Fix css filtrage catégories
This commit is contained in:
parent
6d81735a55
commit
601ba4d116
4 changed files with 30 additions and 2 deletions
17
shared/static/css/filters.scss
Normal file
17
shared/static/css/filters.scss
Normal file
|
@ -0,0 +1,17 @@
|
|||
#filter_form {
|
||||
.form-group {
|
||||
.col-md-3, .col-md-9 {
|
||||
float: none;
|
||||
}
|
||||
ul.form-control {
|
||||
padding-left: 15px;
|
||||
list-style: none;
|
||||
height: auto;
|
||||
|
||||
a.selected {
|
||||
text-decoration: underline;
|
||||
color: darken($main_soft_color, 40%);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -190,6 +190,16 @@ form#filter_form ul.form-control {
|
|||
.tree ul > li:last-child::after {
|
||||
height: 8px; }
|
||||
|
||||
#filter_form .form-group .col-md-3, #filter_form .form-group .col-md-9 {
|
||||
float: none; }
|
||||
#filter_form .form-group ul.form-control {
|
||||
padding-left: 15px;
|
||||
list-style: none;
|
||||
height: auto; }
|
||||
#filter_form .form-group ul.form-control a.selected {
|
||||
text-decoration: underline;
|
||||
color: #c40000; }
|
||||
|
||||
/* MISE EN FORME GÉNÉRALE */
|
||||
html {
|
||||
height: 100%;
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -5,6 +5,7 @@
|
|||
@import 'header';
|
||||
@import 'forms';
|
||||
@import 'tree';
|
||||
@import 'filters';
|
||||
|
||||
/* MISE EN FORME GÉNÉRALE */
|
||||
html {
|
||||
|
|
Loading…
Reference in a new issue