Minor html/css change
This commit is contained in:
parent
d3ab6f8619
commit
2e2424ec3f
2 changed files with 26 additions and 25 deletions
|
@ -1,6 +1,17 @@
|
|||
#switch-menu {
|
||||
position: fixed;
|
||||
left: 10px;
|
||||
bottom: 10px;
|
||||
z-index: 300;
|
||||
color:#ffffff;
|
||||
list-style: none;
|
||||
text-decoration : none;
|
||||
padding-left: 20px;
|
||||
|
||||
}
|
||||
|
||||
#switch-menu a, #switch-menu a:link , #switch-menu a:visited , #switch-menu a:hover {
|
||||
text-decoration : none;
|
||||
color:#ffffff;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -1,25 +1,15 @@
|
|||
- if SwitchDeviseProfileService.new(warden).multiple_devise_profile_connect?
|
||||
#switch-menu.dropdown.dropup
|
||||
%button.btn.btn-default.dropdown-toggle{ type: :button, 'data-toggle' => 'dropdown', 'aria-haspopup' => true, 'aria-expanded' => false }
|
||||
%i.fa.fa-toggle-on
|
||||
%span.caret
|
||||
%ul.dropdown-menu.dropdown-menu-left
|
||||
- if user_signed_in?
|
||||
%li
|
||||
= link_to(dossiers_path, id: :menu_item_procedure) do
|
||||
%i.fa.fa-user
|
||||
|
||||
Usager
|
||||
- if gestionnaire_signed_in?
|
||||
%li
|
||||
= link_to(gestionnaire_procedures_path) do
|
||||
%i.fa.fa-user
|
||||
|
||||
Instructeur
|
||||
|
||||
- if administrateur_signed_in?
|
||||
%li
|
||||
= link_to(admin_procedures_path) do
|
||||
%i.fa.fa-user
|
||||
|
||||
Administrateur
|
||||
%ul#switch-menu
|
||||
%li Tester en tant que...
|
||||
- if user_signed_in?
|
||||
%li
|
||||
= link_to(dossiers_path, id: :menu_item_procedure, title:'Aller dans votre espace usager. Vous pourrez revenir ici ensuite') do
|
||||
%i.fa.fa-users
|
||||
|
||||
Usager
|
||||
- if gestionnaire_signed_in?
|
||||
%li
|
||||
= link_to(gestionnaire_procedures_path, title:'Aller dans votre espace instructeur. Vous pourrez revenir ici ensuite.') do
|
||||
%i.fa.fa-user
|
||||
|
||||
Instructeur
|
||||
|
|
Loading…
Reference in a new issue