Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/8.2' into 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
markusguenther committed Jan 19, 2024
2 parents 2204bb1 + c1133f7 commit 5b5e113
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
2 changes: 2 additions & 0 deletions Classes/Domain/Model/Changes/Property.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,8 @@ public function canApply()
if (!\is_array($validatorConfiguration)) {
$validatorConfiguration = [];
}
// Fixes "Unsupported validation option(s) found: validationErrorMessage" by omitting this option https://github.com/neos/neos-ui/issues/3691
unset($validatorConfiguration['validationErrorMessage']);
if ($this->nodePropertyValidationService->validate($this->value, $validatorName, $validatorConfiguration) === false) {
return false;
}
Expand Down
21 changes: 19 additions & 2 deletions packages/react-ui-components/src/Tree/node.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
margin: 0;
position: relative;
line-height: 20px;

&:hover {
background: var(--colors-PrimaryBlueHover)25;
}
}
.header__chevron {
composes: reset from '../reset.module.css';
Expand All @@ -18,8 +22,8 @@

cursor: pointer;

&:hover {
color: var(--colors-PrimaryBlue);
&:hover > svg {
color: var(--colors-PrimaryBlueHover);
}
}
.header__chevron--isCollapsed > svg {
Expand All @@ -43,6 +47,11 @@
display: inline-block;
position: absolute;
text-align: center;

.header:hover & > svg,
.header__data--isActive & > svg {
color: var(--colors-PrimaryBlueHover);
}
}

.header__data {
Expand Down Expand Up @@ -74,6 +83,9 @@

.header__data--isFocused {
background: var(--colors-ContrastNeutral);
&:hover {
background: var(--colors-PrimaryBlue)10;
}

&.header__data--isHiddenInIndex,
&.header__data--isHidden {
Expand All @@ -100,9 +112,14 @@
composes: reset from '../reset.module.css';
margin-left: 2em;

.header:hover &,
.header__data--isActive & {
color: var(--colors-PrimaryBlue);
}

&:hover {
color: var(--colors-PrimaryBlueHover);
}
}

.contents {
Expand Down

0 comments on commit 5b5e113

Please sign in to comment.