Fix form validation flash message color and input borders (#9235)
* Fix form validation flash message color and input borders * Fix typo
This commit is contained in:
		
							parent
							
								
									32c2f5a07f
								
							
						
					
					
						commit
						718e4752a9
					
				
					 2 changed files with 6 additions and 3 deletions
				
			
		|  | @ -330,9 +330,12 @@ code { | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     input[type=text], |     input[type=text], | ||||||
|  |     input[type=number], | ||||||
|     input[type=email], |     input[type=email], | ||||||
|     input[type=password] { |     input[type=password], | ||||||
|       border-bottom-color: $valid-value-color; |     textarea, | ||||||
|  |     select { | ||||||
|  |       border-color: lighten($error-red, 12%); | ||||||
|     } |     } | ||||||
| 
 | 
 | ||||||
|     .error { |     .error { | ||||||
|  |  | ||||||
|  | @ -1,3 +1,3 @@ | ||||||
| - if object.errors.any? | - if object.errors.any? | ||||||
|   .flash-message#error_explanation |   .flash-message.alert#error_explanation | ||||||
|     %strong= t('generic.validation_errors', count: object.errors.count) |     %strong= t('generic.validation_errors', count: object.errors.count) | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue