Fix profile picture preview (#26538)
This commit is contained in:
		
				
					committed by
					
						
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							ee702e36e5
						
					
				
				
					commit
					bb23116e8d
				
			@@ -231,8 +231,8 @@ delegate(document, '#account_display_name', 'input', ({ target }) => {
 | 
			
		||||
  }
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
delegate(document, '#account_avatar', 'change', ({ target }) => {
 | 
			
		||||
  const avatar = document.querySelector('.card .avatar img');
 | 
			
		||||
delegate(document, '#edit_profile input[type=file]', 'change', ({ target }) => {
 | 
			
		||||
  const avatar = document.getElementById(target.id + '-preview');
 | 
			
		||||
  const [file] = target.files || [];
 | 
			
		||||
  const url = file ? URL.createObjectURL(file) : avatar.dataset.originalSrc;
 | 
			
		||||
 | 
			
		||||
@@ -254,14 +254,6 @@ delegate(document, 'img#profile_page_avatar', 'mouseover', getProfileAvatarAnima
 | 
			
		||||
 | 
			
		||||
delegate(document, 'img#profile_page_avatar', 'mouseout', getProfileAvatarAnimationHandler('data-static'));
 | 
			
		||||
 | 
			
		||||
delegate(document, '#account_header', 'change', ({ target }) => {
 | 
			
		||||
  const header = document.querySelector('.card .card__img img');
 | 
			
		||||
  const [file] = target.files || [];
 | 
			
		||||
  const url = file ? URL.createObjectURL(file) : header.dataset.originalSrc;
 | 
			
		||||
 | 
			
		||||
  header.src = url;
 | 
			
		||||
});
 | 
			
		||||
 | 
			
		||||
delegate(document, '#account_locked', 'change', ({ target }) => {
 | 
			
		||||
  const lock = document.querySelector('.card .display-name i');
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -309,9 +309,19 @@ code {
 | 
			
		||||
      border-radius: 4px;
 | 
			
		||||
      background: url('images/void.png');
 | 
			
		||||
 | 
			
		||||
      &[src$='missing.png'] {
 | 
			
		||||
        visibility: hidden;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      &:last-child {
 | 
			
		||||
        margin-bottom: 0;
 | 
			
		||||
      }
 | 
			
		||||
 | 
			
		||||
      &#account_avatar-preview {
 | 
			
		||||
        width: 90px;
 | 
			
		||||
        height: 90px;
 | 
			
		||||
        object-fit: cover;
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user