Skip to content

Commit

Permalink
folding fade out
Browse files Browse the repository at this point in the history
related to microsoft#2984
  • Loading branch information
joaomoreno committed Feb 26, 2016
1 parent 8d3a88e commit 698fa9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/vs/editor/contrib/folding/browser/folding.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
background-origin: border-box;
background-position: 3px center;
background-size: 15px;
background-image: url('arrow-expand.svg');
margin-left: 5px;
cursor: pointer;
opacity: 0;
transition: opacity .5s;
transition: opacity .3s;
}

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

Expand All @@ -24,7 +24,7 @@
opacity: 1;
}

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

Expand All @@ -33,7 +33,7 @@
}

/* High-contrast theme */
.monaco-editor.hc-black .margin-view-overlays:hover .folding {
.monaco-editor.hc-black .margin-view-overlays .folding {
background-image: url('arrow-expand-dark.svg');
}

Expand Down

0 comments on commit 698fa9b

Please sign in to comment.