diff --git a/app/views/layouts/_user_menu.html.haml b/app/views/layouts/_user_menu.html.haml index 51701519..e484e3cb 100644 --- a/app/views/layouts/_user_menu.html.haml +++ b/app/views/layouts/_user_menu.html.haml @@ -1,15 +1,15 @@ %li = link_to(edit_user_registration_path) do - %i.icon-wrench + %span.glyphicon.glyphicon-wrench Edit Account -if @conference and @conference.id %li = link_to(conference_proposal_index_path(@conference.short_title)) do - %i.icon-comment + %span.glyphicon.glyphicon-comment My Submissions %li = link_to(destroy_user_session_path, :method=>'delete') do - %i.icon-minus + %span.glyphicon.glyphicon-minus Sign out -if has_role?(current_user, "admin") || has_role?(current_user, "organizer") %li.divider @@ -18,21 +18,21 @@ - @conferences.each do |conference| %li = link_to(admin_conference_path(conference.short_title)) do - %i.icon-cog + %span.glyphicon.glyphicon-cog Manage = conference.short_title %li = link_to(new_admin_conference_path) do - %i.icon-plus + %span.glyphicon.glyphicon-plus New Conference %li.divider %li.dropdown-header People %li = link_to(admin_users_path) do - %i.icon-user + %span.glyphicon.glyphicon-user Users %li = link_to(admin_people_path) do - %i.icon-star-empty - People \ No newline at end of file + %span.glyphicon.glyphicon-star-empty + People diff --git a/app/views/proposal/_form.html.haml b/app/views/proposal/_form.html.haml index 434f7d8d..2d1e456f 100644 --- a/app/views/proposal/_form.html.haml +++ b/app/views/proposal/_form.html.haml @@ -26,7 +26,7 @@ %tbody.files .row-fluid.fileupload-buttonbar .btn.btn-success.fileinput-button - %i.icon-plus.icon-white + %span.glyphicon.glyphicon-icon-plus.icon-white Add files... = f.file_field :attachment = f.hidden_field :event_id, :value => @event.id @@ -72,7 +72,7 @@