[directorytree] Fix invalid file_types.css removable CSS rules
CL:1449472 added some invalid rules for removable volumes||partitions see for example @line 474 which begins ... tree .tree-item > .tree-item > .tree-row > [volume-type-icon='removable'] { ... } But .tree-item > .tree-item matches nothing in FilesApp: a .tree-item is never a direct child of its parent .tree-item. So remove this rule and now try to understand @line 466 of CL:1449472 tree .tree-item[selected] > .tree-row > .tree-row[selected] [volume-type-icon='removable'][volume-sub... Which might be a transcription error, and then the rule runs onto the next line .tree-row > .tree-row[selected], but once again .tree-row > .tree-row never matches anything in FilesApp. Remove and replace this rule with an approximation of CL:1449472 intent. Bug: 992819 Change-Id: I552890e021c02d1dd304e51a49b772eaf7f13546 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1921595Reviewed-by:Luciano Pacheco <lucmult@chromium.org> Commit-Queue: Noel Gordon <noel@chromium.org> Cr-Commit-Position: refs/heads/master@{#716089}
Showing
Please register or sign in to comment