Fixed wrapping of cell content in readthedocs style
The readthedocs style for sphinx has an issue where it does not auto wrap text in table cells. This results in very long cells with a vertical scrollbar. This adds a css style sheet to fix this wrapping issue. Signed-off-by: Claudius Heine <ch@denx.de>
This commit is contained in:
		
				
					committed by
					
						
						Daniel Wagner
					
				
			
			
				
	
			
			
			
						parent
						
							e02bee0eec
						
					
				
				
					commit
					32b9b4bb76
				
			
							
								
								
									
										13
									
								
								docs/_static/theme_overrides.css
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								docs/_static/theme_overrides.css
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,13 @@
 | 
			
		||||
/* override table width restrictions */
 | 
			
		||||
@media screen and (min-width: 767px) {
 | 
			
		||||
 | 
			
		||||
   .wy-table-responsive table td {
 | 
			
		||||
      /* !important prevents the common CSS stylesheets from overriding
 | 
			
		||||
         this as on RTD they are loaded after this stylesheet */
 | 
			
		||||
      white-space: normal !important;
 | 
			
		||||
   }
 | 
			
		||||
 | 
			
		||||
   .wy-table-responsive {
 | 
			
		||||
      overflow: visible !important;
 | 
			
		||||
   }
 | 
			
		||||
}
 | 
			
		||||
		Reference in New Issue
	
	Block a user