mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
921bc32928
Summary: Split some of these up for safe regexes. Test Plan: reload celerity Reviewers: epriestley, btrahan Reviewed By: epriestley CC: Korvin, aran Differential Revision: https://secure.phabricator.com/D6858
37 lines
571 B
CSS
37 lines
571 B
CSS
/**
|
|
* @provides owners-path-editor-css
|
|
*/
|
|
|
|
.owners-path-editor-table {
|
|
margin: 10px;
|
|
}
|
|
|
|
.owners-path-editor-table td {
|
|
padding: 2px 4px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.owners-path-editor-table select.owners-repo {
|
|
width: 150px;
|
|
}
|
|
|
|
.owners-path-editor-table input {
|
|
width: 400px;
|
|
}
|
|
|
|
.owners-path-editor-table div.error-display {
|
|
padding: 4px 12px 0;
|
|
}
|
|
|
|
.owners-path-editor-table div.validating {
|
|
color: {$greytext};
|
|
}
|
|
|
|
.owners-path-editor-table div.invalid {
|
|
color: #aa0000;
|
|
}
|
|
|
|
.owners-path-editor-table div.valid {
|
|
color: #00aa00;
|
|
font-weight: bold;
|
|
}
|