Skip to content

Commit

Permalink
Disabled sort on build target os
Browse files Browse the repository at this point in the history
  • Loading branch information
IceWreck committed Feb 25, 2020
1 parent 24fb78b commit dca622f
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions templates/builds.html
Expand Up @@ -3,7 +3,7 @@ <h2> Recent Builds</h2>

<thead>
<tr role="row">
<th class="pf-c-table__sort pf-m-selected " role="columnheader" scope="col">
<th class="pf-c-table__sort " role="columnheader" scope="col">
<button class="pf-c-button pf-m-plain" type="button">Project
<span class="pf-c-table__sort-indicator">
<i class="fas fa-arrows-alt-v"></i>
Expand All @@ -24,11 +24,8 @@ <h2> Recent Builds</h2>
</span>
</button>
</th>
<th class="pf-c-table__sort " role="columnheader" aria-sort="none" scope="col">
<th class="pf-c-table__sort sort-disabled" role="columnheader" aria-sort="none" scope="col">
<button class="pf-c-button pf-m-plain" type="button">Chroots
<span class="pf-c-table__sort-indicator">
<i class="fas fa-arrows-alt-v"></i>
</span>
</button>
</th>
<th class="pf-c-table__sort " role="columnheader" aria-sort="none" scope="col">
Expand Down Expand Up @@ -71,5 +68,10 @@ <h2> Recent Builds</h2>
"info": false
});
});

</script>

<style>
.sort-disabled {
pointer-events: none;
}
</style>

0 comments on commit dca622f

Please sign in to comment.