28 lines
		
	
	
		
			439 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			439 B
		
	
	
	
		
			CSS
		
	
	
	
	
	
| #floorplan {
 | |
|   padding: 10px;
 | |
| }
 | |
| 
 | |
| svg, svg * {
 | |
|   vector-effect: non-scaling-stroke !important;
 | |
|   pointer-events: all !important;
 | |
| }
 | |
| 
 | |
| path[id*="area."].light-on {
 | |
|   opacity: 0 !important;
 | |
| }
 | |
| 
 | |
| path[id*="area."] {
 | |
|   opacity: 0.5 !important;
 | |
|   transition: opacity .25s;
 | |
|   -moz-transition: opacity .25s;
 | |
|   -webkit-transition: opacity .25s;
 | |
| }
 | |
| 
 | |
| svg tspan {
 | |
|   fill: var(--primary-text-color);
 | |
| }
 | |
| 
 | |
| .static-temp, .static-temp tspan {
 | |
|   fill: #ffffff;
 | |
| }
 |