layout fixes
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
|
@import "../common/000_vars.css.scss";
|
||||||
|
|
||||||
div#c-favorites {
|
div#c-favorites {
|
||||||
section#content > h1 {
|
section#content > h1 {
|
||||||
display: none;
|
font-size: $h3_size;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,2 +0,0 @@
|
|||||||
module PostModerationDetailsHelper
|
|
||||||
end
|
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<section id="content">
|
<section id="content">
|
||||||
<h1>Posts</h1>
|
<h1>Favorites</h1>
|
||||||
|
|
||||||
<%= @favorite_set.presenter.post_previews_html(self) %>
|
<%= @favorite_set.presenter.post_previews_html(self) %>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<div id="c-forum-topics">
|
<div id="c-forum-topics">
|
||||||
<div id="a-search">
|
<div id="a-search">
|
||||||
<h1>Search Forum Posts</h1>
|
<h1>Search Forum</h1>
|
||||||
<%= simple_form_for @search do |f| %>
|
<%= simple_form_for @search do |f| %>
|
||||||
<%= f.input :topic_title_matches, :label => "Title", :required => false %>
|
<%= f.input :topic_title_matches, :label => "Title", :required => false %>
|
||||||
<%= f.input :body_matches, :label => "Body", :required => false %>
|
<%= f.input :body_matches, :label => "Body", :required => false %>
|
||||||
|
|||||||
@@ -50,10 +50,10 @@
|
|||||||
</li>
|
</li>
|
||||||
<li><strong>Uploader</strong>: <%= link_to(post.uploader.name, user_path(post.uploader_id)) %> <%= time_ago_in_words(post.created_at) %> ago</li>
|
<li><strong>Uploader</strong>: <%= link_to(post.uploader.name, user_path(post.uploader_id)) %> <%= time_ago_in_words(post.created_at) %> ago</li>
|
||||||
<% if post.is_flagged? %>
|
<% if post.is_flagged? %>
|
||||||
<li><strong>Flagged</strong>: <%= post_flag_reason(post) %></li>
|
<li><strong>Flagged</strong>: <%= post_flag_reasons(post) %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% if (post.is_flagged? || post.is_deleted?) && post.appeals.any? %>
|
<% if (post.is_flagged? || post.is_deleted?) && post.appeals.any? %>
|
||||||
<li><strong>Appeals</strong>: <%= post_appeal_reason(post) %></li>
|
<li><strong>Appeals</strong>: <%= post_appeal_reasons(post) %></li>
|
||||||
<% end %>
|
<% end %>
|
||||||
<li><strong>Hidden</strong>: <%= post.disapprovals.count %></li>
|
<li><strong>Hidden</strong>: <%= post.disapprovals.count %></li>
|
||||||
<li><strong>Tags</strong>: <%= post.tag_string %></li>
|
<li><strong>Tags</strong>: <%= post.tag_string %></li>
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<div id="c-note-versions">
|
<div id="c-note-versions">
|
||||||
<div id="a-index">
|
<div id="a-index">
|
||||||
|
<h1>Note Changes</h1>
|
||||||
|
|
||||||
<table width="100%" class="striped">
|
<table width="100%" class="striped">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<div id="c-notes">
|
<div id="c-notes">
|
||||||
<div id="a-search">
|
<div id="a-search">
|
||||||
|
<h1>Search Notes</h1>
|
||||||
|
|
||||||
<%= simple_form_for @search do |f| %>
|
<%= simple_form_for @search do |f| %>
|
||||||
<%= f.input :body_matches, :label => "Body", :required => false %>
|
<%= f.input :body_matches, :label => "Body", :required => false %>
|
||||||
<%= f.input :post_tag_match, :label => "Tags", :required => false %>
|
<%= f.input :post_tag_match, :label => "Tags", :required => false %>
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<div id="c-post-versions">
|
<div id="c-post-versions">
|
||||||
<div id="a-index">
|
<div id="a-index">
|
||||||
|
<h1>Changes</h1>
|
||||||
|
|
||||||
<% if @post_versions.empty? %>
|
<% if @post_versions.empty? %>
|
||||||
<%= render "post_sets/blank" %>
|
<%= render "post_sets/blank" %>
|
||||||
<% else %>
|
<% else %>
|
||||||
@@ -11,5 +13,5 @@
|
|||||||
<%= render "secondary_links" %>
|
<%= render "secondary_links" %>
|
||||||
|
|
||||||
<% content_for(:page_title) do %>
|
<% content_for(:page_title) do %>
|
||||||
Post Versions - <%= Danbooru.config.app_name %>
|
Post Changes - <%= Danbooru.config.app_name %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<div id="c-post-versions">
|
<div id="c-post-versions">
|
||||||
<div id="a-search">
|
<div id="a-search">
|
||||||
|
<h1>Search Changes</h1>
|
||||||
|
|
||||||
<div id="search">
|
<div id="search">
|
||||||
<%= simple_form_for(@search) do |f| %>
|
<%= simple_form_for(@search) do |f| %>
|
||||||
<%= f.input :updater_name_eq, :label => "User", :required => false %>
|
<%= f.input :updater_name_eq, :label => "User", :required => false %>
|
||||||
@@ -13,5 +15,5 @@
|
|||||||
<%= render "secondary_links" %>
|
<%= render "secondary_links" %>
|
||||||
|
|
||||||
<% content_for(:page_title) do %>
|
<% content_for(:page_title) do %>
|
||||||
Search Post Versions - <%= Danbooru.config.app_name %>
|
Search Post Changes - <%= Danbooru.config.app_name %>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
</aside>
|
</aside>
|
||||||
|
|
||||||
<section id="content">
|
<section id="content">
|
||||||
<h1>Posts</h1>
|
<h1>Tag Subscriptions</h1>
|
||||||
|
|
||||||
<%= @post_set.presenter.post_previews_html(self) %>
|
<%= @post_set.presenter.post_previews_html(self) %>
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<div id="c-uploads">
|
<div id="c-uploads">
|
||||||
<div id="a-new">
|
<div id="a-new">
|
||||||
<h1>Upload Post</h1>
|
<h1>Upload</h1>
|
||||||
|
|
||||||
<div id="upload-guide-notice">
|
<div id="upload-guide-notice">
|
||||||
<p>Before uploading, please read the <%= link_to "how to upload guide", wiki_pages_path(:title => "howto:upload") %>.</p>
|
<p>Before uploading, please read the <%= link_to "how to upload guide", wiki_pages_path(:title => "howto:upload") %>.</p>
|
||||||
|
|||||||
Reference in New Issue
Block a user