@@ -60,18 +60,19 @@ index 4a4f78fe2..f56f80ef9 100644
60
60
].join('\n')
61
61
};
62
62
diff --git a/ckan/templates/development/primer.html b/ckan/templates/development/primer.html
63
- index fe4ddc8d5..1c2d77981 100644
63
+ index 10c22275a..431540212 100644
64
64
--- a/ckan/templates/development/primer.html
65
65
+++ b/ckan/templates/development/primer.html
66
- @@ -31,7 +31,7 @@
66
+ @@ -30,7 +30,7 @@
67
+ <div class="module-content">
67
68
<div class="input-group input-group-lg search-giant">
68
69
<input type="text" class="search form-control" name="q" value="" autocomplete="off" placeholder="Search something...">
69
- <span class="input-group- btn">
70
- - <button class="btn btn-default " type="submit">
71
- + <button class="btn btn-secondary" type="submit" >
72
- <i class="fa fa-search"></i >
73
- <span class="sr-only">Search</span >
74
- </button>
70
+ - <button class="btn btn-default" type="submit ">
71
+ + <button class="btn btn-secondary " type="submit">
72
+ <i class="fa fa-search"></i >
73
+ <span class="sr-only">Search</span >
74
+ </button >
75
+
75
76
diff --git a/ckan/templates/development/snippets/actions.html b/ckan/templates/development/snippets/actions.html
76
77
index fe9519c86..015c74bc8 100644
77
78
--- a/ckan/templates/development/snippets/actions.html
@@ -275,7 +276,7 @@ index af1a47fc8..1c65cd4c5 100644
275
276
276
277
{% block content_action %}
277
278
{% if h.check_access('package_update', {'id':pkg.id }) %}
278
- - {% link_for _('Manage'), named_route=pkg.type ~ '.edit', id=pkg.name, class_='btn btn-light ', icon='wrench' %}
279
+ - {% link_for _('Manage'), named_route=pkg.type ~ '.edit', id=pkg.name, class_='btn btn-default ', icon='wrench' %}
279
280
+ {% link_for _('Manage'), named_route=pkg.type ~ '.edit', id=pkg.name, class_='btn btn-secondary', icon='wrench' %}
280
281
{% endif %}
281
282
{% endblock %}
@@ -386,7 +387,7 @@ index 8b8a0c6f9..d96b6f06b 100644
386
387
<li class="nav-item d-flex justify-content-between position-relative">
387
388
<a class="flex-fill" href="{{ url }}" title="{{ h.resource_display_name(resource) }}">{{ h.resource_display_name(resource)|truncate(25) }}</a>
388
389
<div class="dropdown position-absolute end-0 me-2">
389
- - <button class="btn btn-light btn-sm dropdown-toggle" type="button" id="dropdownRes{{ loop.index }}" data-bs-toggle="dropdown" aria-expanded="false"><i class="fa fa-wrench"></i></button>
390
+ - <button class="btn btn-default btn-sm dropdown-toggle" type="button" id="dropdownRes{{ loop.index }}" data-bs-toggle="dropdown" aria-expanded="false"><i class="fa fa-wrench"></i></button>
390
391
+ <button class="btn btn-secondary btn-sm dropdown-toggle" type="button" id="dropdownRes{{ loop.index }}" data-bs-toggle="dropdown" aria-expanded="false"><i class="fa fa-wrench"></i></button>
391
392
<ul class="dropdown-menu" aria-labelledby="dropdownRes{{ loop.index }}">
392
393
<li>{% link_for _('Edit resource'), named_route=pkg.type ~ '_resource.edit', id=pkg.name, resource_id=resource.id, class_='dropdown-item', icon='pencil' %}</li>
@@ -395,7 +396,7 @@ index 8b8a0c6f9..d96b6f06b 100644
395
396
396
397
{% if can_edit and not is_activity_archive %}
397
398
<div class="module-content">
398
- - {% link_for _('Add new resource'), named_route=pkg.type ~ '_resource.new', id=pkg.name, class_='btn btn-light btn-sm', icon='plus' %}
399
+ - {% link_for _('Add new resource'), named_route=pkg.type ~ '_resource.new', id=pkg.name, class_='btn btn-default btn-sm', icon='plus' %}
399
400
+ {% link_for _('Add new resource'), named_route=pkg.type ~ '_resource.new', id=pkg.name, class_='btn btn-secondary btn-sm', icon='plus' %}
400
401
</div>
401
402
{% endif %}
@@ -430,19 +431,19 @@ index 16c387754..591b95133 100644
430
431
431
432
432
433
diff --git a/ckan/templates/snippets/search_form.html b/ckan/templates/snippets/search_form.html
433
- index b77f2b990..bca653755 100644
434
+ index 3bdd08f9e..f2d037750 100644
434
435
--- a/ckan/templates/snippets/search_form.html
435
436
+++ b/ckan/templates/snippets/search_form.html
436
- @@ -13,7 +13,7 @@
437
+ @@ -12,7 +12,7 @@
438
+ <div class="input-group search-input-group">
437
439
<input aria-label="{% block header_site_search_label %}{{ placeholder }}{% endblock %}" id="field-giant-search" type="text" class="form-control input-lg" name="q" value="{{ query }}" autocomplete="off" placeholder="{{ placeholder }}">
438
440
{% block search_input_button %}
439
- <span class="input-group-btn">
440
- - <button class="btn btn-default btn-lg" type="submit" value="search" aria-label="{{_('Submit')}}">
441
- + <button class="btn btn-secondary btn-lg" type="submit" value="search" aria-label="{{_('Submit')}}">
442
- <i class="fa fa-search"></i>
443
- </button>
444
- </span>
445
- @@ -39,7 +39,7 @@
441
+ - <button class="btn btn-default btn-lg" type="submit" value="search" aria-label="{{_('Submit')}}">
442
+ + <button class="btn btn-secondary btn-lg" type="submit" value="search" aria-label="{{_('Submit')}}">
443
+ <i class="fa fa-search"></i>
444
+ </button>
445
+ {% endblock %}
446
+ @@ -37,7 +37,7 @@
446
447
{% endfor %}
447
448
</select>
448
449
{% block search_sortby_button %}
@@ -451,7 +452,7 @@ index b77f2b990..bca653755 100644
451
452
{% endblock %}
452
453
</div>
453
454
{% endif %}
454
- @@ -73 ,7 +73 ,7 @@
455
+ @@ -71 ,7 +71 ,7 @@
455
456
{% endfor %}
456
457
{% endfor %}
457
458
</p>
0 commit comments