Skip to content

Instantly share code, notes, and snippets.

@unitycoder
Created October 29, 2023 12:08
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unitycoder/dc012222230c26dec631b4004063fc7f to your computer and use it in GitHub Desktop.
Save unitycoder/dc012222230c26dec631b4004063fc7f to your computer and use it in GitHub Desktop.
unity hub 3.6.x custom css to hide version control and cloud dashboard colums
<style>
/* cloud services column header */
.pl-header__column.pl-header__column--cloudServices {display:none !important;}
/* version control column header */
.pl-header__columns-wrapper > :nth-child(2) {display: none !important;}
/* version control column value */
.hCtBAQ {display: none !important;}
/* cloud services column value */
.pl-item__row :nth-child(4) {display: none !important;}
</style>
@LorenzoCgt
Copy link

dont have access to modification on this file, unable to reproduce the fix ://

@unitycoder
Copy link
Author

need to run as an admin (7zip/notepad/vscode)

also latest info here:
https://github.com/unitycoder/UnityHubModding

@LorenzoCgt
Copy link

my bad hub was still open in background that was the issue

@LorenzoCgt
Copy link

LorenzoCgt commented Mar 8, 2024

btw how can we know other colums ids ? I would like to hide Modified column
found it, I post the code here for those who want to do the same
.pl-header__column.pl-header__column--modified {display:none !important;} .pl-item__row :nth-child(5) {display: none !important;}

@unitycoder
Copy link
Author

vscode is good for searching project wide, or can modify hub to add Inspector,
looks like that header is this:
data-testid="lastModified"
and items are class:
pl-item__column pl-item__column--last-modified

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment