1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-10-23 17:18:51 +02:00
phorge-phorge/webroot/rsrc/css/application/project/project-triggers.css
epriestley 567dea5449 Mostly make the editor UI for triggers work
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
2019-03-25 13:25:14 -07:00

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%;
}