Adding right caret class to navbar options for right pannel modal, also changing callback from hover sign_out, to use mouseover instead
This commit is contained in:
parent
df36b9bd35
commit
5556775ee9
3 changed files with 15 additions and 1 deletions
|
@ -12,7 +12,9 @@ function init_default_data_block() {
|
||||||
|
|
||||||
$('#sign_out').hover(function () {
|
$('#sign_out').hover(function () {
|
||||||
$(this).find('#credentials').toggle();
|
$(this).find('#credentials').toggle();
|
||||||
}, function() {
|
});
|
||||||
|
|
||||||
|
$('#sign_out').mouseout(function() {
|
||||||
$(this).find('credentials').toggle();
|
$(this).find('credentials').toggle();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -67,6 +67,16 @@
|
||||||
line-height: 40px;
|
line-height: 40px;
|
||||||
height: 40px;
|
height: 40px;
|
||||||
}
|
}
|
||||||
|
.caret-right {
|
||||||
|
border-bottom: 4px solid transparent;
|
||||||
|
border-top: 4px solid transparent;
|
||||||
|
border-left: 4px solid;
|
||||||
|
display: inline-block;
|
||||||
|
height: 0;
|
||||||
|
margin: 8px 2px 0 5px;
|
||||||
|
vertical-align: top;
|
||||||
|
width: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#sign_in{
|
#sign_in{
|
||||||
|
@ -195,3 +205,4 @@
|
||||||
font-size: 20px;
|
font-size: 20px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@
|
||||||
%a.button_navbar#pref_list_dossier_open_action{href: '#', type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
%a.button_navbar#pref_list_dossier_open_action{href: '#', type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
||||||
%i.fa.fa-pencil
|
%i.fa.fa-pencil
|
||||||
Modifier le tableau
|
Modifier le tableau
|
||||||
|
%span.caret-right
|
||||||
%div.row
|
%div.row
|
||||||
%div.col-lg-12.col-md-12
|
%div.col-lg-12.col-md-12
|
||||||
= render partial: "dossiers/download_dossiers"
|
= render partial: "dossiers/download_dossiers"
|
||||||
|
|
Loading…
Reference in a new issue