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

Polish getting started page (fix #226991) #226994

Merged
merged 5 commits into from
Sep 13, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,6 @@
.monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlideCategories .featured-icon {
font-size: 20px;
padding-right: 8px;
position: relative;
Copy link
Collaborator

Choose a reason for hiding this comment

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

Is this change needed?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This property can be deleted or not since using position: relative without top: 3px works the same as position: static (default value) for the element itself (https://stackoverflow.com/a/13394093)

top: 3px;
}

.monaco-workbench .part.editor > .content .gettingStartedContainer .gettingStartedSlideCategories .codicon:not(.icon-widget, .featured-icon, .hide-category-button) {
Expand Down Expand Up @@ -926,8 +924,17 @@
text-decoration: var(--text-link-decoration);
}

.monaco-workbench .part.editor > .content .gettingStartedContainer .start-container .button-link {
line-height: 24px;
}

.monaco-workbench .part.editor > .content .gettingStartedContainer .button-link span {
vertical-align: middle;
}

.monaco-workbench .part.editor > .content .gettingStartedContainer .button-link .codicon {
color: var(--vscode-textLink-foreground);
vertical-align: middle;
}

.monaco-workbench .part.editor > .content .gettingStartedContainer a:not(.hide-category-button):hover {
Expand Down