Skip to content

Commit bdd4741

Browse files
FIX: headers under Action Properties similar to gameObject component headers (#2331)
1 parent 48149e1 commit bdd4741

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

Packages/com.unity.inputsystem/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ however, it has to be formatted properly to pass verification tests.
1919

2020
- Fixed the `Auto-Save` toggle button with some extra pixels to align the text in the window better.
2121
- Align title font size with toolbar style in `Input Action` window.
22+
- Updated Action Properties headers to use colors consistent with GameObject component headers.
2223

2324
### Added
2425

Packages/com.unity.inputsystem/InputSystem/Editor/UITKAssetEditor/PackageResources/InputActionsEditorStyles.uss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,11 @@
122122

123123
.properties-foldout-toggle {
124124
background-color: var(--input-editor-colors-properties-foldout);
125+
height: 20px;
126+
}
127+
128+
.properties-foldout-toggle:hover {
129+
background-color: var(--input-editor-colors-properties-foldout-toggle-hover);
125130
}
126131

127132
.name-and-parameter-empty-label {
Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
:root {
2-
--input-editor-colors-properties-foldout: rgb(34, 34, 34);
3-
--input-editor-colors-properties-foldout-border: #808080;
2+
--input-editor-colors-properties-foldout: #3E3E3E;
3+
--input-editor-colors-properties-foldout-border: #1A1A1A;
4+
--input-editor-colors-properties-foldout-toggle-hover: #474747;
45
}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
:root {
22
--input-editor-colors-properties-foldout: #DFDFDF;
33
--input-editor-colors-properties-foldout-border: #808080;
4+
--input-editor-colors-properties-foldout-toggle-hover: #e6e6e6;
45
}

0 commit comments

Comments
 (0)