mirror of https://github.com/vector-im/riot-web
				
				
				
			fix MyGroups scrollbar
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>pull/21833/head
							parent
							
								
									8fd3b96b72
								
							
						
					
					
						commit
						638629c2fa
					
				| 
						 | 
				
			
			@ -102,11 +102,6 @@ limitations under the License.
 | 
			
		|||
    overflow-y: inherit;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.mx_MyGroups_content,
 | 
			
		||||
.mx_MyGroups_scrollable {
 | 
			
		||||
    overflow-y: scroll;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
.mx_MyGroups_placeholder {
 | 
			
		||||
    background-color: $info-plinth-bg-color;
 | 
			
		||||
    color: $info-plinth-fg-color;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -22,6 +22,7 @@ import { _t } from '../../languageHandler';
 | 
			
		|||
import dis from '../../dispatcher';
 | 
			
		||||
import AccessibleButton from '../views/elements/AccessibleButton';
 | 
			
		||||
import MatrixClientContext from "../../contexts/MatrixClientContext";
 | 
			
		||||
import AutoHideScrollbar from "./AutoHideScrollbar";
 | 
			
		||||
 | 
			
		||||
export default createReactClass({
 | 
			
		||||
    displayName: 'MyGroups',
 | 
			
		||||
| 
						 | 
				
			
			@ -72,7 +73,7 @@ export default createReactClass({
 | 
			
		|||
            });
 | 
			
		||||
            contentHeader = groupNodes.length > 0 ? <h3>{ _t('Your Communities') }</h3> : <div />;
 | 
			
		||||
            content = groupNodes.length > 0 ?
 | 
			
		||||
                <div className="mx_MyGroups_scrollable mx_AutoHideScrollbar">
 | 
			
		||||
                <AutoHideScrollbar className="mx_MyGroups_scrollable">
 | 
			
		||||
                    <div className="mx_MyGroups_microcopy">
 | 
			
		||||
                        <p>
 | 
			
		||||
                            { _t(
 | 
			
		||||
| 
						 | 
				
			
			@ -91,7 +92,7 @@ export default createReactClass({
 | 
			
		|||
                    <div className="mx_MyGroups_joinedGroups">
 | 
			
		||||
                        { groupNodes }
 | 
			
		||||
                    </div>
 | 
			
		||||
                </div> :
 | 
			
		||||
                </AutoHideScrollbar> :
 | 
			
		||||
                <div className="mx_MyGroups_placeholder">
 | 
			
		||||
                    { _t(
 | 
			
		||||
                        "You're not currently a member of any communities.",
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in New Issue