diff --git a/app/assets/stylesheets/application.scss b/app/assets/stylesheets/application.scss index 2657cbc..5250e9e 100644 --- a/app/assets/stylesheets/application.scss +++ b/app/assets/stylesheets/application.scss @@ -349,14 +349,3 @@ select::-ms-expand { max-height: 60vh; overflow-y: auto; } - -.prev_next_links .disabled, .prev_next_links .disabled:hover, .prev_next_links .disabled:focus { - color: #6c757d; - background-color: #fff; - border: 1px solid #e0ddd3; - cursor: not-allowed; -} - -.admin-edit a { - text-decoration: underline; -} \ No newline at end of file diff --git a/app/views/resources/index.html.erb b/app/views/resources/index.html.erb index b891250..52291fd 100644 --- a/app/views/resources/index.html.erb +++ b/app/views/resources/index.html.erb @@ -34,9 +34,9 @@ <%= resource.sample %> <%= resource.resource_type %> <% if admin_user? %> - <%= link_to 'Show', resource %> - <%= link_to 'Edit', edit_resource_path(resource) %> - <%= link_to 'Destroy', resource, method: :delete, data: { confirm: 'Are you sure?' } %> + <%= link_to 'Show', resource, style: "text-decoration: underline" %> + <%= link_to 'Edit', edit_resource_path(resource), style: "text-decoration: underline" %> + <%= link_to 'Destroy', resource, method: :delete, data: { confirm: 'Are you sure?' }, style: "text-decoration: underline" %> <% end %> <% end %>