提交 3f4df74e 编写于 作者: C Christof Marti

Avoid use of "*" selector in CSS (fixes #45060)

上级 29745fc1
......@@ -22,10 +22,19 @@
flex-flow: row;
}
.monaco-workbench > .part.editor > .content .welcomePage .row * {
min-width: 0;
white-space: nowrap;
text-overflow: ellipsis;
.monaco-workbench > .part.editor > .content .welcomePage .row .section {
overflow: hidden;
}
.monaco-workbench > .part.editor > .content .welcomePage .row .splash {
overflow: hidden;
}
.monaco-workbench > .part.editor > .content .welcomePage .row .commands {
overflow: hidden;
}
.monaco-workbench > .part.editor > .content .welcomePage .row .commands ul {
overflow: hidden;
}
......@@ -95,6 +104,13 @@
padding: 0;
}
.monaco-workbench > .part.editor > .content .welcomePage .splash li {
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.monaco-workbench > .part.editor > .content .welcomePage.emptyRecent .splash .recent .list {
display: none;
}
......@@ -109,19 +125,16 @@
margin-top: 5px;
}
.monaco-workbench > .part.editor > .content .welcomePage .splash .recent li {
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.monaco-workbench > .part.editor > .content .welcomePage .splash .recent .path {
padding-left: 1em;
}
.monaco-workbench > .part.editor > .content .welcomePage .splash .title,
.monaco-workbench > .part.editor > .content .welcomePage .splash .showOnStartup {
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.monaco-workbench > .part.editor > .content .welcomePage .splash .showOnStartup > .checkbox {
......@@ -150,6 +163,10 @@
.monaco-workbench > .part.editor > .content .welcomePage .commands li button > span {
display: inline-block;
width:100%;
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.monaco-workbench > .part.editor > .content .welcomePage .commands li button h3 {
......@@ -157,6 +174,10 @@
font-size: 1em;
margin: 0;
margin-bottom: .25em;
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.monaco-workbench > .part.editor > .content .welcomePage .commands li button {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册