Hides the right sidebar and centers the dashboard.
Minimal Tumblr by amkitakk
Details
Authoramkitakk
LicenseNo License
Categorytumblr
Created
Updated
Size2.7 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
16/08/2023 : fixed for the new UI
17/08/2021 : theme was broken by an update, this is now fixed
Without the sidebar, I've found that the dashboard loads much faster on my pc. This also hides the annoying cookie popup that keeps coming back every time I load Tumblr.
Source code
/* ==UserStyle==
@name Minimal Tumblr
@version 20241124.18.12
@namespace https://userstyles.world/user/amkitakk
@description Hides the right sidebar and centers the dashboard.
@author amkitakk
@license No License
==/UserStyle== */
@-moz-document domain("www.tumblr.com") {
/* ------ MAIN CODE ------ */
/*hide promoted*/
.g8sNN > .IGdYk {
display: none;
}
/*hide recommended*/
._ekIx,
.ODcQ6._g0_4 {
display: none;
}
/*hide explore button*/
div.KTRcB:nth-of-type(3),
li.g8SYn.IYrO9:nth-of-type(3) > .tDT48 {
display: none;
}
/*hide adblock banner*/
.I6Lwl {
display: none;
}
/*hide "watch this"*/
.HphhS,
.aJgDC {
display: none;
}
/*hide "similar content"*/
.LaNhI,
.pqNoe {
display: none
}
/*hide "ask x" banner*/
.tDrb8 {
display: none;
}
/*hide right sidebar on blogs opened in the dashboard*/
.vM8CJ {
display: none;
}
.pKQCB,
.kXP4L.DCCfo {
width: max-content;
margin: auto;
}
/* hide "successfully posted/queued" popup */
.ekBJX,
.KcWiA,
.pDOYX.EvhBA {
display: none !important;
}
/* hide cookie banner */
.components-modal__screen-overlay {
display: none;
}
/* hide tumblr shop 'new' label */
.O42NY {
display: none;
}
/* hide "your biggest fans" in notifications page */
.eoHPO {
display: none;
}
/* hide "live" icon */
.tDT48[href="/live"] {
display: none;
}
/* hide "get a domain" icon */
.tDT48[href="/domains"] {
display: none;
}
/* hide "get ad-free" icon */
.tDT48[href="/settings/ad-free-browsing"] {
display: none;
}
/* hide number of new posts on "home" --- broken, hides even activity numbers */
/*.XnKJk.D0OOd.SmqzX.jDcIV.jpu7k {
display: none;
}*/
/* hide tumblr premium frame on top right of dashboard */
div.FZkjV > div {
display: none;
}
/* hide"become premium" button on bottom left */
.gLEjz {
display: none;
}
/* hide community recommendations */
#base-container > div.D5eCV:nth-child(2) > div.c9lq9 > div._3xgk.Ril26:last-child > div.gPQR5.FGfuE.iTX1z > div.lSyOz:first-child > main.O4V_R > div.Evcyl:last-child > div > div:nth-child(9) {
display: none;
}
}
@-moz-document url("https://www.tumblr.com/dashboard") {
/* ------ DASHBOARD ONLY ------ */
/* code separated to avoid breaking important settings */
/*hide ad on top of dashboard*/
.moatContainer,
.hM19_,
.Cewkz,
.p4DiZ {
display: none;
}
/* hide right sidebar recommendations & radar */
div.FZkjV {
display: none;
}
/* hide "tune in" */
.erLM8 {
display: none;
}
/* hide tumblr live */
.wQ2Ma.EiXnY > div,
.RnXXg.ps05L {
display: none;
}
/* hide new dashboard tabs ('following', 'for you', 'manage') */
.uM3pd,
.p4DiZ.FMB1x {
display: none;
}
/* adds some space above new post options so they're not flush at the top */
.wttFd.g77C_ {
margin-top: 16px;
}
}