mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Panel: Cancel panel query via loading spinner (#25954)
* Panel: Cancel panel query via loading spinne * Removed unused icon
This commit is contained in:
@@ -78,6 +78,10 @@ $panel-header-no-title-zindex: 1;
|
||||
z-index: $panel-header-z-index + 1;
|
||||
font-size: $font-size-lg;
|
||||
color: $text-color-weak;
|
||||
|
||||
&:hover {
|
||||
cursor: pointer;
|
||||
}
|
||||
}
|
||||
|
||||
.panel-empty {
|
||||
|
||||
@@ -34,3 +34,16 @@
|
||||
transition: max-height 250ms ease-in-out;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes spin-counter-clock {
|
||||
0% {
|
||||
transform: rotate(359deg);
|
||||
}
|
||||
100% {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
}
|
||||
|
||||
.spin-counter-clock {
|
||||
animation: spin-counter-clock 3s infinite linear;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user