Remove refreshing indicator from ActivitiesView

I've decided I'm going to add an indicator for when the client is
disconnected so the indicator would be pretty redundant (and it
requires a bunch of code to implement).
This commit is contained in:
2025-03-02 14:47:19 +00:00
parent c2d81778a8
commit 10a7fe5c82
2 changed files with 5 additions and 71 deletions

View File

@@ -27,20 +27,3 @@
margin-top: -2px;
margin-left: 3px;
}
/*
* Couldn't find a built-in way to get the common OSD overlay style of
* rounding the bottom corners but not the top ones, so doing this
* myself with this CSS rule.
*/
overlay > frame.osd {
border-radius: 0 0 8px 8px;
}
.popdown {
transition: transform 200ms ease-in-out;
transform: translateY(-100px);
}
.popdown.visible {
transform: translateY(0);
}