mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
3958bf3677
Summary: Ref T4331. Ref T5968. Users sometimes have trouble figuring out how to ignore issues. The option is a bit hard to spot, especially if you aren't familiar with interfaces yet. Make it a button on the issue page itself instead. Test Plan: Normal issue: {F199225} Ignored issue: {F199226} Fatal issue: {F199227} Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T4331, T5968 Differential Revision: https://secure.phabricator.com/D10420
134 lines
2.1 KiB
CSS
134 lines
2.1 KiB
CSS
/**
|
|
* @provides setup-issue-css
|
|
*/
|
|
|
|
|
|
.setup-issue-background {
|
|
padding: 12px 0;
|
|
}
|
|
|
|
.setup-issue-shell {
|
|
max-width: 760px;
|
|
margin: 16px auto;
|
|
}
|
|
|
|
.setup-issue {
|
|
background: #fff;
|
|
border: 1px solid #BFCFDA;
|
|
border-bottom: 1px solid #8C98B8;
|
|
}
|
|
|
|
.setup-issue p {
|
|
margin: 12px 0;
|
|
}
|
|
|
|
.setup-issue table {
|
|
width: 90%;
|
|
margin: auto;
|
|
border-collapse: collapse;
|
|
border: 1px solid #dfdfdf;
|
|
}
|
|
|
|
.setup-issue table th {
|
|
text-align: right;
|
|
width: 30%;
|
|
background: #efefef;
|
|
border: 1px solid #dfdfdf;
|
|
padding: 8px;
|
|
}
|
|
|
|
.setup-issue table td {
|
|
border: 1px solid #dfdfdf;
|
|
padding: 8px;
|
|
}
|
|
|
|
.setup-issue pre {
|
|
width: 95%;
|
|
margin: auto;
|
|
border: 1px solid #dfdfdf;
|
|
padding: 10px 2%;
|
|
background: #efefef;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.setup-issue tt {
|
|
color: #74777D;
|
|
}
|
|
|
|
.setup-issue em {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.setup-issue-instructions {
|
|
font-size: 14px;
|
|
padding: 12px 0;
|
|
line-height: 20px;
|
|
background: #fff;
|
|
border-bottom: 1px solid #BFCFDA;
|
|
margin: 0 12px;
|
|
}
|
|
|
|
.setup-fatal .setup-issue-instructions {
|
|
color: #c0392b;
|
|
background: #f4dddb;
|
|
padding: 12px;
|
|
margin: 0 0 12px;
|
|
border-bottom: 1px solid #c0392b;
|
|
}
|
|
|
|
.setup-issue-name {
|
|
color: #6B748C;
|
|
text-shadow: 0 1px #fff;
|
|
padding: 16px 12px;
|
|
border-bottom: 1px solid #BFCFDA;
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
background-image: url(/rsrc/image/lightblue-header.png);
|
|
background-repeat: repeat-x;
|
|
}
|
|
|
|
.setup-issue-tail {
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.setup-issue-status {
|
|
padding: 12px;
|
|
background: #f3f3f3;
|
|
color: #666666;
|
|
border-bottom: 1px solid #dfdfdf;
|
|
font-style: italic;
|
|
}
|
|
|
|
.setup-issue-actions {
|
|
padding: 12px;
|
|
background: #f3f3f3;
|
|
border-top: 1px solid #dfdfdf;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.setup-issue-next {
|
|
padding: 12px;
|
|
border-top: 1px solid #BFCFDA;
|
|
background: #daeaf3;
|
|
text-align: center;
|
|
font-size: 15px;
|
|
color: #2980b9;
|
|
}
|
|
|
|
.setup-issue-config {
|
|
padding: 0 12px;
|
|
background: #fff;
|
|
}
|
|
|
|
.setup-issue ul {
|
|
width: 90%;
|
|
margin: 1em auto;
|
|
list-style: circle;
|
|
}
|
|
|
|
.setup-issue-debug {
|
|
margin-top: 8px;
|
|
padding: 4px;
|
|
text-align: right;
|
|
color: #74777D;
|
|
}
|