mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
4f615ad2a9
Summary: Resolves T2149. Test Plan: $ bin/storage upgrade # /owners/ - saw + # /owners/package/1/ - saw + # /owners/edit/1/ - added exclude paths, saw correct e-mail # /rPabc123 - included paths are still highlighted and excluded not # /owners/view/search/?path=/included/ - found # /owners/view/search/?path=/excluded/ - not found # owners.query - path: /included/ # owners.query - path: /excluded/ # new unit test PhabricatorOwnersPackage::loadAffectedPackages( $repository, array('/excluded/b.php')); PhabricatorOwnersPackage::loadAffectedPackages( $repository, array('/included/a.php')); Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2149 Differential Revision: https://secure.phabricator.com/D4102
37 lines
557 B
CSS
37 lines
557 B
CSS
/**
|
|
* @provides owners-path-editor-css
|
|
*/
|
|
|
|
.owners-path-editor-table {
|
|
margin: 10px;
|
|
}
|
|
|
|
.owners-path-editor-table td {
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
.owners-path-editor-table select.owners-repo {
|
|
width: 150px;
|
|
}
|
|
|
|
.owners-path-editor-table input {
|
|
width: 450px;
|
|
}
|
|
|
|
.owners-path-editor-table div.error-display {
|
|
width: 200px;
|
|
padding: 4px 12px 0;
|
|
}
|
|
|
|
.owners-path-editor-table div.validating {
|
|
color: #666666;
|
|
}
|
|
|
|
.owners-path-editor-table div.invalid {
|
|
color: #aa0000;
|
|
}
|
|
|
|
.owners-path-editor-table div.valid {
|
|
color: #00aa00;
|
|
font-weight: bold;
|
|
}
|