Fix CSS to hide grid controls in fullscreen/low-activity views

* there was a comma missing to hide the handles, fixed now
* added new styles to hide header interaction in full screen panels
pull/12107/head
David Kaltschmidt 7 years ago
parent 40844614bf
commit ac1dda3b3a
  1. 14
      public/sass/components/_dashboard_grid.scss
  2. 3
      public/sass/components/_view_states.scss

@ -18,6 +18,20 @@
height: 100% !important;
transform: translate(0px, 0px) !important;
}
// Disable grid interaction indicators in fullscreen panels
.panel-header:hover {
background-color: inherit;
}
.panel-title-container {
cursor: pointer;
}
.react-resizable-handle {
display: none;
}
}
@include media-breakpoint-down(sm) {

@ -10,7 +10,8 @@
.playlist-active,
.user-activity-low {
.react-resizable-handle .add-row-panel-hint,
.react-resizable-handle,
.add-row-panel-hint,
.dash-row-menu-container,
.navbar-button--refresh,
.navbar-buttons--zoom,

Loading…
Cancel
Save