add auto-timed spinner on pinned logs. add alt options for calculating face normal deviation. center spinner

This commit is contained in:
Stewart Allen 2022-04-01 09:45:35 -04:00
commit d0ab98f6ac
4 changed files with 31 additions and 10 deletions

View file

@ -592,8 +592,10 @@ button.selected:hover {
z-index: 5000;
display: none;
position: absolute;
left: 5px;
bottom: 5px;
left: 50%;
bottom: 50%;
translateX: -50%;
translateX: -50%;
width: 25px;
height: 25px;
border: 6px solid rgba(0,0,0,0.1);
@ -603,5 +605,5 @@ button.selected:hover {
}
@keyframes spin {
to { -webkit-transform: rotate(360deg); }
to { transform: rotate(360deg); }
}