1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Provide visual feedback when applying changes in "Filter lists" pane

Related issue:
https://github.com/uBlockOrigin/uBlock-issues/issues/3066#event-11479409505
This commit is contained in:
Raymond Hill 2024-01-14 11:25:41 -05:00
parent a605f13e63
commit c4bb8a0f64
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -212,13 +212,14 @@ body.working #actions button {
color: var(--info2-ink);
fill: var(--info2-ink);
}
body:not(.updating) #lists .listEntry.checked.obsolete > .detailbar .iconbar .obsolete {
body:not(.updating,.working) #lists .listEntry.checked.obsolete > .detailbar .iconbar .obsolete {
display: inline-flex;
}
#lists .iconbar .updating {
transform-origin: 50%;
}
body.updating #lists .listEntry.checked.obsolete > .detailbar .iconbar .updating {
body.updating #lists .listEntry.checked.obsolete > .detailbar .iconbar .updating,
body.working #lists .listEntry.checked.obsolete:not(.cached) > .detailbar .iconbar .updating {
animation: spin 1s steps(8) infinite;
display: inline-flex;
}