28 lines
		
	
	
		
			637 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			637 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| .docusaurus-mermaid-container {
 | |
|     /* Improve contrast. */
 | |
|     & .messageText {
 | |
|         stroke: var(--ifm-background-color) !important;
 | |
|         stroke-width: 4;
 | |
|         fill: var(--ifm-color-content) !important;
 | |
|         paint-order: stroke;
 | |
|     }
 | |
| }
 | |
| 
 | |
| .markdown {
 | |
|     /* Remove empty table headers. */
 | |
|     & table > thead:has(> tr > th:empty):not(:has(> tr > th:not(:empty))) {
 | |
|         display: none;
 | |
|     }
 | |
| }
 | |
| 
 | |
| .contains-task-list {
 | |
|     input[type="checkbox"] {
 | |
|         appearance: none;
 | |
|     }
 | |
|     input[type="checkbox"]::after {
 | |
|         content: "✓";
 | |
|         color: var(--ifm-color-success-dark);
 | |
|         display: inline-block;
 | |
|     }
 | |
| }
 | 
