We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
keyframes and piece of css below remains uncolored:
<html> <head> <style type="text/css"> @-moz-keyframes blinkframes { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } } @-webkit-keyframes blinkframes { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } } @keyframes blinkframes { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } } .blink { -moz-animation: blinkframes 1s linear 0s infinite alternate; -webkit-animation: blinkframes 1s linear 0s infinite alternate; animation: blinkframes 1s linear 0s infinite alternate; } html{ height: 100vh; position: fixed; overflow: hidden; margin: 0; padding: 0; border: 0 none; width: 100%; } body { min-height: 100vh; overflow: visible; margin: 0; padding: 0; border: 0 none; position: static; color: #000; font-size: 12px; font-family: tahoma, arial, verdana, sans-serif; } #loading-screen { position: absolute; left:0; right:0; top:0; bottom:0; z-index: 20000; } #loading-screen-left { position: absolute; left:0; top:0; bottom:0; width: 320px; background: #f0f0f0; } .start-left-bottom-logo{ position:absolute; bottom:5px; text-align:center; width:100%; overflow: visible; font-weight: normal; font-family: tahoma, arial, verdana, sans-serif; font-size: 11px; } .start-left-bottom-logo img{ height:50px; position: relative; left:-15px; } .login-pad { background-color: #4F81BD; background-image: url('themes/css/img/login-bg.png'); background-repeat: no-repeat; background-position: bottom right; background-size: 500px; } </style> </head> <body> </body> </html>
Native HTML syntax fails too.
The text was updated successfully, but these errors were encountered:
Vendor prefixes were missing, fixed in https://github.com/borela/naomi/releases/tag/v4.2.9
Sorry, something went wrong.
Thank you! Looks like sublime updated Naomi from github by himself, now this case work correctly without any git pull
No branches or pull requests
keyframes and piece of css below remains uncolored:
Native HTML syntax fails too.
The text was updated successfully, but these errors were encountered: