-
-
Notifications
You must be signed in to change notification settings - Fork 81
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
Refactor of Scoped CSS #413
base: master
Are you sure you want to change the base?
Conversation
width: 125px; | ||
} | ||
|
||
img { |
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.
This might be "dangerous" as it now targets every "img" whereas it was scoped to the component before. so probably you want something like actions-img or so?
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.
Understood, gonna check that issue
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.
Currently the bUnit tests are red, as you "renamed" the CSS selectors
So I rename it back to the original or update the bUnit tests? |
I would do the latter |
Removed the empty razor css files and added one that I missed. An issue that remains is at home, the introduction hasn't show up yet of |
Hmm that might be because of |
There are some smaller tests that refer to the "old" structure: var items = cut.FindAll(".profile-keypoints li"); |
Based on dev tools the profiles images are loaded correctly but don't show up on the page How it works: Another bug is with PreviewImageRazor for blogposts that takes over the entire space and locks The css is @if (string.IsNullOrEmpty(PreviewImageUrlFallback))
{
<img src="@PreviewImageUrl" alt="Preview image blogpost" loading="@LazyLoadTag" decoding="@DecodingTag" />
}
else
{
<picture>
<source srcset="@PreviewImageUrl" type="@GetMimeType()"/>
<img src="@PreviewImageUrlFallback" alt="Preview image blogpost" loading="@LazyLoadTag" decoding="@DecodingTag" />
</picture>
} |
Do you need me to update them and search for other CSS renames too? |
About this portion of the issue with PreviewImage.razor I did progress adding .img-container {
position: relative;
width: 100%;
height: 100%;
overflow: hidden;
}
.comp-img {
position: absolute;
top: 0;
left: 0;
object-fit: cover;
height: 100%;
width: 100%;
} For <div class="img-container">
<img class="comp-img" src="@PreviewImageUrl" alt="Preview image blogpost" loading="@LazyLoadTag" decoding="@DecodingTag" />
</div> For <div class="img-container">
<picture>
<source srcset="@PreviewImageUrl" type="@GetMimeType()" />
<img class="comp-img" src="@PreviewImageUrlFallback" alt="Preview image blogpost" loading="@LazyLoadTag" decoding="@DecodingTag" />
</picture>
</div> but for some reason now stopped working haha the PreviewImageUrl too |
We have to make the tests work in one way or another. In this regard, the selector has to be aligned to the new "prefix" added. |
I have to checkout the branch later locally. I tried inside GitHub Codespaces and I got some 404 for the images. Not sure if this is because of GitHub Codespace or it showcases the underlying issue on why the images aren't showing up. |
@EliasMasche I took the opportunity to push to your PR. Hope you don't mind. |
Yeah, no problem. the only issue that remains is the home/introduction CSS, right? |
Technically, yes. So of course everything should work as before, but overall I would like to go a step further, otherwise we just moved the CSS from one file to another. Ideally:
|
The navbar items seem a bit closer than they were before and lost their "bold" font. |
Should also be fixed. Now the interesting part starts: Consolidating :D |
Roger that. I checked your commits. I pulled into my local branch, and the CSS works now, but I am getting a 404 for the images.
The end goal is to put all CSS into
Good thing this time I put the PR as draft as it is more of a proposal and WIP. |
Interesting. By any chance, do you have a chrome based browser to cross-check if it happens there as well?
No worries - that is part of the process. Issues/PR's are async in nature and therefore are more likely to have misunderstandings and whatnot. |
Yeah, same issue coming from Edge Browser, What it dislikes is that it comes from the same application but a different domain or locally triggering CORS if I use it from another website/domain, or blob storage works fine. |
Initial PR of the process for Scoped CSS