Skip to content

Commit

Permalink
Add hover feedback to walkthrough steps (#166658)
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddossett committed Nov 18, 2022
1 parent 8c44526 commit c1fa325
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -397,9 +397,9 @@
.monaco-workbench .part.editor>.content .gettingStartedContainer .gettingStartedSlideDetails .getting-started-step {
display: flex;
width: 100%;
margin: 4px 0;
margin: 8px 0;
overflow: hidden;
border-radius: 3px;
border-radius: 6px;
}

.monaco-workbench .part.editor>.content .gettingStartedContainer .gettingStartedSlideDetails .getting-started-step .button-container:not(:last-of-type) {
Expand All @@ -416,9 +416,13 @@
}

.monaco-workbench .part.editor>.content .gettingStartedContainer .gettingStartedSlideDetails .getting-started-step:not(.expanded) {
height: 54px;
height: 48px;
background: none;
opacity: 0.8;
color: var(--vscode-descriptionForeground);
}

.monaco-workbench .part.editor>.content .gettingStartedContainer .gettingStartedSlideDetails .getting-started-step:not(.expanded):hover {
background: var(--vscode-welcomePage-tileHoverBackground);
}

.monaco-workbench .part.editor>.content .gettingStartedContainer .gettingStartedSlideDetails .getting-started-step:not(.expanded) .step-title {
Expand Down

0 comments on commit c1fa325

Please sign in to comment.