joomlagerman / joomla

The J!German translation team provides German translation for Joomla!
https://www.jgerman.de
GNU General Public License v2.0
25 stars 46 forks source link

[5.2] [Guided tours] Increase the width and adjust the height of the popup #3237

Closed jgerman-bot closed 1 month ago

jgerman-bot commented 1 month ago

New language relevant PR in upstream repo: https://github.com/joomla/joomla-cms/pull/43810 Here are the upstream changes:

Click to expand the diff! ```diff diff --git a/administrator/language/en-GB/guidedtours.joomla_welcome.ini b/administrator/language/en-GB/guidedtours.joomla_welcome.ini index 812312a3c955..7b17609ae08c 100644 --- a/administrator/language/en-GB/guidedtours.joomla_welcome.ini +++ b/administrator/language/en-GB/guidedtours.joomla_welcome.ini @@ -4,4 +4,4 @@ ; Note : All ini files need to be saved as UTF-8 COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_TITLE="Welcome to Joomla!" -COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_DESCRIPTION="

This tour will give you a quick overview of how to get started with Joomla!

You are in the Joomla Administrator area, also known as the "Backend". This is where you set up and manage your entire Joomla Site.

Want to learn more?

Let's start the tour and build your site with the power of Joomla!

" +COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_DESCRIPTION="

This tour will give you a quick overview of how to get started with Joomla!

You are in the Joomla Administrator area, also known as the "Backend".
This is where you set up and manage your entire Joomla Site.

Want to learn more?

Let's start the tour and build your site with the power of Joomla!

" diff --git a/administrator/language/en-GB/guidedtours.joomla_welcome_steps.ini b/administrator/language/en-GB/guidedtours.joomla_welcome_steps.ini index a5b805c2ead6..0a5b571c79f7 100644 --- a/administrator/language/en-GB/guidedtours.joomla_welcome_steps.ini +++ b/administrator/language/en-GB/guidedtours.joomla_welcome_steps.ini @@ -7,7 +7,7 @@ COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_MENUS_TITLE="The Menu" COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_MENUS_DESCRIPTION="

The menu provides access to the Administrator management pages. Each section has a collection of pages for managing that particular aspect of Joomla, such as Content, Menus and Users.

The window pane icons link to individual dashboards for those sections. The System menu itself leads to a dashboard.

" COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_TITLE="The Dashboard Panels" -COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_DESCRIPTION="

Dashboards provide quick access to frequently used pages via their icons.

Each dashboard panel is an Administrator module that can be customised via its Settings icon . This allows you to configure your site dashboards to suit your own purposes.

" +COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_DESCRIPTION="

Dashboards provide quick access to frequently used pages via their icons.

Each dashboard panel is an Administrator module that can be customised via its Settings icon .
This allows you to configure your site dashboards to suit your own purposes.

" COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_NOTIFICATIONS_TITLE="The Notifications Panel" COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_NOTIFICATIONS_DESCRIPTION="

The Notifications panel shows when updates are available for Joomla and other extensions. Outstanding Privacy Requests are also shown here.

" diff --git a/build/media_source/plg_system_guidedtours/scss/guidedtours.scss b/build/media_source/plg_system_guidedtours/scss/guidedtours.scss index 745ce31ed52c..d4f6b865e79e 100644 --- a/build/media_source/plg_system_guidedtours/scss/guidedtours.scss +++ b/build/media_source/plg_system_guidedtours/scss/guidedtours.scss @@ -5,6 +5,15 @@ @import "../../../../node_modules/shepherd.js/dist/css/shepherd"; +.shepherd-element { + width: max-content; + max-width: min(600px, 90%); +} + +.shepherd-element.shepherd-centered { + max-width: min(1200px, 90%); +} + .shepherd-modal-overlay-container.shepherd-modal-is-visible { opacity: .7; } @@ -30,13 +39,16 @@ } .shepherd-text { - padding: 1em; + max-height: calc(100vh - 240px); + padding: 1rem 1rem 0; + overflow-y: auto; line-height: 1.5em; } .shepherd-footer { display: grid; grid-template-columns: repeat(3, 1fr); + padding: 1rem; } .shepherd-button-primary { ```
zero-24 commented 1 month ago

PR: #3238