From cfc92297eb57693b1220334d2077d31e4e104c84 Mon Sep 17 00:00:00 2001 From: Colin Rosen Date: Mon, 11 Dec 2023 10:31:09 +0000 Subject: [PATCH] Fix removal of VCS icon Use the 'role="presentation"' attribute on the element to select it in css rather than the generated classname, which is different per release. --- hub_patcher.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hub_patcher.py b/hub_patcher.py index e93282c..1777ace 100644 --- a/hub_patcher.py +++ b/hub_patcher.py @@ -12,7 +12,7 @@ .pl-header__columns-wrapper > :nth-child(2) {display: none !important;} /* version control column value */ -.hCtBAQ {display: none !important;} +.pl-item__row [role='presentation'] {display: none !important;} /* cloud services column value */ .pl-item__row :nth-child(4) {display: none !important;}