-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VACMS-20126: update composer based dependencies (#20131)
* VACMS-20126: update drupal core to 10.3.10 * VACMS-20126: update default_content_deploy and search_api * VACMS-20126: update easy_breadcrumb * VACMS-20126: update eca, removed patch tha was fixed * VACMS-20126: update datadog/dd-trace * VACMS-20126: update consolidation/site-process * VACMS-20126: update drupal/entity_reference_unpublished * VACMS-20126: update drupal/entity_usage * VACMS-20126: update drupal/entityqueue * VACMS-20126: update drupal/environment_indicator remove patch that was fixed * VACMS-20126: update drupal/epp * VACMS-20126: update drupal/fast_404 * VACMS-20126: update drupal/geocoder and drupal/geofield_map * VACMS-20126: update drupal/google_analytics * VACMS-20126: update drupal/markup * VACMS-20126: update drupal/migrate_plus * VACMS-20126: update drupal/override_node_options * VACMS-20126: update drupal/pathologic * VACMS-20126: update drupal/raven * VACMS-20126: update drupal/viewfield * VACMS-20126: update drupal/tzfield * VACMS-20126: update drupal/views_data_export * VACMS-20126: update drupal/simplesamlphp_auth * VACMS-20126: update php-http/guzzle7-adapter * VACMS-20126: update mglaman/phpstan-drupal * VACMS-20126: update phpspec/prophecy-phpunit * VACMS-20126: update squizlabs/php_codesniffer * VACMS-20126: update phpstan/phpstan * VACMS-20126: update symfony/phpunit-bridge * Revert "VACMS-20126: update drupal/environment_indicator remove patch that was fixed" This reverts commit 16c276b. * VACMS-20126: updates for environmental_indicator regressions * VACMS-20126: updates for environmental_indicator regressions * VACMS-20126: updates for environmental_indicator regressions * VACMS-20126: updated composer.lock and robots.txt * VACMS-20126: stylelint fx
- Loading branch information
1 parent
18174d6
commit 0a34fa1
Showing
9 changed files
with
662 additions
and
420 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
patches/VACMS-20126-fix-for-change-in-class-for-toolbar.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/js/environment_indicator.js b/js/environment_indicator.js | ||
--- a/js/environment_indicator.js (revision 520137b406f6428b0e6e605750fe75c1caf2c5c2) | ||
+++ b/js/environment_indicator.js (date 1734556460416) | ||
@@ -19,10 +19,10 @@ | ||
// Only apply text and background color if not using gin_toolbar | ||
if (!$body.hasClass('gin--vertical-toolbar') && !$body.hasClass('gin--horizontal-toolbar')) { | ||
$('.toolbar .toolbar-bar .toolbar-tab > .toolbar-item').css('background-color', settings.environmentIndicator.bgColor); | ||
- $('#toolbar-bar .toolbar-tab a.toolbar-item', context).css('border-bottom', '0px'); | ||
- $('#toolbar-bar .toolbar-tab a.toolbar-item', context).css('color', settings.environmentIndicator.fgColor); | ||
+ $('#toolbar-bar .toolbar-item', context).css('border-bottom', '0px'); | ||
+ $('#toolbar-bar .toolbar-item', context).css('color', settings.environmentIndicator.fgColor); | ||
$('#toolbar-bar', context).css('background-color', settings.environmentIndicator.bgColor); | ||
- $('#toolbar-bar .toolbar-tab a.toolbar-item', context).not('.is-active').css('color', settings.environmentIndicator.fgColor); | ||
+ $('#toolbar-bar .toolbar-item', context).not('.is-active').css('color', settings.environmentIndicator.fgColor); | ||
} | ||
|
||
// Set environment color for gin_toolbar vertical toolbar. |