tweaks to tumblr's UI and layout. meant to be used alongside xkit rewritten and palettes for tumblr.
[SNK] Tumblr by snake
![Screenshot of [SNK] Tumblr](https://userstyles.world/preview/10542/2.jpeg)
Details
Authorsnake
LicenseGPL-3.0-or-later
CategoryTumblr
Created
Updated
Code size2.3 kB
Code checksumab644147
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
removes several kinds of links (such as post+ and the store), and adjusts some UI elements.
meant to be used alongside xkit rewritten.
the color theme in the screenshot is an adjusted version of rosé pine which can be downloeded and imported into palettes for tumblr.
changelog
2.2
- added the option to hide communities, messages, and inbox
- fixed broken options
- removed deprecated features
Source code
/* ==UserStyle==
@name [snk] tumblr
@namespace snake (playmoar.neocities.org)
@version 2.2
@license GPL-3.0-or-later
@preprocessor stylus
@var checkbox borders "hide borders" 1
@var checkbox communities "hide communities" 0
@var checkbox messages "hide messages" 0
@var checkbox inbox "hide inbox" 0
@var checkbox tabs "hide dashboard tabs" 0
@var checkbox popup "center blog popups" 0
==/UserStyle== */
@-moz-document domain("www.tumblr.com") {
/* centered blog popups */
if popup {
.vM8CJ { display:none!important; }
.raBdW { max-width:600px; }
.pKQCB { max-width:600px; }
@media (min-width: 990px) {
.RkANE.r1Zq6 {
width:600px;
}
}
}
/* remove column borders */
if borders {
.FA5JM,
.gPQR5.FGfuE .lSyOz,
.gPQR5.FGfuE .lSyOz,
.p4DiZ {
border-color:transparent!important;
}
}
/* removes border + padding around notecount */
.vE6sH,
.rlv6m .ePsyd {
padding:0!important;
border:0!important;
background:transparent!important;
}
if communities {
[href*="/communities/browse"] {
display:none!important;
}
}
if messages {
[aria-label="Messages"] {
display:none!important;
}
}
if inbox {
[href*="/inbox"] {
display:none!important;
}
}
/* left sidebar */
[href*="/explore"] /* explore */
.visx-linepath, /* activity graph */
/* account v */
#account_subnav > li.IYrO9 > .tDT48 > .a132D > .jF6A2, span.KlOKT /* extra number counts on like / follower link */
[href*="/help"], /* help */
[href*="/post-plus"], /* post+ */
[href*="/blaze"], /* blaze */
/* settings v */
[href*="/settings/subscriptions"], /* post+ subscriptions */
/* --------- */
[aria-label="TumblrMart"], /* tumblr mart */
[href*="/domains"], /* get a domain */
[href*="/settings/purchases"], /* payments */
[href*="/settings/ad-free-browsing"], /* go ad-free */
/* RIGHT SIDEBAR ### */
.UAFPe._qHCt.m8mN_, /* footer */
/* DASHBOARD ### */
.HphhS, /* check these out header */
.kDCXR.q1ZAL, /* check these out carousel */
/* POSTS ### */
[aria-label="Blaze"] /* blaze button */ {
display:none!important;
}
/* hide dashboard tabs */
if tabs {
.X4W3M.Dk06o {
display:none!important;
}
}
}