Using active css class to display which procedure is selected on dossiers#index
This commit is contained in:
parent
62f64d2bea
commit
4717d72dde
5 changed files with 8 additions and 5 deletions
|
@ -45,6 +45,7 @@ h5 span {
|
||||||
#procedure_list {
|
#procedure_list {
|
||||||
margin-left: -10px;
|
margin-left: -10px;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
|
margin-top: 10px;
|
||||||
a, a:hover {
|
a, a:hover {
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#action-block {
|
#action-block {
|
||||||
|
margin-right: 10px;
|
||||||
.action {
|
.action {
|
||||||
background-color: #E45B51;
|
background-color: #E45B51;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -30,7 +31,7 @@
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
border: none;
|
border: none;
|
||||||
width: 200px;
|
width: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#menu-block {
|
#menu-block {
|
||||||
|
@ -45,6 +46,7 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
width: 200px;
|
width: 200px;
|
||||||
|
margin-top: 20px;
|
||||||
}
|
}
|
||||||
.tips {
|
.tips {
|
||||||
margin: 0 10px 0 5px;
|
margin: 0 10px 0 5px;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#search-block{
|
#search-block{
|
||||||
margin: 11px 5px 0 0;
|
margin: 15px 10px 0 0;
|
||||||
height: 50px;
|
height: 50px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -14,6 +14,6 @@
|
||||||
%div.split-hr-left
|
%div.split-hr-left
|
||||||
#procedure_list
|
#procedure_list
|
||||||
- @facade_data_view.gestionnaire_procedures_name_and_id_list.each do |procedure|
|
- @facade_data_view.gestionnaire_procedures_name_and_id_list.each do |procedure|
|
||||||
= link_to backoffice_dossiers_procedure_path(procedure[:id]),{title: procedure[:libelle]} do
|
= link_to backoffice_dossiers_procedure_path(procedure[:id]), {title: procedure[:libelle]} do
|
||||||
%div.procedure_list_element
|
%div.procedure_list_element{ class: ('active' if procedure[:id] == @facade_data_view.procedure.id) }
|
||||||
= truncate(procedure[:libelle], length: 50)
|
= truncate(procedure[:libelle], length: 50)
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
%div.col-lg-8.col-md-8.main-info
|
%div.col-lg-8.col-md-8.main-info
|
||||||
=@facade_data_view.procedure_id.nil? ? "Tous les dossiers" : truncate(@facade_data_view.procedure.libelle, {length: 50})
|
= @facade_data_view.procedure_id.nil? ? "Tous les dossiers" : truncate(@facade_data_view.procedure.libelle, {length: 50})
|
||||||
%div.col-lg-3.col-md-3.options
|
%div.col-lg-3.col-md-3.options
|
||||||
%div.row
|
%div.row
|
||||||
%div.col-lg-12.col-md-12
|
%div.col-lg-12.col-md-12
|
||||||
|
|
Loading…
Reference in a new issue