mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-31 18:36:30 +01:00 
			
		
		
		
	fix(styles): fix ck-editor checkboxes not showing checkmark while printing
Due to CSS specificity using plain "input[checked]::before" does not work. fixes #901
This commit is contained in:
		| @@ -25,4 +25,11 @@ | |||||||
|         border: 0.75pt solid gray !important; |         border: 0.75pt solid gray !important; | ||||||
|         border-radius: 2pt !important; |         border-radius: 2pt !important; | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     /* Fix visibility of checkbox checkmarks | ||||||
|  |        see https://github.com/TriliumNext/Notes/issues/901 */ | ||||||
|  |     .ck-editor__editable.ck-content .todo-list .todo-list__label > span[contenteditable="false"] > input[checked]::after { | ||||||
|  |         /* fallback to default ck-editor green */ | ||||||
|  |         border-color: hsl(126, 64%, 41%); | ||||||
|  |     } | ||||||
| } | } | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user