mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Remove the unused loading circle - Move text to en-us.json
This commit is contained in:
parent
bf367a295c
commit
b4804d3722
3 changed files with 2 additions and 21 deletions
|
@ -335,7 +335,7 @@ const SearchResults: FunctionComponent<SearchResultsProps> = ({ serverId = windo
|
|||
/>
|
||||
|
||||
{allEmpty && !isLoading && (
|
||||
<div className='sorry-text'>Sorry! No results found for "{query}"</div>
|
||||
<div className='sorry-text'>{globalize.translate('SearchResultsEmpty')}"{query}"</div>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
|
|
|
@ -20,23 +20,3 @@
|
|||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
// New styles for loading circle
|
||||
.loading-circle {
|
||||
border: 5px solid #557ece;
|
||||
border-radius: 50%;
|
||||
border-top: 5px solid #1b1b1bd7;
|
||||
width: 65px;
|
||||
height: 65px;
|
||||
animation: spin 1s linear infinite;
|
||||
margin: auto;
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
}
|
||||
|
||||
@keyframes spin {
|
||||
0% { transform: translate(-50%, -50%) rotate(0deg); }
|
||||
100% { transform: translate(-50%, -50%) rotate(360deg); }
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue