_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. .resize-panel-handle,
  7. .panel-drop-zone {
  8. visibility: hidden;
  9. }
  10. }
  11. .hide-controls {
  12. @include hide-controls();
  13. }
  14. .page-kiosk-mode {
  15. @include hide-controls();
  16. dashnav {
  17. display: none;
  18. }
  19. }
  20. .playlist-active,
  21. .user-activity-low {
  22. .add-row-panel-hint,
  23. .dash-row-menu-container,
  24. .resize-panel-handle,
  25. .panel-drop-zone
  26. .dashnav-refresh-action,
  27. .dashnav-zoom-out,
  28. .dashnav-action-icons,
  29. .dashnav-move-timeframe {
  30. opacity: 0;
  31. transition: all 1.5s ease-in-out 1s;
  32. }
  33. // navbar buttons
  34. .navbar-brand-btn,
  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(-50px, 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. }