-
Notifications
You must be signed in to change notification settings - Fork 46
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
List in /tests page not scrollable #49
Comments
I've searched the entire project for |
sounds like it didn't install properly. They should be added inline to tests/index.html |
<style>#blanket-main { position: relative; z-index: 99999; }</style> |
Dan, it's in your tests.html. Or should be. Inserted by index.js Sounds like you did an npm install whereas the blanket file install and css touchup happen in after install Not at the computer right now. But I can take a look at this and see what alternatives we have -jeff
|
I actually did the
They are added, their div element just isn't scrollable. I got it doing what I wanted by adding this CSS to my project:
But sounds like this was an install error? Leaving this open so we can explore what went wrong. |
Oh yes, |
what browser? |
Chrome Version 42.0.2311.90 (64-bit)
|
Running the same and don't have any issues. I am using mocha though. |
This may be because I'm running a css-reset, and This would present a decent question to consider: Should this addon expect a certain style context, or should it provide the styles that it relies on? |
@FlySwatter correct, it seems that the CSS in your app may be interfering with the css for the test runner. I had to add this to body { overflow-y: scroll; } ...because we were doing a similar reset in our app. Your suggestion helped us fix it. |
It's interesting that the app's reset can extend outside itself, but I guess a reset indiscriminately applies to |
@FlySwatter recommendation here? or close? |
If it doesn't break others' formats if say add the Css that we did, but you would want to test it on some other projects first. Otherwise a note in the readme I guess would do. |
If I call
ember serve
and navigate to my/tests
route and clickshow coverage
, the coverage tests are shown in an element, but if the list is long, it will spill out of view, and is not scrollable.The text was updated successfully, but these errors were encountered: