-
Notifications
You must be signed in to change notification settings - Fork 124
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
Wrap long file names in fileset and work show page #3332
Conversation
@@ -18,7 +18,12 @@ header > h1 .label { | |||
padding: $panel-body-padding; | |||
} | |||
|
|||
.relationships, | |||
.attribute-filename, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Avoid using id selectors
This looks great! Do you have thoughts about how to respond to the issue flagged by Hound? |
@no-reply - I'm having problem running bundle install for this branch after rebase with master branch and run the command rm -rf .internal_test_app Gemfile.lock . I'm working on it and will try to update css to avoid id selector. I'll keep you posted. Thanks for reviewing. |
td:first-child { | ||
word-break: break-all; | ||
} | ||
|
||
.attributes { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did you intend to remove .relationships
from this selector?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jcoyne - It was a mistake. I added it back.
.relationships, | ||
.attribute-filename, | ||
header h1, | ||
td:first-child { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jcoyne - The pages have been updated to use the new class .ensure-wrapped. Thanks for suggestion.
Fixes #1275
Wrap long file names without spaces fit the layout.
Here's the screen shot of before and after the change
Before
After
@samvera/hyrax-code-reviewers