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

html: Inline css animation #182

Closed
YuriGor opened this issue Oct 18, 2018 · 2 comments
Closed

html: Inline css animation #182

YuriGor opened this issue Oct 18, 2018 · 2 comments
Labels

Comments

@YuriGor
Copy link

YuriGor commented Oct 18, 2018

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.

@borela borela added the bug label Oct 18, 2018
@borela
Copy link
Owner

borela commented Oct 18, 2018

Vendor prefixes were missing, fixed in https://github.com/borela/naomi/releases/tag/v4.2.9

@YuriGor
Copy link
Author

YuriGor commented Oct 19, 2018

Thank you!
Looks like sublime updated Naomi from github by himself, now this case work correctly without any git pull

@YuriGor YuriGor closed this as completed Oct 19, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants