Skip to content

Commit

Permalink
Updated news
Browse files Browse the repository at this point in the history
  • Loading branch information
phax committed Jun 9, 2021
1 parent fe77328 commit 4ba5eaa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,8 @@ Configuration items are:

## News and noteworthy

* v6.3.4 - 2021-06-09
* Fixed an error with the shorthand expansion of `border-width` ([PR #68](https://github.com/phax/ph-css/pull/68)) - thanks @rockwotj
* v6.3.3 - 2021-05-31
* Allow unknown rules inside `@media` rules ([issue #67](https://github.com/phax/ph-css/issues/67)) - thanks @yinkwok-ys
* v6.3.2 - 2021-05-25
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ public final class CSSShortHandRegistry
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_LEFT_COLOR,
ECSSColor.BLACK.getName ())));
registerShortHandDescriptor (new CSSShortHandDescriptorWithAlignment (ECSSProperty.BORDER_WIDTH,
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_TOP_WIDTH,
ECSSUnit.px (3)),
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_RIGHT_WIDTH,
ECSSUnit.px (3)),
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_BOTTOM_WIDTH,
ECSSUnit.px (3)),
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_LEFT_WIDTH,
ECSSUnit.px (3))));
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_TOP_WIDTH,
ECSSUnit.px (3)),
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_RIGHT_WIDTH,
ECSSUnit.px (3)),
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_BOTTOM_WIDTH,
ECSSUnit.px (3)),
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_LEFT_WIDTH,
ECSSUnit.px (3))));
registerShortHandDescriptor (new CSSShortHandDescriptorWithAlignment (ECSSProperty.BORDER_STYLE,
new CSSPropertyWithDefaultValue (CCSSProperties.BORDER_TOP_STYLE,
CCSSValue.SOLID),
Expand Down

0 comments on commit 4ba5eaa

Please sign in to comment.