- fix size of description textarea - place "remove" buttons closer to text input fields for environments - add icon for "add another environment" link
		
			
				
	
	
		
			97 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			97 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			SCSS
		
	
	
	
	
	
| .application-edit__env-list-item {
 | |
|   display: flex;
 | |
|   flex-direction: row;
 | |
|   align-items: flex-end;
 | |
| 
 | |
|   .usa-input {
 | |
|     margin: 0 ($gap * 4) 0 0;
 | |
|     flex-grow: 2;
 | |
|   }
 | |
| 
 | |
|   .application-edit__env-list-item-block {
 | |
|     flex-grow: 1;
 | |
|   }
 | |
| 
 | |
|   .application-edit__env-list-item__remover {
 | |
|     @include icon-link;
 | |
|     @include icon-link-vertical;
 | |
|     @include icon-link-color($color-red, $color-red-lightest);
 | |
| 
 | |
|     margin-bottom: 0;
 | |
|     margin-right: -$gap;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .app-team-settings-link {
 | |
|   font-size: $small-font-size;
 | |
|   font-weight: $font-normal;
 | |
|   padding-left: $gap * 2;
 | |
| }
 | |
| 
 | |
| .environment-role {
 | |
|   padding: $gap * 3;
 | |
| 
 | |
|   h4 {
 | |
|     margin-bottom: $gap / 4;
 | |
|   }
 | |
| 
 | |
|   .environment-role__users {
 | |
|     background-color: $color-gray-lightest;
 | |
|     padding: ($gap * 1.2) ($gap * 0.6);
 | |
|     font-size: $small-font-size;
 | |
|     display: flex;
 | |
|     flex-wrap: wrap;
 | |
| 
 | |
|     .environment-role__user {
 | |
|       background-color: $color-white;
 | |
|       border-radius: 0.5rem;
 | |
|       padding: ($gap / 2) $gap;
 | |
|       border: solid 2px $color-blue;
 | |
|       margin: $gap;
 | |
|       white-space: nowrap;
 | |
|       width: 20rem;
 | |
| 
 | |
|       &.unassigned {
 | |
|         border: solid 1px $color-gray-light;
 | |
|       }
 | |
|     }
 | |
| 
 | |
|     .environment-role__no-user {
 | |
|       margin: $gap;
 | |
|       padding: ($gap / 2) $gap;
 | |
|       font-weight: $font-normal;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| .environment-roles-new {
 | |
|   margin-top: 5 * $gap;
 | |
|   margin-bottom: 8 * $gap;
 | |
| 
 | |
|   .usa-input {
 | |
|     margin: 2rem 0 2rem 0;
 | |
| 
 | |
|     .usa-input__title-inline {
 | |
|       line-height: $hit-area;
 | |
|     }
 | |
| 
 | |
|     legend {
 | |
|       font-size: $lead-font-size;
 | |
|       padding: 0;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   .form-row {
 | |
|     margin: 0;
 | |
|   }
 | |
| }
 | |
| 
 | |
| .environment-roles-new__head {
 | |
|   font-weight: $font-bold;
 | |
| }
 | |
| 
 | |
| .environment-name--gray {
 | |
|   font-weight: $font-normal;
 | |
|   color: $color-gray-medium;
 | |
| }
 |