mirror of
https://github.com/grafana/grafana.git
synced 2025-01-28 17:24:59 -06:00
50 lines
946 B
SCSS
50 lines
946 B
SCSS
@import "~react-grid-layout/css/styles.css";
|
|
@import "~react-resizable/css/styles.css";
|
|
|
|
.panel-in-fullscreen {
|
|
|
|
.react-grid-layout {
|
|
height: 100% !important;
|
|
}
|
|
|
|
.react-grid-item {
|
|
display: none;
|
|
transition-property: none !important;
|
|
}
|
|
|
|
.panel--fullscreen {
|
|
display: block !important;
|
|
position: unset !important;
|
|
width: 100% !important;
|
|
height: 100% !important;
|
|
transform: translate(0px, 0px) !important;
|
|
}
|
|
}
|
|
|
|
@include media-breakpoint-down(sm) {
|
|
.react-grid-layout {
|
|
height: 100% !important;
|
|
}
|
|
|
|
.react-grid-item {
|
|
display: none;
|
|
transition-property: none !important;
|
|
}
|
|
|
|
.panel {
|
|
display: block !important;
|
|
position: unset !important;
|
|
width: 100% !important;
|
|
transform: translate(0px, 0px) !important;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
|
|
.theme-dark {
|
|
.react-grid-item > .react-resizable-handle {
|
|
background-image: url('../img/resize-handle-white.svg');
|
|
}
|
|
}
|
|
|