Skip to content

Two Rows in Subscriptions Feed on YouTube by pabli

Screenshot of Two Rows in Subscriptions Feed on YouTube

Details

Authorpabli

LicenseMIT

Categoryyoutube

Created

Updated

Size2.1 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           Two Rows in Subscriptions Feed on YouTube
@namespace      github.com/pabli24
@version        1.0.2
@description    See more videos in your subscriptions feed when you use List Mode
@author         Pabli
@homepageURL    https://userstyles.world/style/4889/two-rows-in-subscriptions-feed-on-youtube
@supportURL     https://userstyles.world/style/4889/two-rows-in-subscriptions-feed-on-youtube
@license        MIT
@preprocessor   stylus
@var            checkbox rows "2 Rows"                1
@var            checkbox sho  "Hide Shorts"           1
@var            checkbox mar  "Small margin"          1
@var            checkbox lin  "Hide horizontal lines" 1
@var            number   wid  "Width (%)"             ['%', 90, 50, 100, 1]
==/UserStyle== */

@-moz-document url-prefix("https://www.youtube.com/feed/subscriptions") {

if rows {
@media (min-width: 1020px) {
	#primary #contents {
		display: flex
		flex-direction: row
		flex-wrap: wrap
	}
	#primary #contents > ytd-item-section-renderer {
		width: 50% !important

	}
	#description-text.ytd-video-renderer,
	#video-title.ytd-video-renderer {
		max-height: 100%
		-webkit-line-clamp: unset
		word-break: break-word
		overflow-wrap: break-word
	}
	//manage grid list buttons to the right
	ytd-item-section-renderer:first-child #title-container > {
		#subscribe-button, #menu {
			display: block
			position: relative
			left: 100%
		}
	}
	//shorts
	yt-horizontal-list-renderer {
		max-width: 99% !important;
		overflow: hidden !important
	}
	ytd-reel-shelf-renderer {
		overflow: hidden !important
	}
}
}
if sho {
	ytd-item-section-renderer:has([href*="/shorts/"]) {
		display: none
	}
}
ytd-two-column-browse-results-renderer.grid:not(.grid-disabled) {
	max-width: 100% !important
	width: wid !important
}
if mar {
	#contents.ytd-shelf-renderer,
	.grid-subheader.ytd-shelf-renderer {
		margin-top: 10px
	}
	ytd-expanded-shelf-contents-renderer {
		margin-bottom: 0
	}
}
if lin {
	ytd-item-section-renderer.style-scope.ytd-section-list-renderer {
		border-bottom: none !important
	}
}

}

Reviews

No reviews yet.