Skip to content

Commit

Permalink
src/app: improve style of tags in submission
Browse files Browse the repository at this point in the history
Improve the style of tags in the submission interface by adding a
slight rounded border like other input types.
  • Loading branch information
alanorth committed Sep 10, 2023
1 parent 459a431 commit 6d09291
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[wrapperClass]="'border-bottom border-light'">

<input *ngIf="!model.hasAuthority"
class="border-0 form-control-plaintext tag-input flex-grow-1 mt-1 mb-1"
class="border rounded form-control-plaintext tag-input flex-grow-1 mt-1 mb-1"
type="text"
role="textbox"
[class.pl-3]="chips.hasItems()"
Expand All @@ -23,7 +23,7 @@

<div *ngIf="model.hasAuthority" class="position-relative right-addon">
<i *ngIf="searching" class="fas fa-circle-notch fa-spin fa-2x fa-fw text-primary position-absolute mt-1 p-0" aria-hidden="true"></i>
<input class="border-0 form-control-plaintext tag-input flex-grow-1 mt-1 mb-1"
<input class="border rounded form-control-plaintext tag-input flex-grow-1 mt-1 mb-1"
type="text"
[attr.aria-labelledby]="'label_' + model.id"
[(ngModel)]="currentValue"
Expand Down

0 comments on commit 6d09291

Please sign in to comment.