mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-27 01:02:42 +01:00
567dea5449
Summary: Ref T5474. This provides a Herald-like UI for editing workboard trigger rules. This probably has some missing pieces and doesn't actually save anything to the database yet, but the basics at least roughly work. Test Plan: {F6299886} Reviewers: amckinley Reviewed By: amckinley Maniphest Tasks: T5474 Differential Revision: https://secure.phabricator.com/D20301
38 lines
600 B
CSS
38 lines
600 B
CSS
/**
|
|
* @provides project-triggers-css
|
|
*/
|
|
|
|
.trigger-rules-table {
|
|
margin: 16px 0;
|
|
border-collapse: separate;
|
|
border-spacing: 0 4px;
|
|
}
|
|
|
|
.trigger-rules-table tr {
|
|
background: {$bluebackground};
|
|
}
|
|
|
|
.trigger-rules-table td {
|
|
padding: 6px 4px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.trigger-rules-table td.type-cell {
|
|
padding-left: 6px;
|
|
}
|
|
|
|
.trigger-rules-table td.remove-column {
|
|
padding-right: 6px;
|
|
}
|
|
|
|
.trigger-rules-table td.invalid-cell {
|
|
padding-left: 12px;
|
|
}
|
|
|
|
.trigger-rules-table td.invalid-cell .phui-icon-view {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.trigger-rules-table td.value-cell {
|
|
width: 100%;
|
|
}
|