mirror of
https://github.com/neocities/neocities.git
synced 2025-04-25 01:32:36 +02:00
remove clunky slow fade animation
This commit is contained in:
parent
215e72d07c
commit
11ad75d932
8 changed files with 12 additions and 12 deletions
|
@ -20,7 +20,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal hide fade" id="deleteEvent<%= event.id %>" tabindex="-1" role="dialog" aria-labelledby="deleteEventLabel<%= event.id %>" aria-hidden="true">
|
<div class="modal hide" id="deleteEvent<%= event.id %>" tabindex="-1" role="dialog" aria-labelledby="deleteEventLabel<%= event.id %>" aria-hidden="true">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button class="close" type="button" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i></button>
|
<button class="close" type="button" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i></button>
|
||||||
<h3 id="addTagLabel">Delete</h3>
|
<h3 id="addTagLabel">Delete</h3>
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<div class="modal hide fade" id="addTag" tabindex="-1" role="dialog" aria-labelledby="addTagLabel" aria-hidden="true">
|
<div class="modal hide" id="addTag" tabindex="-1" role="dialog" aria-labelledby="addTagLabel" aria-hidden="true">
|
||||||
<form method="POST" action="/tags/add">
|
<form method="POST" action="/tags/add">
|
||||||
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
@ -39,7 +39,7 @@
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal hide fade" id="removeTag" tabindex="-1" role="dialog" aria-labelledby="removeTagLabel" aria-hidden="true">
|
<div class="modal hide" id="removeTag" tabindex="-1" role="dialog" aria-labelledby="removeTagLabel" aria-hidden="true">
|
||||||
<form method="POST" action="/tags/remove">
|
<form method="POST" action="/tags/remove">
|
||||||
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
|
|
@ -77,7 +77,7 @@
|
||||||
<input type="hidden" id="deleteFilenameInput" name="filename">
|
<input type="hidden" id="deleteFilenameInput" name="filename">
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div class="modal hide fade" id="deleteConfirmModal" tabindex="-1" role="dialog" aria-labelledby="deleteConfirmModalLabel" aria-hidden="true">
|
<div class="modal hide" id="deleteConfirmModal" tabindex="-1" role="dialog" aria-labelledby="deleteConfirmModalLabel" aria-hidden="true">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button class="close" type="button" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i></button>
|
<button class="close" type="button" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i></button>
|
||||||
<h3 id="deleteConfirmModalLabel">Confirm deletion</h3>
|
<h3 id="deleteConfirmModalLabel">Confirm deletion</h3>
|
||||||
|
@ -91,7 +91,7 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal hide fade" id="renameModal" tabindex="-1" role="dialog" aria-labelledby="renameModalLabel" aria-hidden="true">
|
<div class="modal hide" id="renameModal" tabindex="-1" role="dialog" aria-labelledby="renameModalLabel" aria-hidden="true">
|
||||||
<form method="post" action="/site_files/rename">
|
<form method="post" action="/site_files/rename">
|
||||||
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
||||||
<input type="hidden" value="<%= @dir %>" name="dir">
|
<input type="hidden" value="<%= @dir %>" name="dir">
|
||||||
|
@ -133,7 +133,7 @@
|
||||||
<input id="uploadFiles" type="file" name="file" multiple>
|
<input id="uploadFiles" type="file" name="file" multiple>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<div class="modal hide fade" id="createDir" tabindex="-1" role="dialog" aria-labelledby="createDirLabel" aria-hidden="true">
|
<div class="modal hide" id="createDir" tabindex="-1" role="dialog" aria-labelledby="createDirLabel" aria-hidden="true">
|
||||||
<form method="post" action="/site/create_directory">
|
<form method="post" action="/site/create_directory">
|
||||||
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
||||||
<input type="hidden" value="<%= @dir %>" name="dir">
|
<input type="hidden" value="<%= @dir %>" name="dir">
|
||||||
|
@ -151,7 +151,7 @@
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal hide fade" id="createFile" tabindex="-1" role="dialog" aria-labelledby="createFileLabel" aria-hidden="true">
|
<div class="modal hide" id="createFile" tabindex="-1" role="dialog" aria-labelledby="createFileLabel" aria-hidden="true">
|
||||||
<form method="post" action="/site_files/create">
|
<form method="post" action="/site_files/create">
|
||||||
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
||||||
<input type="hidden" value="<%= @dir %>" name="dir">
|
<input type="hidden" value="<%= @dir %>" name="dir">
|
||||||
|
|
|
@ -64,7 +64,7 @@
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal hide fade" id="deleteSite" tabindex="-1" role="dialog" aria-labelledby="deleteSiteLabel" aria-hidden="true">
|
<div class="modal hide" id="deleteSite" tabindex="-1" role="dialog" aria-labelledby="deleteSiteLabel" aria-hidden="true">
|
||||||
<form method="POST" action="/site/delete">
|
<form method="POST" action="/site/delete">
|
||||||
<%== csrf_token_input_html %>
|
<%== csrf_token_input_html %>
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
|
|
@ -24,7 +24,7 @@
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
|
||||||
<div class="modal hide fade" id="endSupporterConfirm" tabindex="-1" role="dialog" aria-labelledby="endSupporterConfirmLabel" aria-hidden="true">
|
<div class="modal hide" id="endSupporterConfirm" tabindex="-1" role="dialog" aria-labelledby="endSupporterConfirmLabel" aria-hidden="true">
|
||||||
<form method="POST" action="/supporter/end">
|
<form method="POST" action="/supporter/end">
|
||||||
<%== csrf_token_input_html %>
|
<%== csrf_token_input_html %>
|
||||||
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal hide fade" id="deleteSite" tabindex="-1" role="dialog" aria-labelledby="deleteSiteLabel" aria-hidden="true">
|
<div class="modal hide" id="deleteSite" tabindex="-1" role="dialog" aria-labelledby="deleteSiteLabel" aria-hidden="true">
|
||||||
<form method="POST" action="/site/delete">
|
<form method="POST" action="/site/delete">
|
||||||
<%== csrf_token_input_html %>
|
<%== csrf_token_input_html %>
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
|
|
@ -92,7 +92,7 @@
|
||||||
</article>
|
</article>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal hide fade" id="deleteSite" tabindex="-1" role="dialog" aria-labelledby="deleteSiteLabel" aria-hidden="true">
|
<div class="modal hide" id="deleteSite" tabindex="-1" role="dialog" aria-labelledby="deleteSiteLabel" aria-hidden="true">
|
||||||
<form method="POST" action="/site/delete">
|
<form method="POST" action="/site/delete">
|
||||||
<%== csrf_token_input_html %>
|
<%== csrf_token_input_html %>
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
|
|
@ -94,7 +94,7 @@
|
||||||
</div></div>
|
</div></div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="modal hide fade" id="block" tabindex="-1" role="dialog" aria-labelledby="blockLabel" aria-hidden="true">
|
<div class="modal hide" id="block" tabindex="-1" role="dialog" aria-labelledby="blockLabel" aria-hidden="true">
|
||||||
<form method="POST" action="/site/<%= site.username %>/block">
|
<form method="POST" action="/site/<%= site.username %>/block">
|
||||||
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
<input type="hidden" value="<%= csrf_token %>" name="csrf_token">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
|
|
Loading…
Add table
Reference in a new issue