Two Rows in Subscriptions Feed on YouTube by pabli

Details
Authorpabli
LicenseMIT
Created
Updated
Categoryyoutube
Statistics
Learn how we calculate statistics in the FAQ.
Total views
Total installs
Weekly installs
Weekly updates
Description
See more videos in your subscriptions feed when you use List Mode on YouTube.com/feed/subscriptions
Check my other YouTube styles:
tags: youtube, you tube com, youtube.com www.youtube.com two rows, two columns, 2 rows, 2 columns, subbox, subscription, subs, follows, compact, list, grid, ?flow=2, flow 2, better view, more visible
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Two Rows in Subscriptions Feed on YouTube
@namespace github.com/pabli24
@version 1.0.1
@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 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%
}
#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
#title-container > #subscribe-button, #title-container > #menu {
display: block
position: relative
left: 100%
}
//vidiq VPH
.css-18nbkwi {
position: relative
}
}
}
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
}
}
}