Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tourniquets Text to Fix Table Length Issue in Help #1694

Merged
merged 2 commits into from
Jun 27, 2018

Conversation

QuirkyRobots
Copy link
Contributor

@QuirkyRobots QuirkyRobots commented Jun 26, 2018

Same CSS issue and fix as #1692 which fixes tables issues when the app is at minimum width.

These little details help keep the app looking professional, thus helping brand reputation/authority.

BEFORE

image

AFTER

image

@QuirkyRobots QuirkyRobots changed the title Tourniquets Text Over 20VW to Fix Table Length Issue in Help Tourniquets Text to Fix Table Length Issue in Help Jun 26, 2018
@@ -13,6 +13,11 @@ table.table,
tr td:last-of-type,
tr th:last-of-type {
padding-right: $spacing-vertical * 2/3;
/*Tourniquets text over 20VW*/
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This probably can't become a property of all final table cells.

table.table--help {
  td:nth-of-type(1) {
    color: var(--text-color);
    font-family: 'metropolis-semibold';
    min-width: 130px;
  }
    td:nth-of-type(2) {
/*Tourniquets text over 20VW*/
    max-width: 20vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@QuirkyRobots
Copy link
Contributor Author

Was better placed in the HELP section of the CSS. This way, it's only affecting the HELP table and not global assets.

table.table--help {
  td:nth-of-type(1) {
    color: var(--text-color);
    font-family: 'metropolis-semibold';
    min-width: 130px;
  }
    td:nth-of-type(2) {
/*Tourniquets text over 20VW*/
    max-width: 20vw;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@neb-b neb-b merged commit 7f60b53 into lbryio:master Jun 27, 2018
@QuirkyRobots QuirkyRobots deleted the patch-3 branch June 27, 2018 05:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants