_view_states.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. @mixin hide-controls() {
  2. .add-row-panel-hint,
  3. .dash-row-menu-container {
  4. display: none;
  5. }
  6. .panel-drop-zone {
  7. visibility: hidden;
  8. }
  9. }
  10. .hide-controls {
  11. @include hide-controls();
  12. }
  13. .page-kiosk-mode {
  14. @include hide-controls();
  15. dashnav {
  16. display: none;
  17. }
  18. }
  19. .playlist-active,
  20. .user-activity-low {
  21. .add-row-panel-hint,
  22. .dash-row-menu-container,
  23. .panel-drop-zone
  24. .dashnav-refresh-action,
  25. .dashnav-zoom-out,
  26. .panel-menu-container,
  27. .dashnav-action-icons,
  28. .panel-info-corner--info,
  29. .panel-info-corner--links,
  30. .dashnav-move-timeframe {
  31. opacity: 0;
  32. transition: all 1.5s ease-in-out 1s;
  33. }
  34. // navbar buttons
  35. .navbar-inner {
  36. border-color: transparent;
  37. background: transparent;
  38. transition: all 1.5s ease-in-out 1s;
  39. .fa {
  40. opacity: 0;
  41. transition: all 1.5s ease-in-out 1s;
  42. }
  43. }
  44. .navbar-page-btn {
  45. border-color: transparent;
  46. background: transparent;
  47. transform: translate3d(-40px, 0, 0);
  48. transition: all 1.5s ease-in-out 1s;
  49. .icon-gf {
  50. opacity: 0;
  51. transition: all 1.5s ease-in-out 1s;
  52. }
  53. }
  54. .gf-timepicker-nav-btn {
  55. transform: translate3d(40px, 0, 0);
  56. transition: transform 1.5s ease-in-out 1s;
  57. }
  58. }
  59. .playlist-active {
  60. .dash-playlist-actions {
  61. .fa {
  62. opacity: 1;
  63. color: $text-color-faint !important;
  64. }
  65. }
  66. }