 c21e074e14
			
		
	
	c21e074e14
	
	
	
		
			
			- added edit mask shadow - updated icon font - updated card edit field action buttons layout - selection panel scroll
		
			
				
	
	
		
			45 lines
		
	
	
		
			592 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
		
			592 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| .accountStatus {
 | |
| 	background-color: green;
 | |
| 	padding: 3px;
 | |
| 	font-size: 10pt;
 | |
| 	border-bottom: 1px solid white;
 | |
| 	
 | |
| 	&.FULL {
 | |
| 		display: none;
 | |
| 		visibility: hidden;
 | |
| 		
 | |
| 		&.isExpiring {
 | |
| 			display: block;
 | |
| 			visibility: visible;
 | |
| 			
 | |
| 			background-color: yellow;
 | |
| 		}
 | |
| 	}
 | |
| 	
 | |
| 	&.TRIAL {
 | |
| 		background-color: orange;
 | |
| 
 | |
| 		&.isExpiring {
 | |
| 			background-color: red;
 | |
| 		}
 | |
| 	}
 | |
| 	
 | |
| 	&.EXPIRED {
 | |
| 		background-color: red;
 | |
| 	}
 | |
| 	
 | |
| 	&.OFFLINE_COPY {
 | |
| 		background-color: $clipperz-blue;
 | |
| 		color: white;
 | |
| 		
 | |
| 		.expirationDate {
 | |
| 			display: none;
 | |
| 			visibility: hidden;
 | |
| 		}
 | |
| 		
 | |
| 		.referenceDate {
 | |
| 			padding-left: 10px;
 | |
| 		}
 | |
| 	}
 | |
| }
 |