jmuehlner commented on code in PR #942:
URL: https://github.com/apache/guacamole-client/pull/942#discussion_r1450967181


##########
guacamole/src/main/frontend/src/app/client/styles/menu.css:
##########
@@ -137,10 +137,10 @@
 .menu,
 .menu.closed {
     left: -480px;
-    opacity: 0;
+    visibility: hidden;
 }
 
 .menu.open {
     left: 0px;
-    opacity: 1;
+    visibility: visible;

Review Comment:
   ~Ah, let me fix that transition to do `visibility` instead. Good call.~ Err, 
well, I guess `transition` isn't a transitionable property ... but `opacity` is 
a problem. 
   
   I want to be able to render things in the menu even when the menu is closed, 
but the `opacity: 0` can't be overriden by a child using `opacity: 1` or 
similar. I guess I'll just have to remove this transition, sadly. Unless anyone 
has any other ideas.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@guacamole.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to