Bugzilla – Attachment 174107 Details for
Bug 38379
Remove obsolete Bootstrap classes from installer templates
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38379: Remove obsolete Bootstrap classes from installer templates
Bug-38379-Remove-obsolete-Bootstrap-classes-from-i.patch (text/plain), 7.68 KB, created by
Paul Derscheid
on 2024-11-07 09:57:10 UTC
(
hide
)
Description:
Bug 38379: Remove obsolete Bootstrap classes from installer templates
Filename:
MIME Type:
Creator:
Paul Derscheid
Created:
2024-11-07 09:57:10 UTC
Size:
7.68 KB
patch
obsolete
>From fd6c919c148d52f84118ee55bd61e1d678196fc0 Mon Sep 17 00:00:00 2001 >From: Owen Leonard <oleonard@myacpl.org> >Date: Wed, 6 Nov 2024 13:44:08 +0000 >Subject: [PATCH] Bug 38379: Remove obsolete Bootstrap classes from installer > templates > >This patch makes some minor markup changes to the installer and >onboarding templates so that obsolete Bootstrap grid classes are >removed. The patch also adds another breakpoint to the grid classes to >that the content adjusts well at smaller viewport sizes. > >To test, apply the patch and rebuild the staff interface CSS. > >- Drop and recreate the Koha database. Run 'restart_all' if necessary. >- Navigate to the staff interface. You should be presented with the > installer login. The form should be centered on the page. >- Log in and follow the installer and onboarding steps to confirm that > the layout looks correct on each page. > >Signed-off-by: Lucas Gass <lucas@bywatersolutions.com> >Signed-off-by: Paul Derscheid <paul.derscheid@lmscloud.de> >--- > koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt | 2 +- > .../intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt | 2 +- > .../intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt | 2 +- > .../intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt | 2 +- > .../intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt | 2 +- > .../intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt | 2 +- > 8 files changed, 8 insertions(+), 8 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt >index ea7fc9b9f5..aa5a18782e 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step1.tt >@@ -24,7 +24,7 @@ > <body id="installer" class="installer"> > <div class="container-fluid"> > <div class="row"> >- <div id="installer-step1" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 offset-md-2"> >+ <div id="installer-step1" class="installer-main col-sm-10 col-md-8 offset-sm-1 offset-md-2"> > > <div id="logo"><a href="#">Koha</a></div> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt >index 882db4fc23..54b981bc75 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step2.tt >@@ -13,7 +13,7 @@ > <body id="installer" class="installer"> > <div class="container-fluid"> > <div class="row"> >- <div id="installer-step2" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 offset-md-2"> >+ <div id="installer-step2" class="installer-main col-sm-10 col-md-8 offset-sm-1 offset-md-2"> > > > <div id="logo"><a href="#">Koha</a></div> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt >index 6590b93e7e..63b2ba19b6 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/installer/step3.tt >@@ -45,7 +45,7 @@ > <body id="installer" class="installer"> > <div class="container-fluid"> > <div class="row"> >- <div id="installer-step3" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 offset-md-2"> >+ <div id="installer-step3" class="installer-main col-sm-10 col-md-8 offset-sm-1 offset-md-2"> > <div id="logo"><a href="#">Koha</a></div> > [% IF ( finish ) %] > <h1>Web installer › Installation complete</h1> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt >index 000f75ab43..b06865071b 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep1.tt >@@ -13,7 +13,7 @@ > <body id="installer" class="installer"> > <div class="container-fluid"> > <div class="row"> >- <div id="onboarding-step1" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 offset-md-2"> >+ <div id="onboarding-step1" class="installer-main col-sm-10 col-md-8 offset-sm-1 offset-md-2"> > <div id="logo"><a href="#">Koha</a></div> > <h1>Web installer › Create a library</h1> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt >index 205ad99745..59bf61bcd3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep2.tt >@@ -22,7 +22,7 @@ > <body id="installer" class="installer"> > <div class="container-fluid"> > <div class="row"> >- <div id="onboarding-step2" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 offset-md-2"> >+ <div id="onboarding-step2" class="installer-main col-sm-10 col-md-8 offset-sm-1 offset-md-2"> > <div id="logo"><a href="#">Koha</a></div> > > <h1>Web installer › Create a patron category</h1> >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt >index 40b041cc23..ad400a8c16 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep3.tt >@@ -14,7 +14,7 @@ > <body id="installer" class="installer"> > <div class="container-fluid"> > <div class="row"> >- <div id="onboarding-step3" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 offset-md-2"> >+ <div id="onboarding-step3" class="installer-main col-sm-10 col-md-8 offset-sm-1 offset-md-2"> > <div id="logo"><a href="#">Koha</a></div> > <h1>Web installer › Create Koha administrator patron</h1> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt >index 2e059abbb0..d379e295df 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep4.tt >@@ -12,7 +12,7 @@ > <body id="installer" class="installer"> > <div class="container-fluid"> > <div class="row"> >- <div id="onboarding-step4" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 offset-md-2"> >+ <div id="onboarding-step4" class="installer-main col-sm-10 col-md-8 offset-sm-1 offset-md-2"> > <div id="logo"><a href="#">Koha</a></div> > <h1>Web installer › Create a new item type</h1> > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt >index ca4fc33324..e3ccac8d73 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/onboarding/onboardingstep5.tt >@@ -16,7 +16,7 @@ > <body id="installer" class="installer"> > <div class="container-fluid"> > <div class="row"> >- <div id="onboarding-step5" class="installer-main col-sm-8 col-sm-offset-2 col-md-8 offset-md-2"> >+ <div id="onboarding-step5" class="installer-main col-sm-10 col-md-8 offset-sm-1 offset-md-2"> > <div id="logo"><a href="#">Koha</a></div> > > [% IF all_done %] >-- >2.39.5
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 38379
:
174078
|
174084
| 174107