Change some designs in Tabview Youtube
Από την
/* ==UserStyle==
@name Tabview Youtube Design Customization
@version 0.1.0
@namespace github.com/cyfung1031
@license MIT
@description Change some designs in Tabview Youtube
@author CY Fung
@supportURL https://github.com/cyfung1031/Tabview-Youtube/
@preprocessor stylus
@var checkbox no-rounded-button "No Rounded Button" 0
@var checkbox no-tab-btn-text "No Tab Button Text" 0
==/UserStyle== */
@-moz-document url-prefix("https://www.youtube.com/watch?v=") {
if no-rounded-button {
html .yt-spec-button-shape-next--size-m,
html .yt-spec-button-shape-next--size-m.yt-spec-button-shape-next--segmented-start,
html .yt-spec-button-shape-next--size-m.yt-spec-button-shape-next--icon-button.yt-spec-button-shape-next--segmented-end {
border-radius:0;
}
}
if no-tab-btn-text {
.tab-btn[tyt-tab-content="#tab-info"] span,
.tab-btn[tyt-tab-content="#tab-videos"] span,
.tab-btn[tyt-tab-content="#tab-playlist"] span {
display: none;
}
}
}