Harbs commented on issue #30: CSS element > element selector is ignored
URL: https://github.com/apache/royale-compiler/issues/30#issuecomment-375472414
 
 
   Yes. That's allowed. I'm successfully using some CSS that looks like this:
   ````
           .tabs > li {
               transition-duration: .1s;
               display: table-cell;
               list-style: none;
               text-align: center;
               /* padding: 0px 20px 25px 20px; */
               position: relative;
               overflow: hidden;
               cursor: pointer;
               color: white; 
               z-index: 1;
           }
           .tabs > li:before {
               z-index: -1;
               position: absolute;
               content: "";
               width: 100%;
               height: 120%;
               top: 0;
               left: 0;
               background-color: rgba(255, 255, 255, 0.3);
               -webkit-transform: translateY(100%);
               transform: translateY(100%);
               transition-duration: .1s;
               border-radius: 5px 5px 0 0;
           }
   ````
   However, this syntax *does* work for me when the namespace is:
   `@namespace "http://www.w3.org/1999/xhtml";`
   
   Carlos, can you confirm that this does not work?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to