diff --git a/README.md b/README.md index e929784..d4b1506 100644 --- a/README.md +++ b/README.md @@ -82,10 +82,12 @@ I created a feature request for a way to disable organizations because I don't u I was promptly told to use css and my request was closed: https://github.com/go-gitea/gitea/issues/19391 -This theme can hide organizations using CSS, you can uncomment it at the bottom of the theme: +This theme can hide organizations related blocks/links using CSS, you can uncomment it at the bottom of the theme: ```css -#dashboard-repo-list > div > div:first-child { - display: none !important; -} +#dashboard-repo-list > div > div:first-child {display: none !important} +a[href*="organizations"] {display: none !important} +.dashboard > .secondary-nav {display: none !important} +.milestones > .secondary-nav {display: none !important} +.issues > .secondary-nav {display: none !important} ``` diff --git a/theme-dark-arc.css b/theme-dark-arc.css index b4aa063..71114eb 100644 --- a/theme-dark-arc.css +++ b/theme-dark-arc.css @@ -610,7 +610,9 @@ strong.attention-caution, svg.attention-caution { /* Uncomment to remove dashboard tabs */ /* -#dashboard-repo-list > div > div:first-child { - display: none !important; -} -*/ \ No newline at end of file +#dashboard-repo-list > div > div:first-child {display: none !important} +a[href*="organizations"] {display: none !important} +.dashboard > .secondary-nav {display: none !important} +.milestones > .secondary-nav {display: none !important} +.issues > .secondary-nav {display: none !important} +*/