Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Quirk in css #6

Open
net-me opened this issue Feb 19, 2012 · 1 comment
Open

Quirk in css #6

net-me opened this issue Feb 19, 2012 · 1 comment

Comments

@net-me
Copy link

net-me commented Feb 19, 2012

All handler-css-tags need to be a closed by standard css-tag. Why?
For example:
.b { -vendor-border-radius: 5px; } > .b{-vendor-border-radius:5px}

but,

.b { -vendor-border-radius: 5px; display: block; /* or any other css-property */ }

-o-border-radius:5px;-ms-border-radius:5px;display:block}```

And as I seen, the last css-handler-tag is not substituted.

For example:

.b { -vendor-border-radius: 5px; gradient: rgba(255,255,255,1)_rgba(255,255,255,0.6); } >

-o-border-radius:5px;-ms-border-radius:5px;gradient:rgba(255,255,255,1)_rgba(255,255,255,0.6)}```

To fix it add ```display:block``` or another css-property after handlers

Correctly work only ```data-url``` replace.
@net-me
Copy link
Author

net-me commented Feb 19, 2012

It's a realy quirks : )
When i patched my handlers.js to use require('util')
It began to correctly generate css : ]

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant