From b1faea31850aaf4328b1edf832ff96b91e761089 Mon Sep 17 00:00:00 2001 From: Chris Hallberg <crhallberg@gmail.com> Date: Mon, 14 Apr 2014 13:00:12 -0400 Subject: [PATCH] Moved Bootstrap page headers from h2 and p.lead to just h2 with p.lead styling. --- themes/bootstrap/css/bootstrap-custom.css | 6 +- .../SolrDefault/collection-record.phtml | 2 +- .../templates/combined/results-ajax.phtml | 2 +- .../templates/combined/results-list.phtml | 2 +- .../templates/devtools/language.phtml | 2 +- .../templates/error/unavailable.phtml | 2 +- .../bootstrap/templates/myresearch/edit.phtml | 2 +- .../templates/myresearch/editlist.phtml | 2 +- .../templates/myresearch/mylist.phtml | 4 +- themes/bootstrap/templates/oai/home.phtml | 220 +++++++++--------- themes/bootstrap/templates/record/hold.phtml | 2 +- .../templates/record/illrequest.phtml | 2 +- themes/bootstrap/templates/record/save.phtml | 2 +- .../record/storageretrievalrequest.phtml | 2 +- .../bootstrap/templates/search/newitem.phtml | 2 +- .../bootstrap/templates/search/reserves.phtml | 2 +- 16 files changed, 128 insertions(+), 128 deletions(-) diff --git a/themes/bootstrap/css/bootstrap-custom.css b/themes/bootstrap/css/bootstrap-custom.css index 072ae48d766..3b20ec2c68c 100644 --- a/themes/bootstrap/css/bootstrap-custom.css +++ b/themes/bootstrap/css/bootstrap-custom.css @@ -1,2 +1,4 @@ -.result { border-top:1px solid #DDD;padding:1em 0 } -.tab-container { border:1px solid #DDD;border-top:0;border-radius:0 0 4px 4px;margin-top:-20px;padding:12px;position:relative } \ No newline at end of file +h2,#modal h3 {margin-bottom:20px;font-size:21px;font-weight:200;line-height:30px} +#modal h3 {margin-bottom:0px} +.result {border-top:1px solid #DDD;padding:1em 0} +.tab-container {border:1px solid #DDD;border-top:0;border-radius:0 0 4px 4px;margin-top:-20px;padding:12px;position:relative} \ No newline at end of file diff --git a/themes/bootstrap/templates/RecordDriver/SolrDefault/collection-record.phtml b/themes/bootstrap/templates/RecordDriver/SolrDefault/collection-record.phtml index b1101b45ddf..4b3cda6b49d 100644 --- a/themes/bootstrap/templates/RecordDriver/SolrDefault/collection-record.phtml +++ b/themes/bootstrap/templates/RecordDriver/SolrDefault/collection-record.phtml @@ -1,4 +1,4 @@ -<p class="lead"><?=$this->escapeHtml($this->driver->getShortTitle() . ' ' . $this->driver->getSubtitle() . ' ' . $this->driver->getTitleSection())?></p> +<h2><?=$this->escapeHtml($this->driver->getShortTitle() . ' ' . $this->driver->getSubtitle() . ' ' . $this->driver->getTitleSection())?></h2> <a href="<?=$this->recordLink()->getUrl($this->driver)?>"><?=$this->transEsc('View Full ' . ($this->driver->isCollection() ? 'Collection' : 'Record'))?></a> <table class="table table-striped" summary="<?=$this->transEsc('Bibliographic Details')?>"> diff --git a/themes/bootstrap/templates/combined/results-ajax.phtml b/themes/bootstrap/templates/combined/results-ajax.phtml index 2e24a120ca9..8cad1649579 100644 --- a/themes/bootstrap/templates/combined/results-ajax.phtml +++ b/themes/bootstrap/templates/combined/results-ajax.phtml @@ -9,7 +9,7 @@ . '&lookfor=' . urlencode($lookfor) . '";' . "\$('#combined_" . $this->escapeHtml($searchClassId) . "').load(url);"; ?> -<p class="lead"><?=$this->transEsc($currentSearch['label'])?></p> +<h2><?=$this->transEsc($currentSearch['label'])?></h2> <p><i class="icon-spinner icon-spin"></i> <?=$this->transEsc("Loading")?>...</p> <?=$this->inlineScript(\Zend\View\Helper\HeadScript::SCRIPT, '$(document).ready(function(){' . $loadJs . '});', 'SET')?> <noscript><?=$this->transEsc('Please enable JavaScript.')?></noscript> diff --git a/themes/bootstrap/templates/combined/results-list.phtml b/themes/bootstrap/templates/combined/results-list.phtml index 5fc0208e9cb..0ffebf5b69f 100644 --- a/themes/bootstrap/templates/combined/results-list.phtml +++ b/themes/bootstrap/templates/combined/results-list.phtml @@ -16,7 +16,7 @@ <a href="<?=$moreUrl?>" class="btn btn-link"><i class="icon-gears"></i> <?=$this->transEsc('More options')?></a> </div> <? endif; ?> -<p class="lead"><?=$this->transEsc($currentSearch['label'])?></p> +<h2><?=$this->transEsc($currentSearch['label'])?></h2> <? if (isset($currentSearch['sublabel'])): ?> <p><i><?=$this->transEsc($currentSearch['sublabel'])?></i></p> <? endif; ?> diff --git a/themes/bootstrap/templates/devtools/language.phtml b/themes/bootstrap/templates/devtools/language.phtml index eeb3e0d417b..64c22966b2b 100644 --- a/themes/bootstrap/templates/devtools/language.phtml +++ b/themes/bootstrap/templates/devtools/language.phtml @@ -2,7 +2,7 @@ $this->headTitle($this->translate('Language')); ?> -<p class="lead">Comparing Languages Against <?=$this->escapeHtml($mainName)?></p> +<h2>Comparing Languages Against <?=$this->escapeHtml($mainName)?></h2> <p class="lead">Summary</p> diff --git a/themes/bootstrap/templates/error/unavailable.phtml b/themes/bootstrap/templates/error/unavailable.phtml index 2c1abc66be8..d3b7f8291ea 100644 --- a/themes/bootstrap/templates/error/unavailable.phtml +++ b/themes/bootstrap/templates/error/unavailable.phtml @@ -8,7 +8,7 @@ $this->layout()->breadcrumbs = '<li class="active">Error</li>'; ?> <div class="alert alert-error"> - <p class="lead"><?=$this->transEsc('System Unavailable')?></p> + <h2><?=$this->transEsc('System Unavailable')?></h2> <p> <?=$this->transEsc('The system is currently unavailable due to system maintenance')?>. <?=$this->transEsc('Please check back soon')?>. diff --git a/themes/bootstrap/templates/myresearch/edit.phtml b/themes/bootstrap/templates/myresearch/edit.phtml index f8ed5fc8800..e59b06f4382 100644 --- a/themes/bootstrap/templates/myresearch/edit.phtml +++ b/themes/bootstrap/templates/myresearch/edit.phtml @@ -10,7 +10,7 @@ $this->headScript()->appendFile("bulk_actions.js"); ?> <div class="record"> - <p class="lead"><?=$this->escapeHtml($this->driver->getBreadcrumb())?></p> + <h2><?=$this->escapeHtml($this->driver->getBreadcrumb())?></h2> <form class="form-horizontal" method="post" name="editForm" action=""> <? if (empty($this->savedData)): ?> diff --git a/themes/bootstrap/templates/myresearch/editlist.phtml b/themes/bootstrap/templates/myresearch/editlist.phtml index 04bafafa025..2b637d06121 100644 --- a/themes/bootstrap/templates/myresearch/editlist.phtml +++ b/themes/bootstrap/templates/myresearch/editlist.phtml @@ -10,7 +10,7 @@ <?=$this->flashmessages()?> -<p class="lead"><?=$this->transEsc($pageTitle); ?></p> +<h2><?=$this->transEsc($pageTitle); ?></h2> <form class="form-horizontal edit-list-form" method="post" name="<?=empty($this->list->id) ? 'newList' : 'editListForm'?>" action=""> <input type="hidden" name="id" value="<?=empty($this->list->id) ? 'NEW' : $this->list->id ?>"/> diff --git a/themes/bootstrap/templates/myresearch/mylist.phtml b/themes/bootstrap/templates/myresearch/mylist.phtml index 35a996f2bd7..dec626e795f 100644 --- a/themes/bootstrap/templates/myresearch/mylist.phtml +++ b/themes/bootstrap/templates/myresearch/mylist.phtml @@ -39,7 +39,7 @@ </div> <? endif; ?> </div> - <p class="lead"><?=$this->escapeHtml($list->title)?></p> + <h2><?=$this->escapeHtml($list->title)?></h2> <? if (!empty($list->description)): ?> <p><?=$this->escapeHtml($list->description)?></p><hr /> <? endif; ?> @@ -49,7 +49,7 @@ <strong><?=$this->escapeHtml($this->results->getStartRecord())?></strong> - <strong><?=$this->escapeHtml($this->results->getEndRecord())?></strong> <?=$this->transEsc('of')?> <strong><?=number_format($recordTotal)?></strong> </div> - <p class="lead"><?=$this->transEsc("Your Favorites")?></p> + <h2><?=$this->transEsc("Your Favorites")?></h2> <? endif; ?> </div> <? if ($recordTotal > 0): ?> diff --git a/themes/bootstrap/templates/oai/home.phtml b/themes/bootstrap/templates/oai/home.phtml index 13fe2040eae..b807f77c373 100644 --- a/themes/bootstrap/templates/oai/home.phtml +++ b/themes/bootstrap/templates/oai/home.phtml @@ -1,119 +1,117 @@ <? - $this->headTitle($this->translate('OAI Server')); - $this->layout()->breadcrumbs = $this->transEsc('OAI Server'); - $baseUrl = $this->url('oai-server'); + $this->headTitle($this->translate('OAI Server')); + $this->layout()->breadcrumbs = $this->transEsc('OAI Server'); + $baseUrl = $this->url('oai-server'); ?> -<div class="span-18"> - <h2><?=$this->transEsc('OAI Server')?></h2> - <p> - This OAI server is OAI 2.0 compliant.<br/> - The OAI Server URL is: <?=$this->serverUrl($baseUrl)?> - </p> +<h2><?=$this->transEsc('OAI Server')?></h2> +<p> + This OAI server is OAI 2.0 compliant.<br/> + The OAI Server URL is: <?=$this->serverUrl($baseUrl)?> +</p> - <p class="lead"><?=$this->transEsc('Available Functionality') ?>:</p> - <dl> - <dt>Identify</dt> - <dd> - <form class="form-horizontal" method="get" action="<?=$baseUrl?>"> - <p class="help-block">Returns the Identification information of this OAI Server.</p> - <input type="hidden" name="verb" value="Identify"/> - <p class="help-block">Accepts no additional parameters.</p> - <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/> - </form> - </dd> +<p class="lead"><?=$this->transEsc('Available Functionality') ?>:</p> +<dl> + <dt>Identify</dt> + <dd> + <form class="form-horizontal" method="get" action="<?=$baseUrl?>"> + <p class="help-block">Returns the Identification information of this OAI Server.</p> + <input type="hidden" name="verb" value="Identify"/> + <p class="help-block">Accepts no additional parameters.</p> + <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/> + </form> + </dd> - <dt>ListIdentifiers</dt> - <dd> - <form class="form-inline" method="get" action="<?=$baseUrl?>"> - <p class="help-block">Returns a listing of available identifiers</p> - <input type="hidden" name="verb" value="ListIdentifiers"/> - <table class="text-right"> - <tr> - <td><label class="help-inline" for="ListIdentifier_from"><?=$this->transEsc('From')?>:</label></td> - <td><input id="ListIdentifier_from" type="text" name="from"/></td> - </tr> - <tr> - <td><label class="help-inline" for="ListIdentifier_until"><?=$this->transEsc('Until')?>:</label></td> - <td><input id="ListIdentifier_until" type="text" name="until"/></td> - </tr> - <tr> - <td><label class="help-inline" for="ListIdentifier_set"><?=$this->transEsc('Set')?>:</label></td> - <td><input id="ListIdentifier_set" type="text" name="set"/></td> - </tr> - <tr> - <td><label class="help-inline" for="ListIdentifier_metadataPrefix"><?=$this->transEsc('Metadata Prefix')?>:</label></td> - <td><input id="ListIdentifier_metadataPrefix" type="text" name="metadataPrefix"/></td> - </tr> - <tr> - <td><label class="help-inline" for="ListIdentifier_resumptionToken"><?=$this->transEsc('Resumption Token')?>:</label></td> - <td><input id="ListIdentifier_resumptionToken" type="text" name="resumptionToken"/></td> - </tr> - </table> - <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/> - </form> - </dd> + <dt>ListIdentifiers</dt> + <dd> + <form class="form-inline" method="get" action="<?=$baseUrl?>"> + <p class="help-block">Returns a listing of available identifiers</p> + <input type="hidden" name="verb" value="ListIdentifiers"/> + <table class="text-right"> + <tr> + <td><label class="help-inline" for="ListIdentifier_from"><?=$this->transEsc('From')?>:</label></td> + <td><input id="ListIdentifier_from" type="text" name="from"/></td> + </tr> + <tr> + <td><label class="help-inline" for="ListIdentifier_until"><?=$this->transEsc('Until')?>:</label></td> + <td><input id="ListIdentifier_until" type="text" name="until"/></td> + </tr> + <tr> + <td><label class="help-inline" for="ListIdentifier_set"><?=$this->transEsc('Set')?>:</label></td> + <td><input id="ListIdentifier_set" type="text" name="set"/></td> + </tr> + <tr> + <td><label class="help-inline" for="ListIdentifier_metadataPrefix"><?=$this->transEsc('Metadata Prefix')?>:</label></td> + <td><input id="ListIdentifier_metadataPrefix" type="text" name="metadataPrefix"/></td> + </tr> + <tr> + <td><label class="help-inline" for="ListIdentifier_resumptionToken"><?=$this->transEsc('Resumption Token')?>:</label></td> + <td><input id="ListIdentifier_resumptionToken" type="text" name="resumptionToken"/></td> + </tr> + </table> + <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/> + </form> + </dd> - <dt>ListMetadataFormats</dt> - <dd> - <form class="form-inline" method="get" action="<?=$baseUrl?>"> - <p class="help-block">Returns a listing of available metadata formats.</p> - <input type="hidden" name="verb" value="ListMetadataFormats"/> - <label class="help-inline" for="ListMetadataFormats_identifier"><?=$this->transEsc('Identifier')?>:</label> <input id="ListMetadataFormats_identifier" type="text" name="identifier"/><br/> - <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/> - </form> - </dd> + <dt>ListMetadataFormats</dt> + <dd> + <form class="form-inline" method="get" action="<?=$baseUrl?>"> + <p class="help-block">Returns a listing of available metadata formats.</p> + <input type="hidden" name="verb" value="ListMetadataFormats"/> + <label class="help-inline" for="ListMetadataFormats_identifier"><?=$this->transEsc('Identifier')?>:</label> <input id="ListMetadataFormats_identifier" type="text" name="identifier"/><br/> + <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/> + </form> + </dd> - <dt>ListSets</dt> - <dd> - <form class="form-inline" method="get" action="<?=$baseUrl?>"> - <p class="help-block">Returns a listing of available sets.</p> - <input type="hidden" name="verb" value="ListSets"/> - <label class="help-inline" for="ListSets_metadataPrefix"><?=$this->transEsc('Metadata Prefix')?>:</label> <input id="ListSets_metadataPrefix" type="text" name="metadataPrefix"/><br class="clear"/> - <label class="help-inline" for="ListSets_resumptionToken"><?=$this->transEsc('Resumption Token')?>:</label> <input id="ListSets_resumptionToken" type="text" name="resumptionToken"/><br class="clear"/> - <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/><br class="clear"/> - </form> - </dd> + <dt>ListSets</dt> + <dd> + <form class="form-inline" method="get" action="<?=$baseUrl?>"> + <p class="help-block">Returns a listing of available sets.</p> + <input type="hidden" name="verb" value="ListSets"/> + <label class="help-inline" for="ListSets_metadataPrefix"><?=$this->transEsc('Metadata Prefix')?>:</label> <input id="ListSets_metadataPrefix" type="text" name="metadataPrefix"/><br class="clear"/> + <label class="help-inline" for="ListSets_resumptionToken"><?=$this->transEsc('Resumption Token')?>:</label> <input id="ListSets_resumptionToken" type="text" name="resumptionToken"/><br class="clear"/> + <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/><br class="clear"/> + </form> + </dd> - <dt>ListRecords</dt> - <dd> - <form class="form-inline" method="get" action="<?=$baseUrl?>"> - <p class="help-block">Returns a listing of available records.</p> - <input type="hidden" name="verb" value="ListRecords"/> - <table class="text-right"> - <tr> - <td><label class="help-inline" for="ListRecord_from"><?=$this->transEsc('From')?>:</label></td> - <td><input id="ListRecord_from" type="text" name="from"/></td> - </tr> - <tr> - <td><label class="help-inline" for="ListRecord_until"><?=$this->transEsc('Until')?>:</label></td> - <td><input id="ListRecord_until" type="text" name="until"/></td> - </tr> - <tr> - <td><label class="help-inline" for="ListRecord_set"><?=$this->transEsc('Set')?>:</label></td> - <td><input id="ListRecord_set" type="text" name="set"/></td> - </tr> - <tr> - <td><label class="help-inline" for="ListRecord_metadataPrefix"><?=$this->transEsc('Metadata Prefix')?>:</label></td> - <td><input id="ListRecord_metadataPrefix" type="text" name="metadataPrefix"/></td> - </tr> - <tr> - <td><label class="help-inline" for="ListRecord_resumptionToken"><?=$this->transEsc('Resumption Token')?>:</label></td> - <td><input id="ListRecord_resumptionToken" type="text" name="resumptionToken"/></td> - </tr> - </table> - <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/> - </form> - </dd> + <dt>ListRecords</dt> + <dd> + <form class="form-inline" method="get" action="<?=$baseUrl?>"> + <p class="help-block">Returns a listing of available records.</p> + <input type="hidden" name="verb" value="ListRecords"/> + <table class="text-right"> + <tr> + <td><label class="help-inline" for="ListRecord_from"><?=$this->transEsc('From')?>:</label></td> + <td><input id="ListRecord_from" type="text" name="from"/></td> + </tr> + <tr> + <td><label class="help-inline" for="ListRecord_until"><?=$this->transEsc('Until')?>:</label></td> + <td><input id="ListRecord_until" type="text" name="until"/></td> + </tr> + <tr> + <td><label class="help-inline" for="ListRecord_set"><?=$this->transEsc('Set')?>:</label></td> + <td><input id="ListRecord_set" type="text" name="set"/></td> + </tr> + <tr> + <td><label class="help-inline" for="ListRecord_metadataPrefix"><?=$this->transEsc('Metadata Prefix')?>:</label></td> + <td><input id="ListRecord_metadataPrefix" type="text" name="metadataPrefix"/></td> + </tr> + <tr> + <td><label class="help-inline" for="ListRecord_resumptionToken"><?=$this->transEsc('Resumption Token')?>:</label></td> + <td><input id="ListRecord_resumptionToken" type="text" name="resumptionToken"/></td> + </tr> + </table> + <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/> + </form> + </dd> - <dt>GetRecord</dt> - <dd> - <form class="form-inline" method="get" action="<?=$baseUrl?>"> - <p class="help-block">Returns a single record.</p> - <input type="hidden" name="verb" value="GetRecord"/> - <label class="help-inline" for="GetRecord_identifier"><?=$this->transEsc('Identifier')?>:</label> <input id="GetRecord_identifier" type="text" name="identifier"/><br class="clear"/> - <label class="help-inline" for="GetRecord_metadataPrefix"><?=$this->transEsc('Metadata Prefix')?>:</label> <input id="GetRecord_metadataPrefix" type="text" name="metadataPrefix"/><br class="clear"/> - <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/><br class="clear"/> - </form> - </dd> - </dl> -</div> \ No newline at end of file + <dt>GetRecord</dt> + <dd> + <form class="form-inline" method="get" action="<?=$baseUrl?>"> + <p class="help-block">Returns a single record.</p> + <input type="hidden" name="verb" value="GetRecord"/> + <label class="help-inline" for="GetRecord_identifier"><?=$this->transEsc('Identifier')?>:</label> <input id="GetRecord_identifier" type="text" name="identifier"/><br class="clear"/> + <label class="help-inline" for="GetRecord_metadataPrefix"><?=$this->transEsc('Metadata Prefix')?>:</label> <input id="GetRecord_metadataPrefix" type="text" name="metadataPrefix"/><br class="clear"/> + <input class="btn" type="submit" name="submit" value="<?=$this->transEsc('Go')?>"/><br class="clear"/> + </form> + </dd> +</dl> \ No newline at end of file diff --git a/themes/bootstrap/templates/record/hold.phtml b/themes/bootstrap/templates/record/hold.phtml index 9cd93ec2fb1..71f4fd13c93 100644 --- a/themes/bootstrap/templates/record/hold.phtml +++ b/themes/bootstrap/templates/record/hold.phtml @@ -7,7 +7,7 @@ . '<li>' . $this->recordLink()->getBreadcrumb($this->driver) . '<span class="divider">></span> </li>' . '<li class="active">' . $this->transEsc('request_place_text') . '</li>'; ?> -<p class="lead"><?=$this->transEsc('request_place_text')?></p> +<h2><?=$this->transEsc('request_place_text')?></h2> <? if ($this->helpText): ?> <p class="helptext"><?=$this->helpText?></p> <? endif; ?> diff --git a/themes/bootstrap/templates/record/illrequest.phtml b/themes/bootstrap/templates/record/illrequest.phtml index 9bff9cd577b..374d04da488 100644 --- a/themes/bootstrap/templates/record/illrequest.phtml +++ b/themes/bootstrap/templates/record/illrequest.phtml @@ -7,7 +7,7 @@ . '<li>' . $this->recordLink()->getBreadcrumb($this->driver) . '<span class="divider">></span> </li>' . '<li class="active">' . $this->transEsc('ill_request_place_text') . '</li>'; ?> -<p class="lead"><?=$this->transEsc('ill_request_place_text')?></p> +<h2><?=$this->transEsc('ill_request_place_text')?></h2> <? if ($this->helpText): ?> <p class="helptext"><?=$this->helpText?></p> <? endif; ?> diff --git a/themes/bootstrap/templates/record/save.phtml b/themes/bootstrap/templates/record/save.phtml index 9ca250384bf..b5fe7072f36 100644 --- a/themes/bootstrap/templates/record/save.phtml +++ b/themes/bootstrap/templates/record/save.phtml @@ -6,7 +6,7 @@ $this->layout()->breadcrumbs = '<li>' . $this->getLastSearchLink($this->transEsc('Search'), '', '<span class="divider">></span></li>') . '<li>' . $this->recordLink()->getBreadcrumb($this->driver) . '<span class="divider">></span></li><li class="active">' . $this->transEsc('Save') . '</li>'; ?> -<p class="lead"><?=$this->transEsc("add_favorite_prefix") ?> <?=$this->escapeHtml($this->driver->getBreadcrumb())?> <?=$this->transEsc("add_favorite_suffix") ?></p> +<h2><?=$this->transEsc("add_favorite_prefix") ?> <?=$this->escapeHtml($this->driver->getBreadcrumb())?> <?=$this->transEsc("add_favorite_suffix") ?></h2> <form id="edit-save-form" class="form-horizontal" method="post" action="<?=$this->recordLink()->getActionUrl($this->driver, 'Save')?>" name="saveRecord"> <input type="hidden" name="submit" value="1" /> <input type="hidden" name="id" value="<?=$this->escapeHtml($this->driver->getUniqueId()) ?>" /> diff --git a/themes/bootstrap/templates/record/storageretrievalrequest.phtml b/themes/bootstrap/templates/record/storageretrievalrequest.phtml index 73befb668a0..9f8c2a1161b 100644 --- a/themes/bootstrap/templates/record/storageretrievalrequest.phtml +++ b/themes/bootstrap/templates/record/storageretrievalrequest.phtml @@ -7,7 +7,7 @@ . '<li>' . $this->recordLink()->getBreadcrumb($this->driver) . '<span class="divider">></span> </li>' . '<li class="active">' . $this->transEsc('storage_retrieval_request_place_text') . '</li>'; ?> -<p class="lead"><?=$this->transEsc('storage_retrieval_request_place_text')?></p> +<h2><?=$this->transEsc('storage_retrieval_request_place_text')?></h2> <? if ($this->helpText): ?> <p class="helptext"><?=$this->helpText?></p> <? endif; ?> diff --git a/themes/bootstrap/templates/search/newitem.phtml b/themes/bootstrap/templates/search/newitem.phtml index bd2c505bd96..cb022008849 100644 --- a/themes/bootstrap/templates/search/newitem.phtml +++ b/themes/bootstrap/templates/search/newitem.phtml @@ -6,7 +6,7 @@ $this->layout()->breadcrumbs = '<li class="active">' . $this->transEsc('New Items') . '</li>'; ?> <div class="<?=$this->layoutClass('mainbody')?>"> - <p class="lead"><?=$this->transEsc('Find New Items')?></p> + <h2><?=$this->transEsc('Find New Items')?></h2> <form method="get" action="" class="form-horizontal"> <div class="control-group"> <p class="control-label pad"><?=$this->transEsc('Range')?>:</p> diff --git a/themes/bootstrap/templates/search/reserves.phtml b/themes/bootstrap/templates/search/reserves.phtml index ea6556d4bd4..cc487643999 100644 --- a/themes/bootstrap/templates/search/reserves.phtml +++ b/themes/bootstrap/templates/search/reserves.phtml @@ -6,7 +6,7 @@ $this->layout()->breadcrumbs = '<li class="active">' . $this->transEsc('Reserves') . '</li>'; ?> <div class="<?=$this->layoutClass('mainbody')?>"> - <p class="lead"><?=$this->transEsc('Search For Items on Reserve')?></p> + <h2><?=$this->transEsc('Search For Items on Reserve')?></h2> <form method="get" action="" name="searchForm" class="form-inline offset1"> <? if (is_array($this->courseList)): ?> <div class="row"> -- GitLab