mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Dashboard: Only show resize-handle on hover (#21160)
This commit is contained in:
parent
8c089b98b3
commit
475bd7ad09
@ -1,6 +1,18 @@
|
||||
@import '~react-grid-layout/css/styles.css';
|
||||
@import '~react-resizable/css/styles.css';
|
||||
|
||||
.react-resizable-handle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.react-grid-item {
|
||||
&:hover {
|
||||
.react-resizable-handle {
|
||||
display: initial;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.panel-in-fullscreen {
|
||||
.react-grid-layout {
|
||||
height: 100% !important;
|
||||
@ -35,7 +47,7 @@
|
||||
}
|
||||
|
||||
.react-resizable-handle {
|
||||
display: none;
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
// the react-grid has a height transition
|
||||
|
Loading…
Reference in New Issue
Block a user