- Add 13 critical CSS files that were missing from repository
- Fixes deployment issues on other machines/environments
- Files include dashboard, templates, certificates, and common styles
- All files force-added to override .gitignore CSS exclusions
🔧 Generated with Claude Code
Co-Authored-By: Ben Reed <ben@tealmaker.com>
		
	
			
		
			
				
	
	
		
			31 lines
		
	
	
		
			No EOL
		
	
	
		
			812 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			No EOL
		
	
	
		
			812 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /**
 | |
|  * HVAC Community Events Main Styles
 | |
|  * 
 | |
|  * This file imports and includes all the main styles for the plugin
 | |
|  */
 | |
| 
 | |
| /* NOTE: @import statements removed to prevent Safari blocking issues
 | |
|  * Individual CSS files are now loaded separately via wp_enqueue_style in PHP
 | |
|  * This eliminates the synchronous blocking that causes Safari to hang
 | |
|  */
 | |
| 
 | |
| /* General layout styles */
 | |
| .hvac-content {
 | |
|     max-width: 1200px;
 | |
|     margin: 0 auto;
 | |
|     padding: 20px;
 | |
| }
 | |
| 
 | |
| /* Basic styles that were in imported files - consolidated here */
 | |
| /* These are the essential styles moved inline to prevent import blocking */
 | |
| 
 | |
| /* Ensure proper spacing on all HVAC pages */
 | |
| .hvac-page .site-content {
 | |
|     padding-top: 2rem;
 | |
|     padding-bottom: 2rem;
 | |
| }
 | |
| 
 | |
| /* Fix for page title hiding */
 | |
| .hvac-page .entry-header {
 | |
|     display: none !important;
 | |
| } |