mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
e7b6d332e9
Summary: Fixes T4234 (Policy and Herald). I will have an additional diff for Maniphest Batch Editor, which looks jank in many other ways. Test Plan: Test editing a policy and some herald rules. Stuff lines up better. {F235086} {F235087} Reviewers: btrahan, epriestley Reviewed By: epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T4234 Differential Revision: https://secure.phabricator.com/D10864
36 lines
554 B
CSS
36 lines
554 B
CSS
/**
|
|
* @provides policy-edit-css
|
|
*/
|
|
|
|
.policy-rules-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.policy-rules-table td {
|
|
padding: 4px 8px 4px 0;
|
|
width: 32px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.policy-rules-table td.remove-column {
|
|
padding-right: 0;
|
|
}
|
|
|
|
.policy-rules-table td.action-cell {
|
|
width: 120px;
|
|
}
|
|
|
|
.policy-rules-table td.rule-cell {
|
|
width: 180px;
|
|
}
|
|
|
|
.policy-rules-table td.value-cell {
|
|
width: auto;
|
|
padding-right: 12px;
|
|
}
|
|
|
|
.policy-rules-table td.action-cell select,
|
|
.policy-rules-table td.rule-cell select,
|
|
.policy-rules-table td input {
|
|
width: 100%;
|
|
}
|