css

The CSS Language and Framework

MIT License

Downloads
6.8K
Stars
1.7K
Committers
14

Bot releases are visible (Hide)

css - v2.0.0-beta.54

Published by github-actions[bot] almost 2 years ago

New Features

  • Webpack - Watch the master.css.js config changed 59021f3

Bug Fixes

  • CSS - HEX color codes are parsed as selector bd7db75
css - v2.0.0-beta.53

Published by github-actions[bot] almost 2 years ago

Bug Fixes

  • Compiler - Import user config file path problem 1053784

Examples

Tests

  • CSS - line-height unit conversion with CSS function 4391651
  • CSS - Master CSS syntax in values cb0c52e
css - v2.0.0-beta.52

Published by github-actions[bot] almost 2 years ago

Bug Fixes

  • CSS - Exception for empty '' in nested configs 7a13731
  • CSS - Missing support for double quotes " in property values 5c0cc2f

Tests

css - v2.0.0-beta.51

Published by github-actions[bot] almost 2 years ago

Bug Fixes

  • Dependent versions of all packages in the workspace 70b6c0e
css - v2.0.0-beta.50

Published by github-actions[bot] almost 2 years ago

Bug Fixes

  • CSS - foreground|fg missed CSS variables 4e96714
css - v2.0.0-beta.49

Published by github-actions[bot] almost 2 years ago

New Features

  • CSS - Support for converting unit-valued parameters in CSS functions 6cd038d

    In the right: rule, 725/16 + rem = 45.3125rem

    - <div class="right:calc(50%-45.3125rem)">
    + <div class="right:calc(50%-725)">
    

    In the line-height: rule, keep the default unitless.

    <div class="line-height:calc(2-1.5)">
    

Bug Fixes

Tests

css - v2.0.0-beta.48

Published by github-actions[bot] almost 2 years ago

Documentation

css - v2.0.0-beta.47

Published by github-actions[bot] almost 2 years ago

Chore

Fix

  • Dependencies @master/normal.css, @master/keyframes.css (3471cc9)
css - v2.0.0-beta.45

Published by github-actions[bot] almost 2 years ago

New Features

  • Ambiguous shorthand support for config.values (7157d3b)

    Simplify markup with ambiguous behavior:

    - <div class="font-size:sm">
    + <div class="font:sm">
    

    Your master.css.js config:

    export default {
        values: {
            FontSize: {
                sm: 16
            }
        }
    }
    
    
css - v2.0.0-beta.44

Published by github-actions[bot] almost 2 years ago

New Features

  • Nested configuration for classes / mediaQueries (cbd27ad)

    export default {
        classes: {
    -       btn: 'font:14 text:center h:40',
    -       'btn-outlined': 'b:1|solid|slate-90',
    -       'btn-filled': 'bg:black fg:white',
    +       btn: {
    +           '': 'font:14 text:center h:40'
    +           outlined: 'b:1|solid|slate-90',
    +           filled: 'bg:black fg:white',
    +       }
        }
    }
    
css - v2.0.0-beta.43

Published by github-actions[bot] almost 2 years ago

Fix

css - v2.0.0-beta.40

Published by 1aron almost 2 years ago

Bug Fixes

css - v2.0.0-beta.18

Published by 1aron almost 2 years ago

Bug Fixes

  • prevent observing document when rendering (706495b)
css - v1.37.7

Published by 1aron almost 2 years ago

Bug Fixes

  • ignore handling of unchanged disconnected element (b99386f)
css - v2.0.0-beta.39

Published by 1aron almost 2 years ago

Bug Fixes

  • ignore handling of unchanged disconnected element (58ed490)
css - v2.0.0-beta.38

Published by 1aron almost 2 years ago

Features

  • support CSS property font-feature-settings (f7bdc5f)

Performance Improvements

  • minify values.FontFamily (ddbe3fd)
css - v2.0.0-beta.37

Published by 1aron almost 2 years ago

css - v2.0.0-beta.36

Published by 1aron almost 2 years ago

Bug Fixes

  • incorrect count of class (8245908)
css - v1.37.6

Published by 1aron almost 2 years ago

Bug Fixes

  • incorrect count of class (02ab08a)
css - v1.37.5

Published by 1aron almost 2 years ago

Bug Fixes

  • Ignore handling of new element removeNodes (f12cb91)