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
57 lines
873 B
CSS
57 lines
873 B
CSS
/**
|
|
* @provides herald-css
|
|
*/
|
|
|
|
.herald-action-table,
|
|
.herald-condition-table {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.herald-condition-table select {
|
|
width: 160px;
|
|
}
|
|
|
|
.device-phone .herald-condition-table select {
|
|
width: 90px;
|
|
}
|
|
|
|
.herald-action-table td,
|
|
.herald-condition-table td {
|
|
padding: 2px 8px 2px 0;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.herald-action-table td.remove-column,
|
|
.herald-condition-table td.remove-column {
|
|
padding: 2px 0 2px 4px;
|
|
}
|
|
|
|
.herald-condition-table td.value {
|
|
width: 100%;
|
|
}
|
|
|
|
.herald-action-table td input,
|
|
.herald-condition-table td input {
|
|
width: 95%;
|
|
max-width: 460px;
|
|
padding: 2px 4px;
|
|
}
|
|
|
|
.herald-action-table td.target {
|
|
width: 100%;
|
|
}
|
|
|
|
.herald-list-description {
|
|
color: {$darkgreytext};
|
|
padding: 8px 0;
|
|
}
|
|
|
|
.herald-list-icon {
|
|
margin-left: 12px;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
.herald-list-item {
|
|
padding-bottom: 4px;
|
|
color: {$greytext};
|
|
}
|