Remove color from "params" syntax class

HLJS emits a syntax class for function parameters which the PolyGerrit
syntax stylesheet would color blue. However, HLJS did not always apply
this class accurately, for example, in the C++ case described in the
linked issue.

Because the class was not very informative anyway, and the HLJS default
stylesheet does not style it either, this change removes it from the
PolyGerrit syntax styles.

Bug: Issue 4975
Change-Id: I26ed0b8f745ac6add994a5d1cfc8eb1303dac8cf
This commit is contained in:
Wyatt Allen
2017-02-16 14:43:50 -08:00
parent cf90509090
commit e9b9d8d101
2 changed files with 0 additions and 2 deletions

View File

@@ -64,7 +64,6 @@
'gr-diff gr-syntax gr-syntax-string': true,
'gr-diff gr-syntax gr-syntax-selector-id': true,
'gr-diff gr-syntax gr-syntax-title': true,
'gr-diff gr-syntax gr-syntax-params': true,
'gr-diff gr-syntax gr-syntax-comment': true,
'gr-diff gr-syntax gr-syntax-meta': true,
'gr-diff gr-syntax gr-syntax-meta-keyword': true,

View File

@@ -60,7 +60,6 @@ limitations under the License.
.gr-syntax-meta-keyword {
color: #219;
}
.gr-syntax-params,
.gr-syntax-type {
color: #00f;
}