Skip to content

Commit

Permalink
[5.2] Fix double closing Curly braces in inline style (#44532)
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrezdev authored Nov 28, 2024
1 parent a35011f commit 692ce54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions administrator/templates/atum/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ function adjustColorLightness($r, $g, $b, $percent)
->addInlineStyle(':root[data-color-scheme="dark"] {
--link-color: ' . $linkColorDark . ';
--link-color-rgb: ' . $rd . ',' . $gd . ',' . $bd . ';
--link-color-rgb-hvr: ' . $linkColorDarkHvr . ';
--link-color-rgb-hvr: ' . $linkColorDarkHvr . ';
--template-special-color: #6fbfdb;
}}');
}');

// Override 'template.active' asset to set correct ltr/rtl dependency
$wa->registerStyle('template.active', '', [], [], ['template.atum.' . ($this->direction === 'rtl' ? 'rtl' : 'ltr')]);
Expand Down

0 comments on commit 692ce54

Please sign in to comment.