Skip to content

Commit

Permalink
Addresses #2984 adds fade in to folding icons.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgashler1 committed Feb 26, 2016
1 parent cd54d4e commit 8d3a88e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/vs/editor/contrib/folding/browser/folding.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,18 @@
background-size: 15px;
margin-left: 5px;
cursor: pointer;
opacity: 0;
transition: opacity .5s;
}

.monaco-editor .margin-view-overlays:hover .folding {
background-image: url('arrow-expand.svg');
opacity: 1;
}

.monaco-editor .margin-view-overlays .folding.collapsed {
background-image: url('arrow-collapse.svg');
opacity: 1;
}

.monaco-editor.vs-dark .margin-view-overlays:hover .folding {
Expand Down

0 comments on commit 8d3a88e

Please sign in to comment.