Skip to content

Commit 644bfe5

Browse files
committed
Convert Change Status dropright button to vertical dots icon in View Ticket template
1 parent 9307614 commit 644bfe5

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

tickets/templates/view_ticket.html

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<!-- Details Pane -->
2121
<div class="tab-pane fade show active" id="nav-home" role="tabpanel" aria-labelledby="nav-home-tab">
2222
{% if ticket.status == "New" %}
23-
<div class="jumbotron bg-cyan-light">
23+
<div class="jumbotron bg-light-blue">
2424
{% elif ticket.status == "In Progress" %}
2525
<div class="jumbotron bg-warning-light">
2626
{% elif ticket.status == "Resolved" %}
@@ -230,10 +230,9 @@ <h4 class="display-5">{{ ticket.summary}}
230230
class="material-icons-outlined align-bottom">edit</i> Edit Ticket</a>
231231
<!-- Status change via dropdown -->
232232
<div class="btn-group">
233-
<button class="btn btn-outline-dark dropdown-toggle" type="button" data-toggle="dropdown"
234-
aria-haspopup="true" aria-expanded="false"><span class="material-icons align-top">
235-
speed
236-
</span> Status
233+
<button class="btn btn-sm" type="button" data-toggle="dropdown" aria-haspopup="true"
234+
aria-expanded="false">
235+
<span class="material-icons align-top">more_vert</span>
237236
</button>
238237
<div class="dropdown-menu dropdown-menu-left">
239238
<h6 class="dropdown-header">Set to:</h6>
@@ -320,7 +319,7 @@ <h5><i class="material-icons align-top">insert_comment</i> Comments ({{ comments
320319
<!-- Change History Pane -->
321320
<div class="tab-pane fade" id="nav-profile" role="tabpanel" aria-labelledby="nav-profile-tab">
322321
{% if ticket.status == "New" %}
323-
<div class="jumbotron bg-cyan-light">
322+
<div class="jumbotron bg-light-blue">
324323
{% elif ticket.status == "In Progress" %}
325324
<div class="jumbotron bg-warning-light">
326325
{% elif ticket.status == "Resolved" %}

0 commit comments

Comments
 (0)