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 ourterms of serviceand privacy statement.We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc] changeoverflowproperty value fromvisibletoscroll #57174

Open
321paranoiawhyopened this issue Jul 29, 2024 · 3 comments
Open

[Doc] changeoverflowproperty value fromvisibletoscroll #57174

321paranoiawhyopened this issue Jul 29, 2024 · 3 comments
Labels
area: docs Related to the documentation P3 An issue that is relevant to core functions, but does not impede progress. Important, but not urgent state: has PR
Milestone

Comments

@321paranoiawhy
Copy link

321paranoiawhy commented Jul 29, 2024

Describe the problem that you experienced

content overflowed can not scroll

Enter the URL of the topic with the problem

https://angular.dev/tutorials/learn-angular

Describe what you were looking for in the documentation

Click theconsoletab inthis link,and the content will overflow, caused by the following css defined in_xterm.scss:

.xterm-screen{
padding:10px;
box-sizing:border-box;
overflow:visible!important;
height:100%!important;
width:100%!important;
}

and should be changed to:

.xterm-screen {
padding: 10px;
box-sizing: border-box;
-overflow: visible!important;
+overflow: scroll!important;
height: 100%!important;
width: 100%!important;
}

orelse maybeoveflow-y: scroll!important;

Describe the actions that led you to experience the problem

No response

Describe what you want to experience that would fix the problem

No response

Add a screenshot if that helps illustrate the problem

No response

If this problem caused an exception or error, please paste it here

No response

If the problem is browser-specific, please specify the device, OS, browser, and version

No response

Provide any additional information here in as much as detail as you can

No response

@Shaper9
Copy link

Shaper9 commented Jul 29, 2024

Looks likeoverflow-y: auto!importantshould do the trick. Im gonna make PR

@thePunderWoman thePunderWoman added the area: docs Related to the documentation label Jul 30, 2024
@ngbot ngbot bot added this to theneedsTriagemilestone Jul 30, 2024
@bencodezen bencodezen added the P3 An issue that is relevant to core functions, but does not impede progress. Important, but not urgent label Jul 30, 2024
@ngbot ngbot bot modified the milestones: needsTriage, Backlog Jul 30, 2024
@JeanMeche
Copy link
Member

I could't reproduce the issue on Chrome but there seems to be an issue on Safari. Can you confirm that you were using Safari?

@321paranoiawhy
Copy link
Author

I could't reproduce the issue on Chrome but there seems to be an issue on Safari. Can you confirm that you were using Safari?

Maybe firefox, but today I fail to reproduce, it's so strange... At the time I open the issue, it did have issue although.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: docs Related to the documentation P3 An issue that is relevant to core functions, but does not impede progress. Important, but not urgent state: has PR
Projects
None yet
Development

No branches or pull requests

5 participants