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 com.unity.shadergraph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ The version number for this package has increased due to a version update of a r
- Fixed an issue where ShaderGraph "view shader" commands were opening in individual windows, and blocking Unity from closing [1367188]
- Improved screenspace position accuracy in the fragment shader by using VPOS [1352662] (https://issuetracker.unity3d.com/issues/shadergraph-dither-node-results-in-artifacts-when-far-from-origin-caused-by-screen-position-breaking-down)
- Fixed the node searcher results to prefer names over synonyms [1366058]
- Fixed the sticky-note editable title text size in shader graph not matching the set font size [1357657].

## [12.0.0] - 2021-01-11

Expand Down
6 changes: 3 additions & 3 deletions com.unity.shadergraph/Editor/Resources/StickyNote.uss
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
overflow:hidden;
}

.size-medium #title, .size-medium #title-field
.size-medium #title, .size-medium #title-field *
{
font-size: 40px;
}
Expand All @@ -185,7 +185,7 @@
font-size: 24px;
}

.size-large #title, .size-large #title-field
.size-large #title, .size-large #title-field *
{
font-size: 60px;
}
Expand All @@ -194,7 +194,7 @@
font-size: 36px;
}

.size-huge #title, .size-huge #title-field
.size-huge #title, .size-huge #title-field *
{
font-size: 80px;
}
Expand Down