Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Packages/com.unity.inputsystem/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ however, it has to be formatted properly to pass verification tests.

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

### Added

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,11 @@

.properties-foldout-toggle {
background-color: var(--input-editor-colors-properties-foldout);
height: 20px;
}

.properties-foldout-toggle:hover {
background-color: var(--input-editor-colors-properties-foldout-toggle-hover);
}

.name-and-parameter-empty-label {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
:root {
--input-editor-colors-properties-foldout: rgb(34, 34, 34);
--input-editor-colors-properties-foldout-border: #808080;
--input-editor-colors-properties-foldout: #3E3E3E;
--input-editor-colors-properties-foldout-border: #1A1A1A;
--input-editor-colors-properties-foldout-toggle-hover: #474747;
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
:root {
--input-editor-colors-properties-foldout: #DFDFDF;
--input-editor-colors-properties-foldout-border: #808080;
--input-editor-colors-properties-foldout-toggle-hover: #e6e6e6;
}
Loading