提交 a9777e85 编写于 作者: C Christof Marti

Use openFolder on Windows and Linux (fixes #18859)

上级 189045ac
...@@ -230,3 +230,18 @@ ...@@ -230,3 +230,18 @@
.monaco-workbench > .part.editor > .content .welcomePage.max-height-690px .title { .monaco-workbench > .part.editor > .content .welcomePage.max-height-690px .title {
display: none; display: none;
} }
.monaco-workbench > .part.editor > .content .welcomePage .mac-only,
.monaco-workbench > .part.editor > .content .welcomePage .windows-only,
.monaco-workbench > .part.editor > .content .welcomePage .linux-only {
display: none;
}
.monaco-workbench.mac > .part.editor > .content .welcomePage .mac-only {
display: initial;
}
.monaco-workbench.windows > .part.editor > .content .welcomePage .windows-only {
display: initial;
}
.monaco-workbench.linux > .part.editor > .content .welcomePage .linux-only {
display: initial;
}
\ No newline at end of file
...@@ -8,7 +8,8 @@ ...@@ -8,7 +8,8 @@
<div class="section start"> <div class="section start">
<h2>Start</h2> <h2>Start</h2>
<ul> <ul>
<li><a href="command:workbench.action.files.openFileFolder">Open folder...</a></li> <li class="mac-only"><a href="command:workbench.action.files.openFileFolder">Open folder...</a></li>
<li class="windows-only linux-only"><a href="command:workbench.action.files.openFolder">Open folder...</a></li>
<li><a href="command:workbench.action.git.clone">Clone Git repository...</a></li> <li><a href="command:workbench.action.git.clone">Clone Git repository...</a></li>
</ul> </ul>
</div> </div>
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册