mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-04 07:15:54 +01:00
Improve Issue Reporter UI
* improve scrollbar margin * add cursor property * no wrapping of label text
This commit is contained in:
committed by
Rachel Macfarlane
parent
861c6bf17f
commit
0ace6ef8ea
@@ -116,6 +116,7 @@ html {
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
.hidden {
|
||||
@@ -223,16 +224,11 @@ summary {
|
||||
|
||||
.include-data {
|
||||
display: inline-block;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.include-data > .caption {
|
||||
display: inline-block;
|
||||
font-size: 12px;
|
||||
position: absolute;
|
||||
width: 80px;
|
||||
top: 2px;
|
||||
left: 30px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
@@ -263,9 +259,12 @@ input:disabled {
|
||||
margin-top: .5em;
|
||||
}
|
||||
|
||||
.workbenchCommand {
|
||||
cursor: pointer;
|
||||
}
|
||||
.workbenchCommand:disabled {
|
||||
color: #868e96;
|
||||
cursor: pointer;
|
||||
cursor: default
|
||||
}
|
||||
|
||||
.block-extensions .block-info {
|
||||
@@ -303,6 +302,7 @@ button {
|
||||
|
||||
#issue-type {
|
||||
width: calc(100% - 100px);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
#issue-title-label {
|
||||
@@ -348,14 +348,18 @@ button {
|
||||
}
|
||||
}
|
||||
|
||||
.issues-container::-webkit-scrollbar, body::-webkit-scrollbar {
|
||||
::-webkit-scrollbar {
|
||||
width: 14px;
|
||||
}
|
||||
|
||||
.issues-container::-webkit-scrollbar, body::-webkit-scrollbar-thumb {
|
||||
::-webkit-scrollbar-thumb {
|
||||
min-height: 20px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-corner {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.issues-container {
|
||||
margin-top: .5em;
|
||||
height: 108px;
|
||||
@@ -397,4 +401,4 @@ div.issues-container {
|
||||
|
||||
.issues-container > .issue > .issue-state .octicon {
|
||||
padding-right: 5px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user