Created
September 30, 2023 13:55
-
-
Save hatarist/88223f523b1da97ec536d92bda0e885e to your computer and use it in GitHub Desktop.
userstyle: yandex music (full-width, no bloat)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* моя волна */ | |
.rup__animation { display: none; } /* дебильная анимация моей волны */ | |
.rup { display: none; } /* хотя нет, вся "моя волна" дебильная */ | |
/* делаем поменьше отступы основной части интерфейса */ | |
.centerblock { | |
padding: 10px 30px 60px; | |
} | |
.d-header__title { | |
margin-top: 10px; | |
margin-bottom: 10px; | |
} | |
.d-header__title-text { | |
font-size: 30px; | |
} | |
/* full-width, детка! */ | |
.page-root { | |
min-width: 100%; | |
} | |
.centerblock-wrapper { | |
width: 70%; | |
} | |
.sidebar-cont { | |
/* убираем max-width у сайдбара, заставляя занять его остальную часть экрана */ | |
min-width: 60%; /* хз как тут получилось 60%, но выглядит норм*/ | |
} | |
/* нижняя панелька */ | |
.bar { | |
max-width: 100% !important; | |
} | |
.bar__content .progress_branding .progress__bar, | |
.bar__content .progress_branding .progress__bg, | |
.bar__content:hover .progress_branding .progress__bar, | |
.bar__content:hover .progress_branding .progress__bg { | |
/* делаем пошире прогрессбар/перематывалку трека, а то ебанешься тыркаться как слепой котенок */ | |
height: 20px; | |
line-height: 20px; | |
} | |
.progress__left, .progress__right { | |
/* какого хуя current/total track time отображаются только при hover'е? */ | |
display: initial; | |
} | |
.popup_page { | |
/* попап (например с очередью) */ | |
max-width: 100%; | |
opacity: 0.98; /* чтобы было видно, что это, блять, просто что-то поверх основного интерфейса и это что-то можно закрыть */ | |
} | |
.footer { | |
/* в футере единственная полезная штука - это переключалка языка. */ | |
/* наверное, не стоит его целиком скрывать, но кто ж меня остановит-то*/ | |
display: none; | |
} | |
/* да мне поебать, я взрослый мальчик/девочка/смешная третья опция */ | |
.d-explicit-mark { | |
display: none; /* убираем квадратик [E] возле названия трека */ | |
} | |
.footer__age-disclaimer, .footer__copyrights { | |
display: none; /* убираем копирайты и возрастное предупреждение в футере */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment