bennyboer / thaw

Hierarchical organizable and versionable document tool with export to PDF
MIT License
4 stars 1 forks source link

Support border styles #44

Closed bennyboer closed 3 years ago

bennyboer commented 3 years ago

For things like horizontal rules we need to support border properties in the style file. We currently have them defined, but they are not yet used.

    BORDER("border", new StringValueParser()),
    BORDER_TOP("border-top", new StringValueParser()),
    BORDER_BOTTOM("border-bottom", new StringValueParser()),
    BORDER_LEFT("border-left", new StringValueParser()),
    BORDER_RIGHT("border-right", new StringValueParser()),
    BORDER_COLOR("border-color", new StringValueParser()),
    BORDER_WIDTH("border-width", new StringValueParser()),
    BORDER_STYLE("border-style", new StringValueParser()),
    BORDER_RADIUS("border-radius", new StringValueParser()),
bennyboer commented 3 years ago

Done with #11