Fix double scroll bars in some columns in advanced interface (#27187)
This commit is contained in:
		
							parent
							
								
									0619ec1592
								
							
						
					
					
						commit
						3e21780cf1
					
				@ -22,12 +22,6 @@ export default class Column extends PureComponent {
 | 
				
			|||||||
      scrollable = document.scrollingElement;
 | 
					      scrollable = document.scrollingElement;
 | 
				
			||||||
    } else {
 | 
					    } else {
 | 
				
			||||||
      scrollable = this.node.querySelector('.scrollable');
 | 
					      scrollable = this.node.querySelector('.scrollable');
 | 
				
			||||||
 | 
					 | 
				
			||||||
      // Some columns have nested `.scrollable` containers, with the outer one
 | 
					 | 
				
			||||||
      // being a wrapper while the actual scrollable content is deeper.
 | 
					 | 
				
			||||||
      if (scrollable.classList.contains('scrollable--flex')) {
 | 
					 | 
				
			||||||
        scrollable = scrollable?.querySelector('.scrollable') || scrollable;
 | 
					 | 
				
			||||||
      }
 | 
					 | 
				
			||||||
   }
 | 
					   }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    if (!scrollable) {
 | 
					    if (!scrollable) {
 | 
				
			||||||
 | 
				
			|||||||
@ -67,7 +67,6 @@ class Explore extends PureComponent {
 | 
				
			|||||||
          <Search />
 | 
					          <Search />
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <div className='scrollable scrollable--flex' data-nosnippet>
 | 
					 | 
				
			||||||
        {isSearching ? (
 | 
					        {isSearching ? (
 | 
				
			||||||
          <SearchResults />
 | 
					          <SearchResults />
 | 
				
			||||||
        ) : (
 | 
					        ) : (
 | 
				
			||||||
@ -107,7 +106,6 @@ class Explore extends PureComponent {
 | 
				
			|||||||
            </Helmet>
 | 
					            </Helmet>
 | 
				
			||||||
          </>
 | 
					          </>
 | 
				
			||||||
        )}
 | 
					        )}
 | 
				
			||||||
        </div>
 | 
					 | 
				
			||||||
      </Column>
 | 
					      </Column>
 | 
				
			||||||
    );
 | 
					    );
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
				
			|||||||
@ -52,7 +52,7 @@ class Links extends PureComponent {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return (
 | 
					    return (
 | 
				
			||||||
      <div className='explore__links'>
 | 
					      <div className='explore__links scrollable' data-nosnippet>
 | 
				
			||||||
        {banner}
 | 
					        {banner}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        {isLoading ? (<LoadingIndicator />) : links.map((link, i) => (
 | 
					        {isLoading ? (<LoadingIndicator />) : links.map((link, i) => (
 | 
				
			||||||
 | 
				
			|||||||
@ -204,7 +204,7 @@ class Results extends PureComponent {
 | 
				
			|||||||
          <button onClick={this.handleSelectStatuses} className={type === 'statuses' ? 'active' : undefined}><FormattedMessage id='search_results.statuses' defaultMessage='Posts' /></button>
 | 
					          <button onClick={this.handleSelectStatuses} className={type === 'statuses' ? 'active' : undefined}><FormattedMessage id='search_results.statuses' defaultMessage='Posts' /></button>
 | 
				
			||||||
        </div>
 | 
					        </div>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <div className='explore__search-results'>
 | 
					        <div className='explore__search-results' data-nosnippet>
 | 
				
			||||||
          <ScrollableList
 | 
					          <ScrollableList
 | 
				
			||||||
            scrollKey='search-results'
 | 
					            scrollKey='search-results'
 | 
				
			||||||
            isLoading={isLoading}
 | 
					            isLoading={isLoading}
 | 
				
			||||||
 | 
				
			|||||||
@ -42,7 +42,7 @@ class Suggestions extends PureComponent {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return (
 | 
					    return (
 | 
				
			||||||
      <div className='explore__suggestions'>
 | 
					      <div className='explore__suggestions scrollable' data-nosnippet>
 | 
				
			||||||
        {isLoading ? <LoadingIndicator /> : suggestions.map(suggestion => (
 | 
					        {isLoading ? <LoadingIndicator /> : suggestions.map(suggestion => (
 | 
				
			||||||
          <AccountCard key={suggestion.get('account')} id={suggestion.get('account')} />
 | 
					          <AccountCard key={suggestion.get('account')} id={suggestion.get('account')} />
 | 
				
			||||||
        ))}
 | 
					        ))}
 | 
				
			||||||
 | 
				
			|||||||
@ -51,7 +51,7 @@ class Tags extends PureComponent {
 | 
				
			|||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    return (
 | 
					    return (
 | 
				
			||||||
      <div className='explore__links'>
 | 
					      <div className='scrollable explore__links' data-nosnippet>
 | 
				
			||||||
        {banner}
 | 
					        {banner}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        {isLoading ? (<LoadingIndicator />) : hashtags.map(hashtag => (
 | 
					        {isLoading ? (<LoadingIndicator />) : hashtags.map(hashtag => (
 | 
				
			||||||
 | 
				
			|||||||
@ -169,7 +169,6 @@ const Firehose = ({ feedType, multiColumn }) => {
 | 
				
			|||||||
        <ColumnSettings />
 | 
					        <ColumnSettings />
 | 
				
			||||||
      </ColumnHeader>
 | 
					      </ColumnHeader>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      <div className='scrollable scrollable--flex'>
 | 
					 | 
				
			||||||
      <div className='account__section-headline'>
 | 
					      <div className='account__section-headline'>
 | 
				
			||||||
        <NavLink exact to='/public/local'>
 | 
					        <NavLink exact to='/public/local'>
 | 
				
			||||||
          <FormattedMessage tagName='div' id='firehose.local' defaultMessage='This server' />
 | 
					          <FormattedMessage tagName='div' id='firehose.local' defaultMessage='This server' />
 | 
				
			||||||
@ -193,7 +192,6 @@ const Firehose = ({ feedType, multiColumn }) => {
 | 
				
			|||||||
        emptyMessage={emptyMessage}
 | 
					        emptyMessage={emptyMessage}
 | 
				
			||||||
        bindToDocument={!multiColumn}
 | 
					        bindToDocument={!multiColumn}
 | 
				
			||||||
      />
 | 
					      />
 | 
				
			||||||
      </div>
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
      <Helmet>
 | 
					      <Helmet>
 | 
				
			||||||
        <title>{intl.formatMessage(messages.title)}</title>
 | 
					        <title>{intl.formatMessage(messages.title)}</title>
 | 
				
			||||||
 | 
				
			|||||||
@ -8278,6 +8278,9 @@ noscript {
 | 
				
			|||||||
  flex: 1 1 auto;
 | 
					  flex: 1 1 auto;
 | 
				
			||||||
  display: flex;
 | 
					  display: flex;
 | 
				
			||||||
  flex-direction: column;
 | 
					  flex-direction: column;
 | 
				
			||||||
 | 
					  background: $ui-base-color;
 | 
				
			||||||
 | 
					  border-bottom-left-radius: 4px;
 | 
				
			||||||
 | 
					  border-bottom-right-radius: 4px;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.story {
 | 
					.story {
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user