mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-07 05:11:05 +01:00
c0c5b9bb64
Summary: Some text editors support opening multiple files at once. I've used space as paths separator which may be compatible with some other editors (I didn't tried any other though). Note: This approach is incompatible with spaces in paths. I am fine with changing it to anything else to support such paths or more editors. Probably the cleanest solution (yet still incompatible with most editors) would be to use something like ##editor://open/?file=A&line=1&file=B&line=2## but it would require also changing the way how it's configured and I think it's not worth it. BTW, I've used a hacky bookmarklet for this feature before. Deleted or added paths may not exist in users filesystem but we don't know which so the button tries to open everything. Test Plan: Click Edit All. Delete Editor Link in settings, verify that the button is missing. View diff without revision, verify that the button is missing. Reviewers: epriestley Reviewed By: epriestley CC: aran, epriestley Differential Revision: https://secure.phabricator.com/D1741
51 lines
729 B
CSS
51 lines
729 B
CSS
/**
|
|
* @provides differential-table-of-contents-css
|
|
*/
|
|
|
|
.differential-toc-meta {
|
|
color: #666666;
|
|
padding-left: 1em;
|
|
}
|
|
|
|
.differential-toc-char,
|
|
.differential-toc-prop {
|
|
width: 1.25em;
|
|
text-align: center;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.differential-toc-ftype {
|
|
padding: 0 .5em;
|
|
text-align: center;
|
|
color: #666666;
|
|
}
|
|
|
|
.differential-toc-file {
|
|
color: #444444;
|
|
}
|
|
|
|
.differential-toc-edit-all {
|
|
float: right;
|
|
}
|
|
|
|
.diff-star-none {
|
|
color: #666666;
|
|
}
|
|
|
|
.diff-star-okay {
|
|
color: #ff9700;
|
|
}
|
|
|
|
/* TODO: 'warn' and 'fail' are both red, but we can't make 'warn' yellow since
|
|
'okay' is a "gold star". */
|
|
.diff-star-warn {
|
|
color: #aa0000;
|
|
}
|
|
|
|
.diff-star-fail {
|
|
color: #aa0000;
|
|
}
|
|
|
|
.diff-star-skip {
|
|
color: #ff00aa;
|
|
}
|