Bugzilla – Attachment 170261 Details for
Bug 37605
Why do the vue apps use 'dialog' in place of modals?
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 37605: Replace close with closebtn class and reverse order of heading, button in header
Bug-37605-Replace-close-with-closebtn-class-and-re.patch (text/plain), 4.10 KB, created by
Paul Derscheid
on 2024-08-13 11:19:40 UTC
(
hide
)
Description:
Bug 37605: Replace close with closebtn class and reverse order of heading, button in header
Filename:
MIME Type:
Creator:
Paul Derscheid
Created:
2024-08-13 11:19:40 UTC
Size:
4.10 KB
patch
obsolete
>From 1623a4d0def80124d69af381f80b4e145387211b Mon Sep 17 00:00:00 2001 >From: Paul Derscheid <paul.derscheid@lmscloud.de> >Date: Tue, 13 Aug 2024 11:16:01 +0000 >Subject: [PATCH] Bug 37605: Replace close with closebtn class and reverse > order of heading, button in header > >This gets the modal header in line with the koha convention and fixes the close button >visually appearing as a new block. >--- > .../prog/js/vue/components/Dialog.vue | 35 +++++++++---------- > 1 file changed, 17 insertions(+), 18 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue >index d7e72716b0..6f6b4f327c 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue >+++ b/koha-tmpl/intranet-tmpl/prog/js/vue/components/Dialog.vue >@@ -11,18 +11,18 @@ > <div class="modal-dialog modal-dialog-centered" role="document"> > <div class="modal-content"> > <div class="modal-header"> >- <h4 >- class="modal-title" >- v-html="confirmation.title" >- ></h4> > <button > type="button" >- class="close" >+ class="closebtn" > aria-label="Close" > @click="removeConfirmationMessages" > > > <span aria-hidden="true">×</span> > </button> >+ <h4 >+ class="modal-title" >+ v-html="confirmation.title" >+ ></h4> > </div> > <div class="modal-body"> > <p v-html="confirmation.message"></p> >@@ -98,18 +98,18 @@ > <div class="modal-dialog modal-dialog-centered" role="document"> > <div class="modal-content"> > <div class="modal-header"> >- <h4 >- class="modal-title" >- v-html="confirmation.title" >- ></h4> > <button > type="button" >- class="close" >+ class="closebtn" > aria-label="Close" > @click="removeConfirmationMessages" > > > <span aria-hidden="true">×</span> > </button> >+ <h4 >+ class="modal-title" >+ v-html="confirmation.title" >+ ></h4> > </div> > <div class="modal-body text-center"> > <div class="spinner-border text-primary" role="status"> >@@ -152,18 +152,17 @@ > <div class="modal-dialog modal-dialog-centered" role="document"> > <div class="modal-content"> > <div class="modal-header"> >- <h4 >- class="modal-title" >- v-html="confirmation.title" >- ></h4> > <button > type="button" >- class="close" >+ class="closebtn" > aria-label="Close" > @click="removeConfirmationMessages" >- > >- <span aria-hidden="true">×</span> >- </button> >+ ></button> >+ <h4 >+ class="modal-title" >+ v-html="confirmation.title" >+ ></h4> >+ <span aria-hidden="true">×</span> > </div> > <div class="modal-body text-center"> > <div class="spinner-border text-info" role="status"> >-- >2.46.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 37605
:
170225
|
170257
|
170258
|
170259
|
170261
|
170971
|
170972
|
170973
|
170974