Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix input field layout for annotation form #5164

Merged
merged 1 commit into from
Nov 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ export class AnnotationForm extends watchMixin(ShadowlessLitElement) {
` : ""}
</div>
<div class="row mb-1">
<div class="col-lg-7 col-xxl-8 align-items-center d-inline-flex">
<div class="col-xxl-8 align-items-center d-inline-flex">
${ this.canSaveAnnotation && this._savedAnnotationId == "" ? html`
<div class="field form-group mb-0">
<div class="form-check save-annotation-check">
Expand Down Expand Up @@ -312,7 +312,7 @@ export class AnnotationForm extends watchMixin(ShadowlessLitElement) {
</div>
` : ""}
</div>
<div class="col-lg-5 col-xxl-4 mt-2 mt-lg-0" style="text-align: right">
<div class="col-xxl-4 mt-2 mt-xxl-0" style="text-align: right">
<button class="btn btn-text"
type="button"
@click="${() => this.handleCancel()}"
Expand Down