Add massive collection of CSS, JavaScript and theme assets that were previously excluded: **CSS Files (681 total):** - HVAC plugin-specific styles (hvac-*.css): 34 files including dashboard, certificates, registration, mobile nav, accessibility fixes, animations, and welcome popup - Theme framework files (Astra, builder systems, layouts): 200+ files - Plugin compatibility styles (WooCommerce, WPForms, Elementor, Contact Form 7): 150+ files - WordPress core and editor styles: 50+ files - Responsive and RTL language support: 200+ files **JavaScript Files (400+ total):** - HVAC plugin functionality (hvac-*.js): 27 files including menu systems, dashboard enhancements, profile sharing, mobile responsive features, accessibility, and animations - Framework and library files: jQuery plugins, GSAP, AOS, Swiper, Chart.js, Lottie, Isotope - Plugin compatibility scripts: WPForms, WooCommerce, Elementor, Contact Form 7, LifterLMS - WordPress core functionality: customizer, admin, block editor compatibility - Third-party integrations: Stripe, SMTP, analytics, search functionality **Assets:** - Certificate background images and logos - Comprehensive theme styling infrastructure - Mobile-responsive design systems - Cross-browser compatibility assets - Performance-optimized minified versions **Updated .gitignore:** - Fixed asset directory whitelisting patterns to properly include CSS/JS/images - Added proper directory structure recognition (!/assets/css/, !/assets/js/, etc.) - Maintains security by excluding sensitive files while including essential assets This commit provides the complete frontend infrastructure needed for: - Full theme functionality and styling - Plugin feature implementations - Mobile responsiveness and accessibility - Cross-browser compatibility - Performance optimization - Developer workflow support
		
			
				
	
	
		
			196 lines
		
	
	
		
			No EOL
		
	
	
		
			3.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			196 lines
		
	
	
		
			No EOL
		
	
	
		
			3.2 KiB
		
	
	
	
		
			CSS
		
	
	
	
	
	
| /**
 | |
|  * Certificate Reports Styles
 | |
|  * 
 | |
|  * Styles for the certificate reports page
 | |
|  * Extracted from inline styles for better theme integration
 | |
|  */
 | |
| 
 | |
| /* Certificate Reports Content Container */
 | |
| .hvac-certificate-reports-content {
 | |
|     max-width: 1200px;
 | |
|     margin: 0 auto;
 | |
|     padding: 20px;
 | |
| }
 | |
| 
 | |
| .hvac-page-header {
 | |
|     margin-bottom: 30px;
 | |
| }
 | |
| 
 | |
| .hvac-page-header h1 {
 | |
|     margin-bottom: 10px;
 | |
| }
 | |
| 
 | |
| /* Statistics Grid */
 | |
| .hvac-stats-grid {
 | |
|     display: grid;
 | |
|     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 | |
|     gap: 20px;
 | |
|     margin-bottom: 40px;
 | |
| }
 | |
| 
 | |
| .hvac-stat-card {
 | |
|     background: #f5f5f5;
 | |
|     border-radius: 8px;
 | |
|     padding: 20px;
 | |
|     text-align: center;
 | |
|     border: 1px solid #e0e0e0;
 | |
| }
 | |
| 
 | |
| .hvac-stat-label {
 | |
|     font-size: 14px;
 | |
|     color: #666;
 | |
|     text-transform: uppercase;
 | |
|     margin-bottom: 10px;
 | |
| }
 | |
| 
 | |
| .hvac-stat-value {
 | |
|     font-size: 36px;
 | |
|     font-weight: bold;
 | |
|     color: #0073aa;
 | |
| }
 | |
| 
 | |
| /* Filter Form */
 | |
| .hvac-filter-form {
 | |
|     background: #f9f9f9;
 | |
|     padding: 20px;
 | |
|     border-radius: 8px;
 | |
|     margin-bottom: 30px;
 | |
| }
 | |
| 
 | |
| .hvac-filter-row {
 | |
|     display: flex;
 | |
|     gap: 20px;
 | |
|     align-items: flex-end;
 | |
|     flex-wrap: wrap;
 | |
| }
 | |
| 
 | |
| .hvac-filter-group {
 | |
|     flex: 1;
 | |
|     min-width: 200px;
 | |
| }
 | |
| 
 | |
| .hvac-filter-group label {
 | |
|     display: block;
 | |
|     margin-bottom: 5px;
 | |
|     font-weight: bold;
 | |
| }
 | |
| 
 | |
| .hvac-filter-group select {
 | |
|     width: 100%;
 | |
|     padding: 8px;
 | |
|     border: 1px solid #ddd;
 | |
|     border-radius: 4px;
 | |
| }
 | |
| 
 | |
| /* Table Styles */
 | |
| .hvac-table-wrapper {
 | |
|     overflow-x: auto;
 | |
| }
 | |
| 
 | |
| .hvac-certificates-table {
 | |
|     width: 100%;
 | |
|     border-collapse: collapse;
 | |
|     background: white;
 | |
|     border: 1px solid #ddd;
 | |
| }
 | |
| 
 | |
| .hvac-certificates-table th,
 | |
| .hvac-certificates-table td {
 | |
|     padding: 12px;
 | |
|     text-align: left;
 | |
|     border-bottom: 1px solid #eee;
 | |
| }
 | |
| 
 | |
| .hvac-certificates-table th {
 | |
|     background: #f5f5f5;
 | |
|     font-weight: bold;
 | |
| }
 | |
| 
 | |
| .hvac-certificates-table tr:hover {
 | |
|     background: #f9f9f9;
 | |
| }
 | |
| 
 | |
| /* Status Styles */
 | |
| .hvac-status {
 | |
|     display: inline-block;
 | |
|     padding: 4px 8px;
 | |
|     border-radius: 4px;
 | |
|     font-size: 12px;
 | |
|     font-weight: bold;
 | |
| }
 | |
| 
 | |
| .hvac-status-active {
 | |
|     background: #d4edda;
 | |
|     color: #155724;
 | |
| }
 | |
| 
 | |
| .hvac-status-revoked {
 | |
|     background: #f8d7da;
 | |
|     color: #721c24;
 | |
| }
 | |
| 
 | |
| /* Action Links */
 | |
| .hvac-actions {
 | |
|     display: flex;
 | |
|     gap: 10px;
 | |
|     flex-wrap: wrap;
 | |
| }
 | |
| 
 | |
| .hvac-action-link {
 | |
|     color: #0073aa;
 | |
|     text-decoration: none;
 | |
|     font-size: 14px;
 | |
| }
 | |
| 
 | |
| .hvac-action-link:hover {
 | |
|     text-decoration: underline;
 | |
| }
 | |
| 
 | |
| /* Notices */
 | |
| .hvac-notice {
 | |
|     padding: 20px;
 | |
|     border-radius: 8px;
 | |
|     margin-bottom: 20px;
 | |
| }
 | |
| 
 | |
| .hvac-notice-info {
 | |
|     background: #e3f2fd;
 | |
|     border: 1px solid #90caf9;
 | |
|     color: #1565c0;
 | |
| }
 | |
| 
 | |
| /* Buttons */
 | |
| .hvac-button {
 | |
|     display: inline-block;
 | |
|     padding: 10px 20px;
 | |
|     border: none;
 | |
|     border-radius: 4px;
 | |
|     font-size: 16px;
 | |
|     cursor: pointer;
 | |
|     text-decoration: none;
 | |
|     transition: background-color 0.3s;
 | |
| }
 | |
| 
 | |
| .hvac-button-primary {
 | |
|     background: #0073aa;
 | |
|     color: white;
 | |
| }
 | |
| 
 | |
| .hvac-button-primary:hover {
 | |
|     background: #005a87;
 | |
| }
 | |
| 
 | |
| /* Responsive */
 | |
| @media (max-width: 768px) {
 | |
|     .hvac-stats-grid {
 | |
|         grid-template-columns: 1fr 1fr;
 | |
|     }
 | |
|     
 | |
|     .hvac-filter-row {
 | |
|         flex-direction: column;
 | |
|     }
 | |
|     
 | |
|     .hvac-filter-group {
 | |
|         width: 100%;
 | |
|     }
 | |
| } |