mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
c6557d3363
Summary: Currently, you can only edit your own affiliation to projects. Enable users to be managed in a more reasonable batched way. I'll lock this down to admins/owners and add a transaction log at some point. Test Plan: Edited project affiliations. Verified Herald still works. Reviewed By: jungejason Reviewers: jungejason, tuomaspelkonen, aran CC: aran, jungejason Differential Revision: 677
30 lines
443 B
CSS
30 lines
443 B
CSS
/**
|
|
* @provides project-edit-css
|
|
*/
|
|
|
|
.project-resource-table {
|
|
width: 100%;
|
|
}
|
|
|
|
.project-resource-table td {
|
|
padding: 2px 4px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.project-resource-table td label {
|
|
font-weight: bold;
|
|
color: #666666;
|
|
text-align: right;
|
|
}
|
|
|
|
.project-resource-table td.user-tokenizer {
|
|
width: 35%;
|
|
}
|
|
|
|
.project-resource-table td.role-label {
|
|
padding-left: 25px;
|
|
}
|
|
|
|
.project-resource-table td.role input {
|
|
width: 300px;
|
|
}
|