Fix elephant graphic being draggable and selectable (#6819)

lolsob-rspec
Eugen Rochko 2018-03-18 20:32:44 +01:00 committed by GitHub
parent 77badbc85a
commit 6d00359015
2 changed files with 4 additions and 1 deletions

View File

@ -97,7 +97,7 @@ export default class Compose extends React.PureComponent {
<ComposeFormContainer />
{multiColumn && (
<div className='drawer__inner__mastodon'>
<img alt='' src={elephantUIPlane} />
<img alt='' draggable='false' src={elephantUIPlane} />
</div>
)}
</div>

View File

@ -1842,6 +1842,9 @@
object-position: bottom left;
width: 100%;
height: 100%;
pointer-events: none;
user-drag: none;
user-select: none;
}
}