mirror of
				https://github.com/paperless-ngx/paperless-ngx.git
				synced 2025-10-30 03:56:23 -05:00 
			
		
		
		
	Fix heights on transitions, text/plain display in dark mode
This commit is contained in:
		| @@ -77,7 +77,7 @@ export class SelectComponent extends AbstractInputComponent<number> { | ||||
|   } | ||||
|  | ||||
|   get isPrivate(): boolean { | ||||
|     return this.items.find((i) => i.id === this.value)?.private | ||||
|     return this.items?.find((i) => i.id === this.value)?.private | ||||
|   } | ||||
|  | ||||
|   getSuggestions() { | ||||
|   | ||||
| @@ -0,0 +1,9 @@ | ||||
| .h2 { | ||||
|     min-height: calc(1.325rem + 0.9vw); | ||||
| } | ||||
|  | ||||
| @media (min-width: 1200px) { | ||||
|     .h2 { | ||||
|         min-height: 2.8rem; | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -246,6 +246,10 @@ $form-check-radio-checked-bg-image-dark: url("data:image/svg+xml,<svg xmlns='htt | ||||
|       background-color: rgb(var(--bs-dark-rgb)) !important; | ||||
|     } | ||||
|   } | ||||
|  | ||||
|   .preview-sticky.bg-white { | ||||
|     background-color: var(--pngx-bg-darker) !important; | ||||
|   } | ||||
| } | ||||
|  | ||||
| body.color-scheme-dark { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 shamoon
					shamoon