Skip to content

Commit

Permalink
Merge pull request #4422 from magfest/update-btn-classes
Browse files Browse the repository at this point in the history
Fix broken button classes
  • Loading branch information
kitsuta authored Oct 24, 2024
2 parents 651395d + ba11daf commit 711865b
Show file tree
Hide file tree
Showing 17 changed files with 63 additions and 62 deletions.
6 changes: 3 additions & 3 deletions uber/templates/api/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ <h3>
{% if admin_account.is_super_admin %}All{% else %}Your{% endif %} Tokens
</h3>
{% if show_revoked %}
<a id="btn_show_revoked" href="index" class="btn btn-xs btn-plain">
<a id="btn_show_revoked" href="index" class="btn btn-sm btn-outline-secondary">
{% else %}
<a id="btn_show_revoked" href="index?show_revoked=true" class="btn btn-xs btn-outline-secondary">
<a id="btn_show_revoked" href="index?show_revoked=true" class="btn btn-sm btn-outline-secondary">
{% endif %}
<i class="fa fa-filter"></i>
Show Revoked Tokens
Expand Down Expand Up @@ -150,7 +150,7 @@ <h3>
{% else %}
<form method="post" action="revoke_api_token" role="form">
<input type="hidden" name="id" value="{{ token.id }}"/>
<button class="btn btn-xs btn-danger" type="submit">Revoke</button>
<button class="btn btn-sm btn-danger" type="submit">Revoke</button>
</form>
{% endif %}
</td>
Expand Down
6 changes: 3 additions & 3 deletions uber/templates/attractions_admin/checkin.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,14 +189,14 @@
};

var toggleShowCheckedIn = function(isShowing) {
$showCheckedInButton.toggleClass('btn-plain', !isShowing);
$showCheckedInButton.toggleClass('btn-outline-secondary', !isShowing);
$showCheckedInButton.toggleClass('btn-outline-secondary', isShowing);
$container.toggleClass('show-checked-in', !isShowing);
};

$showCheckedInButton.on('click', function(event) {
event.preventDefault();
toggleShowCheckedIn($showCheckedInButton.hasClass('btn-plain'));
toggleShowCheckedIn($showCheckedInButton.hasClass('btn-outline-secondary'));
});

$('.form-control-feedback').on('click', function(event) {
Expand Down Expand Up @@ -317,7 +317,7 @@ <h2 class="ident">
</div>
</div>
<br/>
<button id="filter" class="btn btn-xs btn-xs btn-outline-secondary">
<button id="filter" class="btn btn-sm btn-sm btn-outline-secondary">
<i class="fa fa-filter"></i>
Show Already Checked In
</button>
Expand Down
6 changes: 3 additions & 3 deletions uber/templates/attractions_admin/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -232,14 +232,14 @@ <h2 class="attendees-title">Attendees Signed Up</h2>
<td>#{{ signup.attendee.badge_num }}</td>
<td>{{ signup.signup_time|datetime_local('%A, %b %-e at %-I:%M%p') }}</td>
<td class="checkin {% if signup.is_checked_in %} checked-in{% endif %}" data-order="{{ signup.checkin_time }}">
<button class="btn btn-warning btn-xs checked-in-visible" data-signup-id="{{ signup.id }}">
<button class="btn btn-warning btn-sm checked-in-visible" data-signup-id="{{ signup.id }}">
<i class="fa fa-check"></i>
Undo
</button>
<span class="checkin_time checked-in-visible">
{{ signup.checkin_time_local|datetime('%A, %b %-e at %-I:%M%p') }}
</span>
<button class="btn btn-success btn-xs checked-in-hidden" data-signup-id="{{ signup.id }}">
<button class="btn btn-success btn-sm checked-in-hidden" data-signup-id="{{ signup.id }}">
<i class="fa fa-check"></i>
Check In Now
</button>
Expand All @@ -248,7 +248,7 @@ <h2 class="attendees-title">Attendees Signed Up</h2>
<span {% if signup.is_checked_in -%}
title="You cannot cancel a signup that has already checked in" {% endif -%}
style="display: inline-block;">
<button class="btn btn-xs btn-danger"
<button class="btn btn-sm btn-danger"
{%- if signup.is_checked_in %} disabled="disabled"{% endif %}
data-signup-id="{{ signup.id }}"
data-attendee-name="{{ signup.attendee.full_name }}">
Expand Down
20 changes: 10 additions & 10 deletions uber/templates/attractions_admin/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ <h1>
<input type="hidden" name="id" value="{{ attraction.id }}">
<button
type="submit"
class="btn btn-xs btn-danger"
class="btn btn-sm btn-danger"
{% if attraction.features %}disabled="disabled"{% endif %}>
<i class="fa fa-remove"></i>
Delete Attraction
Expand All @@ -663,14 +663,14 @@ <h1>
{% if can_admin_attraction -%}
<button
type="button"
class="btn btn-xs btn-primary"
class="btn btn-sm btn-primary"
data-bs-toggle="modal"
data-bs-target="#edit_attraction"
title="Edit the {{ attraction.name }} Attraction">
<i class="fa fa-cog"></i>
</button>
{%- endif %}
<a href="checkin?id={{ attraction.slug }}" class="btn btn-xs btn-primary">
<a href="checkin?id={{ attraction.slug }}" class="btn btn-sm btn-primary">
<i class="fa fa-check"></i>
Check In Attendees
</a>
Expand Down Expand Up @@ -726,7 +726,7 @@ <h1>
<h2>
{{ attraction.name }} Features
{% if can_admin_attraction -%}
<a class="btn btn-xs btn-primary"
<a class="btn btn-sm btn-primary"
title="Add a new feature"
href="feature?attraction_id={{ attraction.id }}">
<i class="fa fa-plus"></i>
Expand Down Expand Up @@ -760,13 +760,13 @@ <h3>{{ feature.name }}</h3>
<h3 class="feature-title">
{% if can_admin_attraction -%}
<div class="controls pull-right">
<a class="btn btn-xs btn-primary btn-fade"
<a class="btn btn-sm btn-primary btn-fade"
title="Export signup list for {{ feature.name }}"
href="export_feature?id={{ feature.id }}"
download="download">
<i class="fa fa-download-alt"></i>
</a>
<a class="btn btn-xs btn-primary btn-fade"
<a class="btn btn-sm btn-primary btn-fade"
title="Edit the {{ feature.name }} feature"
href="feature?id={{ feature.id }}">
<i class="fa fa-cog"></i>
Expand All @@ -779,15 +779,15 @@ <h3 class="feature-title">
title="Delete the {{ feature.name }} feature">
{{ csrf_token() }}
<input type="hidden" name="id" value="{{ feature.id }}">
<button type="submit" class="btn btn-xs btn-danger btn-fade">
<button type="submit" class="btn btn-sm btn-danger btn-fade">
<i class="fa fa-remove"></i>
</button>
</form>
</div>
{%- endif %}
<span>{{ feature.name }}</span>
{% if can_admin_attraction -%}
<a class="btn btn-xs btn-primary"
<a class="btn btn-sm btn-primary"
title="Schedule a new {{ feature.name }} event"
href="event?feature_id={{ feature.id }}">
<i class="fa fa-time"></i>
Expand Down Expand Up @@ -865,12 +865,12 @@ <h2 id="{{ feature.id }}_{{ location }}_{{ day }}">{{ day }}
style="min-height: {{ (event.duration // 90) - 6 }}px">
{% if can_admin_attraction -%}
<div class="controls pull-right">
<a class="btn btn-xs btn-primary btn-fade"
<a class="btn btn-sm btn-primary btn-fade"
title="Edit this event"
href="event?id={{ event.id }}">
<i class="fa fa-cog"></i>
</a>
<button type="submit" class="btn btn-xs btn-danger btn-fade delete-event" data-event-id="{{ event.id }}" data-event-label="{{ feature.name }} at {{ event.start_time_label }}">
<button type="submit" class="btn btn-sm btn-danger btn-fade delete-event" data-event-id="{{ event.id }}" data-event-label="{{ feature.name }} at {{ event.start_time_label }}">
<i class="fa fa-remove"></i>
</button>
</div>
Expand Down
4 changes: 2 additions & 2 deletions uber/templates/attractions_admin/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ <h1>
{% endif %}
</h1>
{% if filtered %}
<a class="btn btn-xs btn-plain" href="index">
<a class="btn btn-sm btn-outline-secondary" href="index">
{% else %}
<a class="btn btn-xs btn-outline-secondary" href="index?filtered=1">
<a class="btn btn-sm btn-outline-secondary" href="index?filtered=1">
{% endif %}
<i class="fa fa-filter"></i>
Show only my attractions
Expand Down
21 changes: 11 additions & 10 deletions uber/templates/dept_admin/form.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
if (result.error) {
showErrorMessage(result.error);
} else {
$btn.toggleClass('btn-outline-secondary')
$btn.toggleClass('btn-secondary');
$btn.toggleClass('btn-outline-secondary');
}
}, 'json');
});
Expand All @@ -100,7 +101,7 @@
{%- if is_admin_dept_head -%}
<button
type="button"
class="btn btn-xs btn-inherent_role btn-{% if is_dept_head %}plain{% else %}default{% endif %}"
class="btn btn-sm btn-inherent_role btn-{% if not is_dept_head %}outline-{% endif %}secondary"
data-role="dept_head"
{% if is_dept_head %}
title="Remove {{ attendee.full_name }} as a department head of the {{ department.name }} department"
Expand All @@ -111,7 +112,7 @@
</button>{%- endif -%}
<button
type="button"
class="btn btn-xs btn-inherent_role btn-{% if is_poc %}plain{% else %}default{% endif %}"
class="btn btn-sm btn-inherent_role btn-{% if not is_poc %}outline-{% endif %}secondary"
data-role="poc"
{% if is_poc %}
title="Remove {{ attendee.full_name }} as a point of contact of the {{ department.name }} department"
Expand All @@ -122,7 +123,7 @@
</button>{#- strip whitespace -#}
<button
type="button"
class="btn btn-xs btn-inherent_role btn-{% if is_checklist_admin %}plain{% else %}default{% endif %}"
class="btn btn-sm btn-inherent_role btn-{% if not is_checklist_admin %}outline-{% endif %}secondary"
data-role="checklist_admin"
{% if is_checklist_admin %}
title="Remove {{ attendee.full_name }} as a checklist admin of the {{ department.name }} department"
Expand Down Expand Up @@ -247,7 +248,7 @@ <h4 class="modal-title" id="edit_department_title">
<h1>
{{ department.name }} Department
{% if is_admin_dept_head -%}
<button type="button" class="btn btn-xs btn-primary" data-bs-toggle="modal" data-bs-target="#edit_department">
<button type="button" class="btn btn-sm btn-primary" data-bs-toggle="modal" data-bs-target="#edit_department">
<i class="fa fa-cog"></i>
</button>
<form
Expand All @@ -264,7 +265,7 @@ <h1>
<input
type="submit"
value="Delete Department"
class="btn btn-xs btn-danger"
class="btn btn-sm btn-danger"
{% if department.member_count > 1 %}disabled="disabled"{% endif %}>
</form>
{%- endif %}
Expand Down Expand Up @@ -315,7 +316,7 @@ <h3>
Roles
{% if can_admin_dept -%}
<a
class="btn btn-xs btn-primary"
class="btn btn-sm btn-primary"
title="Create a new department role"
href="role?department_id={{ department.id }}">
<i class="fa fa-plus"></i>
Expand Down Expand Up @@ -350,7 +351,7 @@ <h3>
{% if can_admin_dept -%}
<td class="controls">
<a
class="btn btn-xs btn-primary"
class="btn btn-sm btn-primary"
title="Edit the {{ role.name }} department role"
href="role?id={{ role.id }}">
<i class="fa fa-cog"></i>
Expand All @@ -363,7 +364,7 @@ <h3>
title="Delete the {{ role.name }} department role">
{{ csrf_token() }}
<input type="hidden" name="id" value="{{ role.id }}">
<button type="submit" class="btn btn-xs btn-danger">
<button type="submit" class="btn btn-sm btn-danger">
<i class="fa fa-remove"></i>
</button>
</form>
Expand Down Expand Up @@ -468,7 +469,7 @@ <h3>Members</h3>
{{ csrf_token() }}
<input type="hidden" name="department_id" value="{{ department.id }}" />
<input type="hidden" name="attendee_id" value="{{ attendee.id }}" />
<button type="submit" class="btn btn-xs btn-danger">
<button type="submit" class="btn btn-sm btn-danger">
<i class="fa fa-remove"></i>
</button>
</form>
Expand Down
4 changes: 2 additions & 2 deletions uber/templates/dept_admin/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<h1>
Departments
{% if filtered %}
<a class="btn btn-xs btn-plain" href="index">
<a class="btn btn-sm btn-outline-secondary" href="index">
{% else %}
<a class="btn btn-xs btn-outline-secondary" href="index?filtered=1">
<a class="btn btn-sm btn-outline-secondary" href="index?filtered=1">
{% endif %}
<i class="fa fa-filter"></i>
Show only my departments
Expand Down
4 changes: 2 additions & 2 deletions uber/templates/dept_admin/requests.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ <h2>
</h2>
<p class="subheader">
{% if requested_any %}
<a class="btn btn-xs btn-plain" href="requests?department_id={{ department.id }}">
<a class="btn btn-sm btn-outline-secondary" href="requests?department_id={{ department.id }}">
{% else %}
<a class="btn btn-xs btn-outline-secondary" href="requests?department_id={{ department.id }}&requested_any=1">
<a class="btn btn-sm btn-outline-secondary" href="requests?department_id={{ department.id }}&requested_any=1">
{% endif %}
<i class="fa fa-filter"></i>
Include volunteers willing to help Anywhere
Expand Down
4 changes: 2 additions & 2 deletions uber/templates/dept_checklist/overview.html
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@
<h2>
Department Checklists
{% if filtered %}
<a class="btn btn-xs btn-outline-secondary" href="overview">
<a class="btn btn-sm btn-outline-secondary" href="overview">
{% else %}
<a class="btn btn-xs btn-outline-secondary" href="overview?filtered=1">
<a class="btn btn-sm btn-outline-secondary" href="overview?filtered=1">
{% endif %}
<i class="fa fa-lg fa-filter"></i>
Show only my checklists
Expand Down
4 changes: 2 additions & 2 deletions uber/templates/group_admin/guests.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
{% if group.guest -%}
&nbsp;
<div class="btn-group" role="group" aria-label="...">
<a href="checklist_info?id={{ group.guest.id }}" class="btn btn-xs btn-outline-secondary"><i class="fa fa-cog" data-bs-toggle="tooltip" title="{{ group.guest.group_type_label }} Info"></i></a>
<a href="../guests/index?id={{ group.guest.id }}" class="btn btn-xs btn-primary"><i class="fa fa-check" data-bs-toggle="tooltip" title="{{ group.guest.group_type_label }} Checklist"></i></a>
<a href="checklist_info?id={{ group.guest.id }}" class="btn btn-sm btn-outline-secondary"><i class="fa fa-cog" data-bs-toggle="tooltip" title="{{ group.guest.group_type_label }} Info"></i></a>
<a href="../guests/index?id={{ group.guest.id }}" class="btn btn-sm btn-primary"><i class="fa fa-check" data-bs-toggle="tooltip" title="{{ group.guest.group_type_label }} Checklist"></i></a>
</div>
{% endif %}
</span>
Expand Down
4 changes: 2 additions & 2 deletions uber/templates/group_admin/mivs.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
{% if group.guest -%}
&nbsp;
<div class="btn-group" role="group" aria-label="...">
<a href="checklist_info?id={{ group.guest.id }}" class="btn btn-xs btn-outline-secondary"><i class="fa fa-cog" data-bs-toggle="tooltip" title="{{ group.guest.group_type_label }} Info"></i></a>
<a href="../guests/index?id={{ group.guest.id }}" class="btn btn-xs btn-primary"><i class="fa fa-check" data-bs-toggle="tooltip" title="{{ group.guest.group_type_label }} Checklist"></i></a>
<a href="checklist_info?id={{ group.guest.id }}" class="btn btn-sm btn-outline-secondary"><i class="fa fa-cog" data-bs-toggle="tooltip" title="{{ group.guest.group_type_label }} Info"></i></a>
<a href="../guests/index?id={{ group.guest.id }}" class="btn btn-sm btn-primary"><i class="fa fa-check" data-bs-toggle="tooltip" title="{{ group.guest.group_type_label }} Checklist"></i></a>
</div>
{% endif %}
</span>
Expand Down
2 changes: 1 addition & 1 deletion uber/templates/guest_reports/rock_island.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

{% macro empty_filter(only_empty) %}
<a
class="filter btn btn-xs btn-{% if only_empty %}plain{% else %}default{% endif %}"
class="filter btn btn-sm btn-{% if only_empty %}plain{% else %}default{% endif %}"
href="../guest_reports/rock_island{% if not only_empty %}?only_empty=1{% endif %}">
<i class="fa fa-filter"></i>
Show Only Empty Inventory
Expand Down
2 changes: 1 addition & 1 deletion uber/templates/promo_codes/generate_promo_codes.html
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ <h1>Promo Code Words</h1>
<div id="{{part_of_speech}}s" class="words col-sm-6 col-md-3">
<h4>
{{part_of_speech|title}}s
<button class="btn btn-clear btn-xs btn-outline-secondary pull-right" data-part_of_speech_index="{{part_of_speech_index}}">
<button class="btn btn-clear btn-sm btn-outline-secondary pull-right" data-part_of_speech_index="{{part_of_speech_index}}">
Clear All
</button>
</h4>
Expand Down
6 changes: 3 additions & 3 deletions uber/templates/registration/attendee_shifts.html
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ <h2>{{ attendee.full_name }} {% if c.AT_THE_CON and attendee.badge_num %}({{ att
<select name="job_id" {% if not jobs %}disabled="disabled"{% endif %}>
{{ options(jobs) }}
</select>
<input type="submit" value="Assign" class="btn btn-xs btn-success" {% if not jobs %}disabled="disabled"{% endif %}/>
<input type="submit" value="Assign" class="btn btn-sm btn-success" {% if not jobs %}disabled="disabled"{% endif %}/>
</form>
</td>
<td width="50%" align="right">
Expand All @@ -82,7 +82,7 @@ <h2>{{ attendee.full_name }} {% if c.AT_THE_CON and attendee.badge_num %}({{ att
<input type="hidden" name="id" value="{{ attendee.id }}" />
<b>Non-shift hours:</b>
<input type="text" class="focus" name="nonshift_hours" value="{{ attendee.nonshift_minutes / 60 }}" style="width:3.5em" />
<input type="submit" value="Update" class="btn btn-xs btn-primary"/>
<input type="submit" value="Update" class="btn btn-sm btn-primary"/>
</form>
</td>
</tr>
Expand Down Expand Up @@ -136,7 +136,7 @@ <h2>{{ attendee.full_name }} {% if c.AT_THE_CON and attendee.badge_num %}({{ att
<form method="post" action="../shifts_admin/unassign_shift">
{{ csrf_token() }}
<input type="hidden" name="shift_id" value="{{ shift.id }}" />
<input type="submit" value="Unassign" class="btn btn-xs btn-warning"/>
<input type="submit" value="Unassign" class="btn btn-sm btn-warning"/>
</form>
</td>
</tr>
Expand Down
4 changes: 2 additions & 2 deletions uber/templates/shifts_admin/job_renderer.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
))
.append(
$('<td class="text-end"></td>').append(
$('<button class="btn btn-xs btn-warning">Unassign</button>').click(function() {
$('<button class="btn btn-sm btn-warning">Unassign</button>').click(function() {
$.post('unassign', {
csrf_token: csrf_token,
id: shift.id
Expand Down Expand Up @@ -134,7 +134,7 @@
.append('<td><span class="text-nowrap">(' + job.shifts.length + '/' + job.slots + ' slots filled)</span></td>')
.append(
$('<td class="text-end"></td>').append(
jobIsFull ? '' : $('<button class="btn btn-xs btn-success">Assign</button>').click(function() {
jobIsFull ? '' : $('<button class="btn btn-sm btn-success">Assign</button>').click(function() {
var attendee = $('#attendee').val();
if (attendee) {
$.post('assign', {
Expand Down
Loading

0 comments on commit 711865b

Please sign in to comment.