Fix elephant graphic being draggable and selectable (#6819)
This commit is contained in:
		
							parent
							
								
									39f27b6cf3
								
							
						
					
					
						commit
						3b440bd5af
					
				| 
						 | 
					@ -97,7 +97,7 @@ export default class Compose extends React.PureComponent {
 | 
				
			||||||
            <ComposeFormContainer />
 | 
					            <ComposeFormContainer />
 | 
				
			||||||
            {multiColumn && (
 | 
					            {multiColumn && (
 | 
				
			||||||
              <div className='drawer__inner__mastodon'>
 | 
					              <div className='drawer__inner__mastodon'>
 | 
				
			||||||
                <img alt='' src={elephantUIPlane} />
 | 
					                <img alt='' draggable='false' src={elephantUIPlane} />
 | 
				
			||||||
              </div>
 | 
					              </div>
 | 
				
			||||||
            )}
 | 
					            )}
 | 
				
			||||||
          </div>
 | 
					          </div>
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1842,6 +1842,9 @@
 | 
				
			||||||
    object-position: bottom left;
 | 
					    object-position: bottom left;
 | 
				
			||||||
    width: 100%;
 | 
					    width: 100%;
 | 
				
			||||||
    height: 100%;
 | 
					    height: 100%;
 | 
				
			||||||
 | 
					    pointer-events: none;
 | 
				
			||||||
 | 
					    user-drag: none;
 | 
				
			||||||
 | 
					    user-select: none;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue