From fcfccc4fe54078d730c76e47386f02215b226da8 Mon Sep 17 00:00:00 2001 From: David Storey Date: Mon, 23 Nov 2015 01:24:00 -0800 Subject: [PATCH] Update CSS flex box property values * auto as new (default) value for min-height and min-width * content as valid value of flex-basis * correct browser support for display: flex and display: inline-flex * remove IE support for old unprefixed flexbox display values (incorrect info) * add -webkit-flex and -webkit-inline-flex values for display. --- .../css/common/buildscripts/css-schema.xml | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/src/vs/languages/css/common/buildscripts/css-schema.xml b/src/vs/languages/css/common/buildscripts/css-schema.xml index ab220e8e95a..a78f7d96207 100644 --- a/src/vs/languages/css/common/buildscripts/css-schema.xml +++ b/src/vs/languages/css/common/buildscripts/css-schema.xml @@ -4060,8 +4060,8 @@ Either block boxes or a marker box, depending on context. Properties apply to compact boxes based on their final status. - - + + Inline boxes. @@ -4069,8 +4069,8 @@ A block box, which itself is flowed as a single inline box, similar to a replaced element. The inside of an inline-block is formatted as a block box, and the box itself is formatted as an inline box. - - + + @@ -4121,7 +4121,9 @@ + + @@ -4492,6 +4494,7 @@ The 'flex-basis' property sets the flex basis. Negative lengths are invalid. + @@ -5927,9 +5930,15 @@ Allows authors to constrain content height to a certain range. + + + Allows authors to constrain content width to a certain range. + + +