mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-16 00:38:38 +01:00
[Redesign] Clean up Config Issue UI
Summary: Ref T8099, Missed a few various edge cases here. Cleans up the 'next' UI. Test Plan: Review a current setup issue, then ignore it. Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: epriestley, Korvin Maniphest Tasks: T8099 Differential Revision: https://secure.phabricator.com/D13529
This commit is contained in:
parent
997ba9ddc5
commit
9478af1845
3 changed files with 11 additions and 6 deletions
|
@ -44,7 +44,7 @@ return array(
|
|||
'rsrc/css/application/config/config-options.css' => '7fedf08b',
|
||||
'rsrc/css/application/config/config-template.css' => '8e6c6fcd',
|
||||
'rsrc/css/application/config/config-welcome.css' => '6abd79be',
|
||||
'rsrc/css/application/config/setup-issue.css' => '631c4e92',
|
||||
'rsrc/css/application/config/setup-issue.css' => 'db7e9c40',
|
||||
'rsrc/css/application/config/unhandled-exception.css' => '4c96257a',
|
||||
'rsrc/css/application/conpherence/durable-column.css' => '86396117',
|
||||
'rsrc/css/application/conpherence/menu.css' => 'f99fee4c',
|
||||
|
@ -816,7 +816,7 @@ return array(
|
|||
'releeph-preview-branch' => 'b7a6f4a5',
|
||||
'releeph-request-differential-create-dialog' => '8d8b92cd',
|
||||
'releeph-request-typeahead-css' => '667a48ae',
|
||||
'setup-issue-css' => '631c4e92',
|
||||
'setup-issue-css' => 'db7e9c40',
|
||||
'sprite-login-css' => 'a3526809',
|
||||
'sprite-main-header-css' => '37e05e50',
|
||||
'sprite-menu-css' => 'fba663c3',
|
||||
|
|
|
@ -192,7 +192,7 @@ final class PhabricatorSetupIssueView extends AphrontView {
|
|||
array(
|
||||
'class' => 'setup-issue-tail',
|
||||
),
|
||||
array($actions, $next));
|
||||
array($actions));
|
||||
|
||||
$issue = phutil_tag(
|
||||
'div',
|
||||
|
@ -219,6 +219,7 @@ final class PhabricatorSetupIssueView extends AphrontView {
|
|||
),
|
||||
array(
|
||||
$issue,
|
||||
$next,
|
||||
$debug_info,
|
||||
));
|
||||
}
|
||||
|
|
|
@ -80,7 +80,7 @@
|
|||
padding: 4px 8px 12px;
|
||||
border-bottom: 1px solid #BFCFDA;
|
||||
font-size: 15px;
|
||||
font-weight: 500;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.setup-issue-tail {
|
||||
|
@ -100,17 +100,21 @@
|
|||
padding: 8px 12px;
|
||||
border-top: 1px solid #dfdfdf;
|
||||
background-color: #f7f7f7;
|
||||
border-bottom-right-radius: 3px;
|
||||
border-bottom-left-radius: 3px;
|
||||
overflow: hidden;
|
||||
margin: 0 -8px -8px -8px;
|
||||
}
|
||||
|
||||
.setup-issue-next {
|
||||
padding: 12px;
|
||||
border-top: 1px solid #BFCFDA;
|
||||
border: 1px solid #BFCFDA;
|
||||
background: #daeaf3;
|
||||
text-align: center;
|
||||
font-size: 15px;
|
||||
font-size: 16px;
|
||||
margin: 12px 0;
|
||||
color: #2980b9;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.setup-issue-config {
|
||||
|
|
Loading…
Add table
Reference in a new issue