-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes to council type filter button styling
- Loading branch information
Showing
2 changed files
with
18 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
scoring/templates/scoring/includes/main-filter-methodology.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
<div class="bg-blue-l2 p-3 mb-4 border rounded"> | ||
<label for="questions-council-name" class="d-block">Show questions for a specific council</label> | ||
<label for="questions-council-name" class="d-block mb-2">Show questions for a specific council</label> | ||
<input class="form-control searchbar js-methodology-council-autocomplete" type="search" placeholder="Council name" aria-label="Council name" id="questions-council-name"> | ||
<p class="mt-3 mt-lg-4 mb-0">Or show questions by type of council</p> | ||
<p class="mt-3 mt-lg-4 mb-2">Or show questions by type of council</p> | ||
<div class="type-council-option-wrapper"> | ||
<button class="btn btn-outline-primary btn-sm is--with-label" data-methodology-switch-council-type="single" data-bs-toggle="tooltip" data-bs-placement="top" | ||
data-bs-custom-class="custom-tooltip" | ||
data-bs-title="This includes all London, Welsh and Scottish councils as well as Metropolitan Borough Councils and Unitary Councils."> | ||
<span>Single Tier</span> | ||
{% include 'caps/icons/question-circle.html' with classes='ms-1 align-text-top' width='1.1rem' height='1.1rem' role='presentation' %} | ||
</button> | ||
<button class="radio-btn is--with-label mr-1" data-methodology-switch-council-type="district">District</button> | ||
<button class="radio-btn is--with-label mr-1" data-methodology-switch-council-type="county">County</button> | ||
<button class="radio-btn is--with-label mr-1" data-methodology-switch-council-type="northern-ireland">Northern Ireland</button> | ||
<button class="radio-btn is--with-label mr-1" data-methodology-switch-council-type="combined">Combined Authority</button> | ||
<button class="btn btn-outline-primary btn-sm is--with-label" data-methodology-switch-council-type="district">District</button> | ||
<button class="btn btn-outline-primary btn-sm is--with-label" data-methodology-switch-council-type="county">County</button> | ||
<button class="btn btn-outline-primary btn-sm is--with-label" data-methodology-switch-council-type="northern-ireland">Northern Ireland</button> | ||
<button class="btn btn-outline-primary btn-sm is--with-label" data-methodology-switch-council-type="combined">Combined Authority</button> | ||
</div> | ||
</div> |