Add note about alternative to opacity

This commit is contained in:
Stefan Parviainen 2017-11-14 20:13:00 +01:00
parent df6d5cc2b4
commit f8660de52d

View File

@ -56,6 +56,7 @@ export default function SenderProfile(props) {
// It is not possible to wrap the whole thing, because the user name might contain flair which should // It is not possible to wrap the whole thing, because the user name might contain flair which should
// be shown at full opacity. Sadly CSS does not make it possible to "reset" opacity so we have to do it // be shown at full opacity. Sadly CSS does not make it possible to "reset" opacity so we have to do it
// in parts like this. Sometimes CSS makes me a sad panda :-( // in parts like this. Sometimes CSS makes me a sad panda :-(
// XXX: This could be avoided if the actual colour is set, rather than faking it with opacity
{ content.props.children[0] ? { content.props.children[0] ?
<span className='mx_SenderProfile_aux'>{ content.props.children[0] }</span> : '' <span className='mx_SenderProfile_aux'>{ content.props.children[0] }</span> : ''
} }