Summary: Ref T13105. Ref T13047. This makes symbol indexes work with DocumentEngine in Files, and restores support in Diffusion. Test Plan: Command-clicked stuff, got taken to the symbol index with reasonable metadata in Diffusion, Differential and Files. Reviewers: mydeveloperday Reviewed By: mydeveloperday Maniphest Tasks: T13105, T13047 Differential Revision: https://secure.phabricator.com/D19307
32 lines
684 B
CSS
32 lines
684 B
CSS
/**
|
|
* @provides syntax-highlighting-css
|
|
* @requires syntax-default-css
|
|
*/
|
|
.remarkup-code .uu { /* Forbidden Unicode */
|
|
color: #aa0066;
|
|
}
|
|
|
|
.remarkup-code td > span {
|
|
display: inline;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.remarkup-code .rbw_r { color: red; }
|
|
.remarkup-code .rbw_o { color: orange; }
|
|
.remarkup-code .rbw_y { color: yellow; }
|
|
.remarkup-code .rbw_g { color: green; }
|
|
.remarkup-code .rbw_b { color: blue; }
|
|
.remarkup-code .rbw_i { color: indigo; }
|
|
.remarkup-code .rbw_v { color: violet; }
|
|
|
|
span.crossreference-item {
|
|
background: {$lightyellow};
|
|
border-bottom: 1px solid {$yellow};
|
|
cursor: help;
|
|
}
|
|
|
|
.remarkup-code .invisible {
|
|
color: #222222;
|
|
background: #dddddd;
|
|
}
|