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:
JC 2016-12-05 15:14:39 +01:00
parent df36b9bd35
commit 5556775ee9
3 changed files with 15 additions and 1 deletions

View file

@ -12,7 +12,9 @@ function init_default_data_block() {
$('#sign_out').hover(function () {
$(this).find('#credentials').toggle();
}, function() {
});
$('#sign_out').mouseout(function() {
$(this).find('credentials').toggle();
});

View file

@ -67,6 +67,16 @@
line-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{
@ -195,3 +205,4 @@
font-size: 20px;
}
}

View file

@ -6,6 +6,7 @@
%a.button_navbar#pref_list_dossier_open_action{href: '#', type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
%i.fa.fa-pencil
Modifier le tableau
%span.caret-right
%div.row
%div.col-lg-12.col-md-12
= render partial: "dossiers/download_dossiers"