Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: chrome/skin/filters.css

Issue 29329521: Issue 3222 - Expose filter type as a string property (Closed)
Patch Set: Created Oct. 29, 2015, 7:41 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/skin/filters.css
===================================================================
--- a/chrome/skin/filters.css
+++ b/chrome/skin/filters.css
@@ -148,37 +148,39 @@ tree
{
min-width: 30px;
}
/*
* Force left-to-right for filter text but not comments
*/
treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-invalid),
+treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-blocking),
treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-whitelist),
-treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-filterlist),
treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-elemhide),
-treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-elemhideexception)
+treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-elemhideexception),
+treechildren:-moz-locale-dir(rtl)::-moz-tree-cell(col-filter, type-cssproperty)
{
direction: ltr;
text-align: end;
}
treechildren::-moz-tree-cell-text(col-filter, dummy-true)
{
font-style: italic;
}
treechildren::-moz-tree-cell-text(col-filter, type-whitelist, selected-false),
treechildren::-moz-tree-cell-text(col-filter, type-elemhideexception, selected-false)
{
color: #008000;
}
-treechildren::-moz-tree-cell-text(col-filter, type-elemhide, selected-false)
+treechildren::-moz-tree-cell-text(col-filter, type-elemhide, selected-false),
+treechildren::-moz-tree-cell-text(col-filter, type-cssproperty, selected-false)
{
color: #000080;
}
treechildren::-moz-tree-cell-text(col-slow)
{
font-size: 0px;
}

Powered by Google App Engine
This is Rietveld