mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-10-31 14:31:02 +00:00 
			
		
		
		
	Removes all dropdown and dimmer animations. Works everywhere as far as I can tell, but need to give this thorough testing. Removes around 70kb JS/CSS. Note, I'm not 100% sure regarding the various callbacks, those will need more investigation, but it appears to work nonetheless. Fixes: https://github.com/go-gitea/gitea/issues/15709
		
			
				
	
	
		
			113 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			113 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| @keyframes isloadingspin {
 | |
|   0% { transform: translate(-50%, -50%) rotate(0deg); }
 | |
|   100% { transform: translate(-50%, -50%) rotate(360deg); }
 | |
| }
 | |
| 
 | |
| .is-loading {
 | |
|   pointer-events: none !important;
 | |
|   position: relative !important;
 | |
|   overflow: hidden !important;
 | |
| }
 | |
| 
 | |
| .is-loading > * {
 | |
|   opacity: 0.3;
 | |
| }
 | |
| 
 | |
| .is-loading::after {
 | |
|   content: "";
 | |
|   position: absolute;
 | |
|   display: block;
 | |
|   left: 50%;
 | |
|   top: 50%;
 | |
|   height: min(4em, 66.6%);
 | |
|   aspect-ratio: 1;
 | |
|   transform: translate(-50%, -50%);
 | |
|   animation: isloadingspin 500ms infinite linear;
 | |
|   border-width: 4px;
 | |
|   border-style: solid;
 | |
|   border-color: var(--color-secondary) var(--color-secondary) var(--color-secondary-dark-8) var(--color-secondary-dark-8);
 | |
|   border-radius: 100%;
 | |
| }
 | |
| 
 | |
| .is-loading.small-loading-icon::after {
 | |
|   border-width: 2px;
 | |
| }
 | |
| 
 | |
| /* for single form button, the loading state should be on the button, but not go semi-transparent, just replace the text on the button with the loader. */
 | |
| form.single-button-form.is-loading > * {
 | |
|   opacity: 1;
 | |
| }
 | |
| 
 | |
| form.single-button-form.is-loading .button {
 | |
|   color: transparent;
 | |
| }
 | |
| 
 | |
| .markup pre.is-loading,
 | |
| .editor-loading.is-loading,
 | |
| .pdf-content.is-loading {
 | |
|   height: var(--height-loading);
 | |
| }
 | |
| 
 | |
| .markup .is-loading > * {
 | |
|   visibility: hidden;
 | |
| }
 | |
| 
 | |
| .markup .is-loading {
 | |
|   color: transparent;
 | |
|   background: transparent;
 | |
| }
 | |
| 
 | |
| /* TODO: not needed, use "is-loading small-loading-icon" instead */
 | |
| .btn-octicon.is-loading::after {
 | |
|   border-width: 2px;
 | |
|   height: 1.25rem;
 | |
|   width: 1.25rem;
 | |
| }
 | |
| 
 | |
| /* TODO: not needed, use "is-loading small-loading-icon" instead */
 | |
| code.language-math.is-loading::after {
 | |
|   padding: 0;
 | |
|   border-width: 2px;
 | |
|   width: 1.25rem;
 | |
|   height: 1.25rem;
 | |
| }
 | |
| 
 | |
| @keyframes fadein {
 | |
|   0% {
 | |
|     opacity: 0;
 | |
|   }
 | |
|   100% {
 | |
|     opacity: 1;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes fadeout {
 | |
|   0% {
 | |
|     opacity: 1;
 | |
|   }
 | |
|   100% {
 | |
|     opacity: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| @keyframes pulse {
 | |
|   0% {
 | |
|     transform: scale(1);
 | |
|   }
 | |
|   50% {
 | |
|     transform: scale(1.8);
 | |
|   }
 | |
|   100% {
 | |
|     transform: scale(1);
 | |
|   }
 | |
| }
 | |
| 
 | |
| .pulse {
 | |
|   animation: pulse 2s linear;
 | |
| }
 | |
| 
 | |
| .ui.modal {
 | |
|   animation-name: fadein;
 | |
|   animation-duration: 300ms;
 | |
|   animation-timing-function: ease-in-out;
 | |
| }
 |