vivliostyle
Advanced tools
Comparing version 0.2.1-pre.20151113080827 to 0.2.1-pre.20151119030910
@@ -26,2 +26,4 @@ # Change Log | ||
- <https://github.com/vivliostyle/vivliostyle.js/issues/75> | ||
- Accept flexbox properties | ||
- <https://github.com/vivliostyle/vivliostyle.js/issues/90> | ||
@@ -28,0 +30,0 @@ ### Changed |
{ | ||
"name": "vivliostyle", | ||
"version": "0.2.1-pre.20151113080827", | ||
"version": "0.2.1-pre.20151119030910", | ||
"description": "Library for web sites with rich paged viewing and EPUB support, shared with Vivliostyle Formatter & Browser", | ||
@@ -5,0 +5,0 @@ "scripts": { |
@@ -111,3 +111,3 @@ /* | ||
table-header-group | table-footer-group | table-row | table-column-group | table-column | | ||
table-cell | table-caption | none | oeb-page-head | oeb-page-foot | flex; | ||
table-cell | table-caption | none | oeb-page-head | oeb-page-foot | flex | inline-flex; | ||
elevation = ANGLE | below | level | above | higher | lower; | ||
@@ -136,4 +136,4 @@ empty-cells = show | hide; | ||
max-width = NPLENGTH; | ||
min-height = PLENGTH; | ||
min-width = PLENGTH; | ||
min-height = auto | PLENGTH; | ||
min-width = auto | PLENGTH; | ||
orphans = POS_INT; | ||
@@ -319,2 +319,16 @@ outline-color = COLOR | invert; | ||
/* CSS Flex box */ | ||
FLEX_BASIS = content | PAPLENGTH; | ||
flex-direction = row | row-reverse | column | column-reverse; | ||
flex-wrap = nowrap | wrap | wrap-reverse; | ||
order = INT; | ||
flex-grow = NNEG_NUM; | ||
flex-shrink = NNEG_NUM; | ||
flex-basis = FLEX_BASIS; | ||
flex = none | [ [ NNEG_NUM NNEG_NUM? ] || FLEX_BASIS ]; | ||
justify-content = flex-start | flex-end | center | space-between | space-around; | ||
align-items = flex-start | flex-end | center | baseline | stretch; | ||
align-self = auto | flex-start | flex-end | center | baseline | stretch; | ||
align-content = flex-start | flex-end | center | space-between | space-around | stretch; | ||
/* Pointer Events */ | ||
@@ -365,2 +379,4 @@ [ms]touch-action = auto | none | [ pan-x || pan-y ] | manipulation; | ||
outline-width: 3px; | ||
flex-direction: row; | ||
flex-wrap: nowrap; | ||
font-family: serif; | ||
@@ -404,2 +420,3 @@ font-style: normal; | ||
column-rule = column-rule-width column-rule-style column-rule-color; | ||
flex-flow = flex-direction flex-wrap; | ||
oeb-column-number = column-count; | ||
@@ -406,0 +423,0 @@ outline = outline-width outline-style outline-color; |
6328790