mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-23 23:32:40 +01:00
14d16eab17
Summary: Added a typeahead in the edit herald rule page that allows an admin or owner to change the current owner of a rule. If the typeahead is emptied, the current owner will remain owner. Test Plan: Created a test rule. Changed the owner. Deleted the owner in the typahead. Verified expected behavior. Reviewers: jungejason, epriestley Reviewed By: epriestley CC: aran, jungejason, epriestley, xela Differential Revision: https://secure.phabricator.com/D1322
35 lines
504 B
CSS
35 lines
504 B
CSS
/**
|
|
* @provides herald-css
|
|
*/
|
|
|
|
.herald-action-table,
|
|
.herald-condition-table {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.herald-condition-table select {
|
|
width: 250px;
|
|
}
|
|
|
|
.herald-action-table td,
|
|
.herald-condition-table td {
|
|
padding: 2px 4px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.herald-condition-table td.value {
|
|
width: 100%;
|
|
}
|
|
|
|
.herald-action-table td input,
|
|
.herald-condition-table td input {
|
|
width: 460px;
|
|
}
|
|
|
|
.herald-action-table td.target {
|
|
width: 100%;
|
|
}
|
|
|
|
#herald-rule-edit-form #author-input {
|
|
width: 300px;
|
|
}
|