Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix search helper; bump version #222

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2860,4 +2860,11 @@ body .usa-menu-btn {

.search-helper {
font-style: italic;
margin-bottom: 15px
}

@media (pointer:fine) {
#dataset-search {
margin-bottom: -20px;
}
}
10 changes: 5 additions & 5 deletions ckanext/datagovtheme/templates/package/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,6 @@
{%- endif %}
<br clear="both" />
<div id="dataset-search-ext">{% block dataset_search_ext %}{% endblock %}</div>
<div class="search-helper">
For a list of search operators, please see the
<a href="https://docs.ckan.org/en/2.10/user-guide.html?#search-in-detail" target="_blank">
"Search in Detail" instructions.</a>
</div>
<div class="results">
<div class="filter-list">
{% for field in c.fields_grouped %}
Expand All @@ -54,6 +49,11 @@
</div>
</div>
</form></div>
<div class="search-helper">
For a list of search operators, please see the
<a href="https://docs.ckan.org/en/2.10/user-guide.html?#search-in-detail" target="_blank">
"Search in Detail" instructions.</a>
</div>
<a class="show-filters btn btn-primary">{{ _('Filter Results') }}</a>
{% endblock %}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

setup(
name="ckanext-datagovtheme",
version="0.2.40",
version="0.2.41",
description="CKAN Extension to manage data.gov theme",
long_description=long_description,
classifiers=[
Expand Down
Loading