Skip to content

Commit 327f890

Browse files
committed
Merge pull request #556 from sul-dlss/admin-subheading-styling
Improve consistency of subheading styling on Curation pages. Fixes #555
2 parents a98ae29 + 4af8979 commit 327f890

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/views/spotlight/about_pages/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<%= bootstrap_form_for @exhibit, url: exhibit_contacts_path(@exhibit),
55
style: :horizontal, html: {class: 'exhibit-contacts'} do |f| %>
66
<h3><%= t :".contacts" %></h3>
7-
<p><%= t :'.instructions' %></p>
7+
<p class="instructions"><%= t :'.instructions' %></p>
88
<div class="panel-group dd contacts_admin">
99
<ol class="dd-list">
1010
<%= f.fields_for :contacts do |c| %>

app/views/spotlight/exhibits/import.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<%= bootstrap_form_for [:import, @exhibit], html: { class: 'clearfix', multipart: true } do |f| %>
55
<div class="row col-md-9">
66
<h3><%= t :'.import.header' %></h3>
7-
<p><%= t :'.import.instructions' %></p>
7+
<p class="instructions"><%= t :'.import.instructions' %></p>
88
<div class="form-group">
99
<%= file_field_tag :file, class: 'form-control' %>
1010
</div>
@@ -19,7 +19,7 @@
1919

2020
<div class="row col-md-9">
2121
<h3><%= t :'.export.header' %></h3>
22-
<p><%= t :'.export.instructions' %></p>
22+
<p class="instructions"><%= t :'.export.instructions' %></p>
2323
<%= link_to t(:'.export.download'), get_exhibit_path(@exhibit, format: 'json'), class: 'btn btn-default' %>
2424
</div>
2525
</div>

app/views/spotlight/pages/_order_pages.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
<%= render partial: 'header', locals: {f: f} %>
55
<h3><%= t :'.pages_header' %></h3>
6-
<p><%= t :'.instructions' %></p>
6+
<p class="instructions"><%= t :'.instructions' %></p>
77
<div class="panel-group dd <%= page_collection_name %>_admin" id="nested-pages">
88
<ol class="dd-list">
99
<%= f.fields_for page_collection_name do |p| %>

app/views/spotlight/searches/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<% if @searches.empty? %>
77
<%= t :'.no_saved_searches' %>
88
<% else %>
9+
<p class="instructions"><%= t(:'.instructions') %></p>
910
<%= bootstrap_form_for @exhibit, url: update_all_exhibit_searches_path(@exhibit), style: :horizontal, right: "col-sm-10" do |f| %>
1011

11-
<p class="instructions"><%= t(:'.instructions') %></p>
1212
<div class="panel-group dd search_admin" id="nested-pages">
1313
<ol class="dd-list">
1414
<%= f.fields_for :searches do |p| %>

0 commit comments

Comments
 (0)