~cytrogen/masto-fe

38d28824475056766c97385b66f4e04a5123e3a2 — Thibaut Girka 6 years ago bb94597
Fix NavigationBar styling
M app/javascript/flavours/glitch/features/compose/components/navigation_bar.js => app/javascript/flavours/glitch/features/compose/components/navigation_bar.js +11 -9
@@ 20,16 20,18 @@ export default class NavigationBar extends ImmutablePureComponent {
          <Avatar account={this.props.account} size={48} />
        </Permalink>

        <Permalink className='acct' href={this.props.account.get('url')} to={`/accounts/${this.props.account.get('id')}`}>
          <strong>@{this.props.account.get('acct')}</strong>
        </Permalink>
        <div className='navigation-bar__profile'>
          <Permalink className='acct' href={this.props.account.get('url')} to={`/accounts/${this.props.account.get('id')}`}>
            <strong>@{this.props.account.get('acct')}</strong>
          </Permalink>

        { profileLink !== undefined && (
          <a
            className='edit'
            href={ profileLink }
          ><FormattedMessage id='navigation_bar.edit_profile' defaultMessage='Edit profile' /></a>
        )}
          { profileLink !== undefined && (
            <a
              className='edit'
              href={ profileLink }
            ><FormattedMessage id='navigation_bar.edit_profile' defaultMessage='Edit profile' /></a>
          )}
        </div>
      </div>
    );
  };

M app/javascript/flavours/glitch/styles/components/drawer.scss => app/javascript/flavours/glitch/styles/components/drawer.scss +10 -7
@@ 163,18 163,15 @@
.drawer--account {
  padding: 10px;
  color: $darker-text-color;
  display: flex;
  align-items: center;

  & > a {
  a {
    color: inherit;
    text-decoration: none;
  }

  & > .avatar {
    float: left;
    margin-right: 10px;
  }

  & > .acct {
  .acct {
    display: block;
    color: $secondary-text-color;
    font-weight: 500;


@@ 184,6 181,12 @@
  }
}

.navigation-bar__profile {
  flex: 1 1 auto;
  margin-left: 8px;
  overflow: hidden;
}

.drawer--results {
  background: $ui-base-color;
  overflow-x: hidden;