layout.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /**
  2. * Layouts
  3. *
  4. */
  5. @import "elements";
  6. #content, #center .page-title, #perfnode, #filters, #timeline, #timeline-container{
  7. .transition(height, 1s, ease-out);
  8. /*-webkit-transition: height, 5s, ease-out;
  9. -moz-transition: height, 5s, ease-out;
  10. -o-transition: height, 5s, ease-out;
  11. transition: height, 5s, ease-out;
  12. */
  13. }
  14. body.layout-intro{
  15. #main{ height:97%; }
  16. #perfnode{ height:0%!important; }
  17. #filters{ height:0%; }
  18. #timeline{ height:65%;
  19. #timeline-container{ height:0%; }
  20. }
  21. #timeline-loader{ display:block; margin:0 auto 5px;}
  22. }
  23. body.layout-timeline{
  24. #main{
  25. height:97%;
  26. #content, #center .page-title{height:0%;}
  27. }
  28. #perfnode{ height:0%!important; }
  29. #filters{ height:30%; }
  30. #timeline{ height:65%;
  31. #timeline-container{ height:98%; }
  32. }
  33. #timeline-loader{ display:none; }
  34. }
  35. body.layout-perfnode{
  36. #main{
  37. height:97%;
  38. #content, #center .page-title{height:0%;}
  39. }
  40. #perfnode{ height:85%!important; }
  41. #filters{ height:0%; }
  42. #timeline{ height:3%;
  43. #timeline-container{ height:0%; }
  44. }
  45. #timeline-loader{ display:none; }
  46. }