BetterYTM.css 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  1. /* #region general */
  2. :root {
  3. --bytm-locale-color: #5ea2ec;
  4. --bytm-advanced-mode-color: #ceb663;
  5. --bytm-experimental-col: #cc83e5;
  6. --bytm-warning-col: #e07664;
  7. --bytm-reload-col: #77e064;
  8. }
  9. /* TODO: after cfg menu migration, leave only dialog styles here */
  10. #bytm-cfg-dialog-bg,
  11. #bytm-cfg-menu-bg
  12. {
  13. --bytm-dialog-width-max: 1150px;
  14. --bytm-menu-width-max: 1150px;
  15. --bytm-dialog-height-max: 800px;
  16. --bytm-menu-height-max: 800px;
  17. }
  18. /* Have to do it like this since various extensions use a pretty damn high z-index and since I haven't implemented top layer for dialogs yet (https://developer.mozilla.org/en-US/docs/Glossary/Top_layer) */
  19. .bytm-dom-yt .bytm-dialog-bg,
  20. .bytm-dom-yt .bytm-menu-bg {
  21. z-index: 10042;
  22. }
  23. .bytm-dom-yt .bytm-dialog,
  24. .bytm-dom-yt .bytm-menu {
  25. z-index: 10069;
  26. }
  27. .bytm-dialog-body p {
  28. overflow-wrap: break-word;
  29. }
  30. .bytm-dialog-body details summary {
  31. cursor: pointer;
  32. font-style: italic;
  33. }
  34. .bytm-secondary-label {
  35. padding-left: 12px;
  36. font-size: 1.3rem;
  37. }
  38. /* #region version notification */
  39. #bytm-version-notif-dialog-btns {
  40. display: flex;
  41. flex-direction: row;
  42. align-items: center;
  43. justify-content: space-between;
  44. margin-top: 20px;
  45. }
  46. #bytm-disable-update-check-wrapper {
  47. display: flex;
  48. align-items: center;
  49. font-size: 1.5rem;
  50. margin-top: 35px;
  51. }
  52. #bytm-disable-update-check-wrapper label {
  53. padding-left: 12px;
  54. }
  55. #bytm-version-notif-changelog-cont {
  56. max-height: calc(max(var(--calc-max-height) - 280px, 0px));
  57. overflow-y: auto;
  58. margin: 10px 0px;
  59. }
  60. #bytm-version-notif-changelog-details {
  61. margin-top: 15px;
  62. }
  63. .bytm-disable-update-check-toggle-label-wrapper {
  64. display: flex;
  65. flex-direction: column;
  66. justify-content: flex-start;
  67. }
  68. /* #region cfg menu */
  69. .bytm-ftconf-adv-copy-btn {
  70. margin: 0px 10px;
  71. }
  72. .bytm-adorn-icon {
  73. display: inline-flex;
  74. align-items: center;
  75. cursor: help;
  76. }
  77. /* #region cfg menu adornments */
  78. .bytm-ftitem-adornment svg path {
  79. fill: var(--bytm-locale-color, #fff) !important;
  80. }
  81. .bytm-advanced-mode-icon svg path {
  82. fill: var(--bytm-advanced-mode-color, #fff) !important;
  83. }
  84. .bytm-experimental-icon svg path {
  85. fill: var(--bytm-experimental-col, #fff) !important;
  86. }
  87. .bytm-warning-icon svg {
  88. width: 24px;
  89. height: 24px;
  90. }
  91. .bytm-warning-icon svg path {
  92. fill: var(--bytm-warning-col, #fff) !important;
  93. }
  94. .bytm-reload-icon svg path {
  95. fill: var(--bytm-reload-col, #fff) !important;
  96. }
  97. /* #region welcome dialog */
  98. #bytm-welcome-menu-title-wrapper {
  99. display: flex;
  100. flex-direction: row;
  101. align-items: center;
  102. }
  103. #bytm-welcome-menu-title-logo {
  104. width: 32px;
  105. height: 32px;
  106. margin-right: 20px;
  107. }
  108. #bytm-welcome-menu-content-wrapper {
  109. overflow-y: auto;
  110. }
  111. #bytm-welcome-menu-locale-cont {
  112. display: flex;
  113. flex-direction: column;
  114. align-items: center;
  115. justify-content: flex-start;
  116. }
  117. #bytm-welcome-menu-locale-img {
  118. width: 80px;
  119. height: 80px;
  120. margin-bottom: 10px;
  121. }
  122. #bytm-welcome-menu-text-cont {
  123. margin-top: 16px;
  124. }
  125. #bytm-welcome-menu-text {
  126. font-size: 1.6rem;
  127. line-height: 20px;
  128. }
  129. #bytm-welcome-menu-locale-select {
  130. font-size: 1.6rem;
  131. }
  132. #bytm-welcome-menu-footer-cont {
  133. display: flex;
  134. justify-content: space-between;
  135. border-radius: 0px 0px var(--bytm-menu-border-radius) var(--bytm-menu-border-radius);
  136. }
  137. #bytm-auto-like-channels-dialog-body {
  138. padding-left: 0;
  139. padding-right: 0;
  140. }
  141. .bytm-dialog-bg {
  142. --bytm-dialog-bg: #333333;
  143. --bytm-dialog-bg-highlight: #252525;
  144. --bytm-scroll-indicator-bg: rgba(10, 10, 10, 0.7);
  145. --bytm-dialog-separator-color: #797979;
  146. --bytm-dialog-border-radius: 10px;
  147. }
  148. .bytm-dialog-bg {
  149. display: block;
  150. position: fixed;
  151. width: 100%;
  152. height: 100%;
  153. top: 0;
  154. left: 0;
  155. z-index: 5;
  156. background-color: rgba(0, 0, 0, 0.6);
  157. }
  158. .bytm-dialog {
  159. --calc-max-height: calc(min(100vh - 40px, var(--bytm-dialog-height-max)));
  160. position: absolute;
  161. display: flex;
  162. flex-direction: column;
  163. width: calc(min(100% - 60px, var(--bytm-dialog-width-max)));
  164. border-radius: var(--bytm-dialog-border-radius);
  165. height: auto;
  166. max-height: var(--calc-max-height);
  167. left: 50%;
  168. top: 50%;
  169. transform: translate(-50%, -50%);
  170. z-index: 6;
  171. color: #fff;
  172. background-color: var(--bytm-dialog-bg);
  173. }
  174. .bytm-dialog-body {
  175. font-size: 1.5rem;
  176. padding: 20px;
  177. }
  178. .bytm-dialog-body.small {
  179. padding: 15px;
  180. }
  181. #bytm-dialog-opts {
  182. display: flex;
  183. flex-direction: column;
  184. position: relative;
  185. padding: 30px 0px;
  186. overflow-y: auto;
  187. }
  188. .bytm-dialog-header {
  189. display: flex;
  190. justify-content: space-between;
  191. align-items: center;
  192. margin-bottom: 6px;
  193. padding: 15px 20px 15px 20px;
  194. background-color: var(--bytm-dialog-bg);
  195. border: 2px solid var(--bytm-dialog-separator-color);
  196. border-style: none none solid none !important;
  197. border-radius: var(--bytm-dialog-border-radius) var(--bytm-dialog-border-radius) 0px 0px;
  198. }
  199. .bytm-dialog-header.small {
  200. padding: 10px 15px;
  201. border-style: none none solid none !important;
  202. }
  203. .bytm-dialog-header-pad {
  204. content: " ";
  205. min-height: 32px;
  206. }
  207. .bytm-dialog-header-pad.small {
  208. min-height: 24px;
  209. }
  210. .bytm-dialog-titlecont {
  211. display: flex;
  212. align-items: center;
  213. }
  214. .bytm-dialog-titlecont-no-title {
  215. display: flex;
  216. justify-content: flex-end;
  217. align-items: center;
  218. }
  219. .bytm-dialog-title {
  220. position: relative;
  221. display: inline-block;
  222. font-size: 22px;
  223. }
  224. #bytm-dialog-version {
  225. position: absolute;
  226. width: 100%;
  227. bottom: -10px;
  228. left: 0;
  229. font-size: 10px;
  230. font-weight: normal;
  231. z-index: 7;
  232. }
  233. #bytm-dialog-version .bytm-link {
  234. color: #c6d2db !important;
  235. text-decoration: none !important;
  236. cursor: pointer;
  237. }
  238. #bytm-dialog-version .bytm-link:hover {
  239. color: #c6d2db !important;
  240. text-decoration: underline !important;
  241. }
  242. #bytm-dialog-linkscont {
  243. display: flex;
  244. align-items: center;
  245. margin-left: 32px;
  246. }
  247. .bytm-dialog-link {
  248. display: inline-flex;
  249. align-items: center;
  250. cursor: pointer;
  251. }
  252. .bytm-dialog-link:not(:last-of-type) {
  253. margin-right: 10px;
  254. }
  255. .bytm-dialog-link .bytm-dialog-img {
  256. position: relative;
  257. border-radius: 50%;
  258. bottom: 0px;
  259. transition: bottom 0.15s ease-out;
  260. }
  261. .bytm-dialog-link:hover .bytm-dialog-img {
  262. bottom: 5px;
  263. }
  264. .bytm-dialog-close {
  265. cursor: pointer;
  266. }
  267. .bytm-dialog-header-img,
  268. .bytm-dialog-close
  269. {
  270. width: 32px;
  271. height: 32px;
  272. }
  273. .bytm-dialog-header-img.small,
  274. .bytm-dialog-close.small
  275. {
  276. width: 24px;
  277. height: 24px;
  278. }
  279. .bytm-dialog-footer {
  280. font-size: 17px;
  281. text-decoration: underline;
  282. }
  283. .bytm-dialog-footer.hidden {
  284. display: none;
  285. }
  286. .bytm-dialog-footer-cont {
  287. margin-top: 6px;
  288. padding: 15px 20px;
  289. background: var(--bytm-dialog-bg);
  290. background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bytm-dialog-bg) 30%, var(--bytm-dialog-bg) 100%);
  291. border: 2px solid var(--bytm-dialog-separator-color);
  292. border-style: solid none none none !important;
  293. border-radius: 0px 0px var(--bytm-dialog-border-radius) var(--bytm-dialog-border-radius);
  294. }
  295. .bytm-dialog-footer-buttons-cont button:not(:last-of-type) {
  296. margin-right: 15px;
  297. }
  298. .bytm-dialog-footer-right {
  299. display: flex;
  300. flex-direction: row-reverse;
  301. align-items: center;
  302. margin-top: 15px;
  303. }
  304. #bytm-dialog-footer-left-buttons-cont button:not(:last-of-type) {
  305. margin-right: 15px;
  306. }
  307. #bytm-dialog-scroll-indicator {
  308. --bytm-scroll-indicator-padding: 5px;
  309. position: sticky;
  310. bottom: -15px;
  311. left: 50%;
  312. margin-top: calc(-32px - var(--bytm-scroll-indicator-padding) * 2);
  313. padding: var(--bytm-scroll-indicator-padding);
  314. transform: translateX(-50%);
  315. width: 32px;
  316. height: 32px;
  317. z-index: 7;
  318. background-color: var(--bytm-scroll-indicator-bg);
  319. border-radius: 50%;
  320. cursor: pointer;
  321. }
  322. .bytm-hidden {
  323. visibility: hidden !important;
  324. }
  325. .bytm-ftconf-category-header {
  326. font-size: 20px;
  327. margin-top: 32px;
  328. margin-bottom: 8px;
  329. padding: 0px 20px;
  330. }
  331. .bytm-ftconf-category-header:first-of-type {
  332. margin-top: 0;
  333. }
  334. .bytm-dialog .bytm-ftitem {
  335. display: flex;
  336. flex-direction: row;
  337. justify-content: space-between;
  338. align-items: center;
  339. font-size: 1.4em;
  340. padding: 8px 20px;
  341. transition: background-color 0.15s ease-out;
  342. }
  343. .bytm-dialog .bytm-ftitem:hover {
  344. background-color: var(--bytm-dialog-bg-highlight);
  345. }
  346. .bytm-ftitem-leftside {
  347. display: flex;
  348. align-items: center;
  349. min-height: 24px;
  350. }
  351. .bytm-ftconf-ctrl {
  352. display: inline-flex;
  353. align-items: center;
  354. white-space: nowrap;
  355. margin-left: 10px;
  356. }
  357. .bytm-ftconf-label {
  358. user-select: none;
  359. }
  360. .bytm-slider-label {
  361. margin-right: 10px;
  362. }
  363. .bytm-ftconf-input.bytm-hotkey-input {
  364. cursor: pointer;
  365. min-width: 80px;
  366. }
  367. .bytm-ftconf-input[type=number] {
  368. width: 75px;
  369. }
  370. .bytm-ftconf-input[type=range] {
  371. width: 200px;
  372. }
  373. .bytm-ftconf-input[type=text] {
  374. width: 200px;
  375. }
  376. .bytm-ftconf-input[type=checkbox] {
  377. margin-left: 5px;
  378. }
  379. select.bytm-ftconf-input {
  380. min-width: 180px;
  381. cursor: revert;
  382. }
  383. #bytm-export-dialog-text, #bytm-import-dialog-text {
  384. font-size: 1.6em;
  385. margin-bottom: 15px;
  386. }
  387. .bytm-dialog-footer-copied {
  388. font-size: 1.6em;
  389. margin-right: 15px;
  390. }
  391. #bytm-changelog-dialog-body {
  392. overflow-y: auto;
  393. }
  394. #bytm-export-dialog-textarea, #bytm-import-dialog-textarea {
  395. width: 100%;
  396. height: 150px;
  397. resize: none;
  398. }
  399. .bytm-markdown-container {
  400. display: flex;
  401. flex-direction: column;
  402. overflow-y: auto;
  403. font-size: 1.4rem;
  404. line-height: 20px;
  405. }
  406. /* Markdown stuff */
  407. .bytm-markdown-container kbd, .bytm-kbd {
  408. --bytm-kbd-easing: cubic-bezier(0.31, 0.58, 0.24, 1.15);
  409. display: inline-block;
  410. vertical-align: bottom;
  411. padding: 4px;
  412. padding-top: 2px;
  413. font-size: 0.95em;
  414. line-height: 11px;
  415. background-color: #222;
  416. border: 1px solid #777;
  417. border-radius: 5px;
  418. box-shadow: inset 0 -2px 0 #515559;
  419. transition: padding 0.1s var(--bytm-kbd-easing), margin-top 0.1s var(--bytm-kbd-easing), box-shadow 0.1s var(--bytm-kbd-easing);
  420. }
  421. .bytm-markdown-container kbd:active, .bytm-kbd:active {
  422. padding-bottom: 2px;
  423. margin-top: 2px;
  424. box-shadow: inset 0 0 0 initial;
  425. }
  426. .bytm-markdown-container kbd::selection, .bytm-kbd::selection {
  427. background: rgba(0, 0, 0, 0);
  428. }
  429. .bytm-markdown-container code {
  430. background-color: #222;
  431. border-radius: 3px;
  432. padding: 1px 5px;
  433. font-family: monospace;
  434. }
  435. .bytm-markdown-container h2 {
  436. margin-bottom: 5px;
  437. }
  438. .bytm-markdown-container h2:not(:first-of-type) {
  439. margin-top: 30px;
  440. }
  441. .bytm-markdown-container ul li::before {
  442. content: "• ";
  443. font-weight: bolder;
  444. }
  445. .bytm-markdown-container ul li > ul li::before {
  446. white-space: pre-wrap;
  447. content: " • ";
  448. font-weight: bolder;
  449. }
  450. #bytm-feat-help-dialog-desc, #bytm-feat-help-dialog-text {
  451. overflow-wrap: break-word;
  452. white-space: pre-wrap;
  453. font-size: 1.5em;
  454. }
  455. #bytm-feat-help-dialog-desc {
  456. font-size: 1.65em;
  457. padding-bottom: 5px;
  458. }
  459. .bytm-ftitem-help-btn {
  460. width: 24px !important;
  461. height: 24px !important;
  462. }
  463. .bytm-ftitem-help-btn svg {
  464. width: 18px !important;
  465. height: 18px !important;
  466. }
  467. .bytm-ftitem-help-btn svg > path {
  468. fill: #b3bec7 !important;
  469. }
  470. hr {
  471. display: block;
  472. margin: 8px 0px 12px 0px;
  473. border: revert;
  474. }
  475. .bytm-ftitem-adornment {
  476. display: inline-flex;
  477. justify-content: flex-start;
  478. align-items: center;
  479. margin-right: 6px;
  480. }
  481. /* some variables are not defined on purpose to allow plugin authors to more easily provide overrides */
  482. /* use `body` prefix for more specificity: */
  483. body .bytm-ripple {
  484. position: relative;
  485. overflow: hidden;
  486. width: var(--bytm-ripple-width, auto);
  487. height: var(--bytm-ripple-height, auto);
  488. }
  489. body .bytm-ripple.faster {
  490. --bytm-ripple-anim-duration: 0.15s;
  491. }
  492. body .bytm-ripple.fast {
  493. --bytm-ripple-anim-duration: 0.35s;
  494. }
  495. body .bytm-ripple.slow {
  496. --bytm-ripple-anim-duration: 0.75s;
  497. }
  498. body .bytm-ripple.slower {
  499. --bytm-ripple-anim-duration: 1s;
  500. }
  501. .bytm-ripple-area {
  502. --bytm-ripple-min-size: 100px;
  503. position: absolute;
  504. background: var(--bytm-ripple-color, rgba(255, 255, 255, 0.275));
  505. transform: translate(-50%, -50%);
  506. pointer-events: none;
  507. border-radius: 50%;
  508. animation: bytm-scale-ripple var(--bytm-ripple-anim-duration, 0.55s) cubic-bezier(0.375, 0.330, 0.225, 0.930);
  509. }
  510. @keyframes bytm-scale-ripple {
  511. 0% {
  512. width: 0;
  513. height: 0;
  514. opacity: 1;
  515. }
  516. 100% {
  517. /* Variable is added to .bytm-ripple by JS at runtime since there's no better way of getting the parent's width inside of here */
  518. width: calc(max(var(--bytm-ripple-cont-width, var(--bytm-ripple-min-size)) * 2, var(--bytm-ripple-min-size)));
  519. height: calc(max(var(--bytm-ripple-cont-width, var(--bytm-ripple-min-size)) * 2, var(--bytm-ripple-min-size)));
  520. opacity: 0;
  521. }
  522. }
  523. .bytm-hotkey-wrapper {
  524. display: flex;
  525. flex-direction: row;
  526. align-items: center;
  527. justify-content: flex-end;
  528. }
  529. .bytm-hotkey-reset {
  530. font-size: 0.9em;
  531. margin-right: 10px;
  532. }
  533. .bytm-hotkey-info {
  534. font-size: 0.9em;
  535. white-space: nowrap;
  536. }
  537. :root {
  538. --bytm-toast-bg-color: #323232;
  539. --bytm-toast-text-color: #fff;
  540. --bytm-toast-offset-ver: 80px;
  541. --bytm-toast-offset-hor: 25px;
  542. --bytm-toast-transition-time: 0.5s;
  543. --bytm-toast-transform-distance: 175px;
  544. }
  545. #bytm-toast {
  546. position: fixed;
  547. z-index: 1042069;
  548. opacity: 0.000001;
  549. pointer-events: none;
  550. padding: 10px 16px;
  551. border-radius: 3px;
  552. font-size: 1.5rem;
  553. background-color: var(--bytm-toast-bg-color);
  554. color: var(--bytm-toast-text-color);
  555. transition: opacity var(--bytm-toast-transition-time) ease, transform var(--bytm-toast-transition-time) ease;
  556. }
  557. #bytm-toast.visible {
  558. pointer-events: auto;
  559. opacity: 1;
  560. }
  561. #bytm-toast.pos-tl {
  562. top: var(--bytm-toast-offset-ver);
  563. left: var(--bytm-toast-offset-hor);
  564. transform: translate(0, calc(var(--bytm-toast-transform-distance) * -1));
  565. }
  566. #bytm-toast.pos-tr {
  567. top: var(--bytm-toast-offset-ver);
  568. right: var(--bytm-toast-offset-hor);
  569. transform: translate(0, calc(var(--bytm-toast-transform-distance) * -1));
  570. }
  571. #bytm-toast.pos-br {
  572. bottom: var(--bytm-toast-offset-ver);
  573. right: var(--bytm-toast-offset-hor);
  574. transform: translate(0, var(--bytm-toast-transform-distance));
  575. }
  576. #bytm-toast.pos-bl {
  577. bottom: var(--bytm-toast-offset-ver);
  578. left: var(--bytm-toast-offset-hor);
  579. transform: translate(0, var(--bytm-toast-transform-distance));
  580. }
  581. #bytm-toast.visible.pos-tl,
  582. #bytm-toast.visible.pos-tr,
  583. #bytm-toast.visible.pos-br,
  584. #bytm-toast.visible.pos-bl
  585. {
  586. transform: translate(0, 0);
  587. }
  588. .bytm-toast-flex-wrapper {
  589. display: flex;
  590. flex-direction: row;
  591. align-items: center;
  592. gap: 10px;
  593. }
  594. .bytm-toast-icon.img {
  595. width: 24px;
  596. height: 24px;
  597. }
  598. .bytm-toggle-input-wrapper {
  599. --toggle-height: 20px;
  600. --toggle-width: 40px;
  601. --toggle-knob-offset: 4px;
  602. --toggle-color-on: #3683d4;
  603. --toggle-color-off: #666;
  604. --toggle-knob-color: #f5f5f5;
  605. display: flex;
  606. align-items: center;
  607. }
  608. .bytm-toggle-input-wrapper .bytm-toggle-input-label {
  609. cursor: pointer;
  610. font-size: 1.5rem;
  611. padding: 3px 12px;
  612. }
  613. /* sauce: https://danklammer.com/articles/simple-css-toggle-switch/ */
  614. .bytm-toggle-input {
  615. display: flex;
  616. align-items: center;
  617. }
  618. .bytm-toggle-input input {
  619. appearance: none;
  620. display: inline-block;
  621. width: var(--toggle-width);
  622. height: var(--toggle-height);
  623. position: relative;
  624. border-radius: 50px;
  625. overflow: hidden;
  626. outline: none;
  627. border: none;
  628. margin: 0;
  629. padding: var(--toggle-knob-offset);
  630. cursor: pointer;
  631. background-color: var(--toggle-color-off);
  632. transition: justify-content 0.2s ease, background-color 0.2s ease;
  633. }
  634. .bytm-toggle-input input[data-toggled="true"] {
  635. background-color: var(--toggle-color-on);
  636. }
  637. .bytm-toggle-input input .bytm-toggle-input-knob {
  638. --toggle-knob-calc-width: calc(var(--toggle-height) - (var(--toggle-knob-offset) * 2));
  639. --toggle-knob-calc-height: calc(var(--toggle-height) - (var(--toggle-knob-offset) * 2));
  640. width: var(--toggle-knob-calc-width);
  641. height: var(--toggle-knob-calc-height);
  642. background-color: var(--toggle-knob-color);
  643. border-radius: 50%;
  644. position: absolute;
  645. top: 50%;
  646. transform: translateY(-50%);
  647. left: var(--toggle-knob-offset);
  648. transition: left 0.2s ease;
  649. }
  650. .bytm-toggle-input input[data-toggled="true"] .bytm-toggle-input-knob {
  651. left: calc(var(--toggle-width) - var(--toggle-knob-offset) - var(--toggle-knob-calc-width));
  652. }
  653. .bytm-auto-like-channels-footer-wrapper {
  654. display: flex;
  655. justify-content: space-between;
  656. }
  657. :root {
  658. --bytm-menu-bg-highlight: #252525;
  659. }
  660. .bytm-menu-bg {
  661. --bytm-menu-bg: #333333;
  662. --bytm-scroll-indicator-bg: rgba(10, 10, 10, 0.7);
  663. --bytm-menu-separator-color: #797979;
  664. --bytm-menu-border-radius: 10px;
  665. }
  666. .bytm-menu-bg {
  667. display: block;
  668. position: fixed;
  669. width: 100%;
  670. height: 100%;
  671. top: 0;
  672. left: 0;
  673. z-index: 5;
  674. background-color: rgba(0, 0, 0, 0.6);
  675. }
  676. .bytm-menu {
  677. position: fixed;
  678. display: flex;
  679. flex-direction: column;
  680. width: calc(min(100% - 60px, var(--bytm-menu-width-max)));
  681. border-radius: var(--bytm-menu-border-radius);
  682. height: auto;
  683. max-height: calc(min(100% - 40px, var(--bytm-menu-height-max)));
  684. left: 50%;
  685. top: 50%;
  686. transform: translate(-50%, -50%);
  687. z-index: 6;
  688. color: #fff;
  689. background-color: var(--bytm-menu-bg);
  690. }
  691. .bytm-menu.top-aligned {
  692. top: 0;
  693. transform: translate(-50%, 40px);
  694. }
  695. .bytm-menu-body {
  696. padding: 20px;
  697. }
  698. #bytm-menu-opts {
  699. display: flex;
  700. flex-direction: column;
  701. position: relative;
  702. padding: 20px 0px;
  703. overflow-y: auto;
  704. }
  705. .bytm-menu-header {
  706. display: flex;
  707. justify-content: space-between;
  708. align-items: center;
  709. margin-bottom: 6px;
  710. padding: 15px 20px 15px 20px;
  711. background-color: var(--bytm-menu-bg);
  712. border: 2px solid var(--bytm-menu-separator-color);
  713. border-style: none none solid none !important;
  714. border-radius: var(--bytm-menu-border-radius) var(--bytm-menu-border-radius) 0px 0px;
  715. }
  716. .bytm-menu-header.small {
  717. padding: 10px 15px;
  718. border-style: none none solid none !important;
  719. }
  720. .bytm-menu-titlecont {
  721. position: relative;
  722. display: flex;
  723. align-items: center;
  724. }
  725. .bytm-menu-titlecont-no-title {
  726. display: flex;
  727. justify-content: flex-end;
  728. align-items: center;
  729. }
  730. .bytm-menu-title {
  731. position: relative;
  732. display: inline-block;
  733. font-size: 22px;
  734. }
  735. #bytm-cfg-menu-bg .bytm-menu-title {
  736. transform: translate(0px, -6px);
  737. }
  738. #bytm-cfg-menu {
  739. --bytm-menu-subtitle-color: #c6d2db;
  740. }
  741. #bytm-menu-subtitle-cont {
  742. width: 100%;
  743. display: flex;
  744. gap: 6px;
  745. flex-direction: row;
  746. justify-content: space-between;
  747. align-items: end;
  748. position: absolute;
  749. bottom: -12px;
  750. left: 0;
  751. font-size: 10px;
  752. font-weight: normal;
  753. z-index: 7;
  754. }
  755. #bytm-menu-subtitle-cont, #bytm-menu-version-anchor {
  756. color: var(--bytm-menu-subtitle-color) !important;
  757. }
  758. #bytm-menu-subtitle-cont, #bytm-menu-mode-display {
  759. overflow: hidden;
  760. text-overflow: ellipsis;
  761. white-space: nowrap;
  762. }
  763. #bytm-menu-version-anchor {
  764. overflow: hidden;
  765. text-wrap: nowrap;
  766. text-overflow: ellipsis;
  767. }
  768. #bytm-menu-linkscont {
  769. display: flex;
  770. align-items: center;
  771. margin-left: 32px;
  772. }
  773. .bytm-menu-link {
  774. position: relative;
  775. max-height: 32px;
  776. max-width: 32px;
  777. display: inline-flex;
  778. flex-direction: column;
  779. align-items: center;
  780. cursor: pointer;
  781. }
  782. .bytm-menu-link:not(:last-of-type) {
  783. margin-right: 10px;
  784. }
  785. .bytm-menu-link .bytm-menu-img {
  786. width: 32px;
  787. height: 32px;
  788. border-radius: 50%;
  789. padding: 0px;
  790. transform: translateY(0px);
  791. transition: transform 0.15s ease-out, padding 0.15s ease-out;
  792. }
  793. .bytm-menu-link:hover .bytm-menu-img {
  794. padding: 7px;
  795. transform: translateY(-14px);
  796. }
  797. .bytm-menu-link .extended-link {
  798. visibility: hidden;
  799. position: absolute;
  800. top: 14px;
  801. padding-top: 13px;
  802. padding-bottom: 2px;
  803. opacity: 0;
  804. text-decoration: none;
  805. color: var(--bytm-menu-subtitle-color) !important;
  806. white-space: pre;
  807. font-size: 1.1rem;
  808. transition: visibility 0.15s ease-out, opacity 0.15s ease-out;
  809. }
  810. .bytm-menu-link:hover .extended-link {
  811. visibility: visible;
  812. opacity: 1;
  813. }
  814. .bytm-menu-close {
  815. width: 32px;
  816. height: 32px;
  817. cursor: pointer;
  818. }
  819. .bytm-menu-close.small {
  820. width: 24px;
  821. height: 24px;
  822. }
  823. .bytm-menu-footer {
  824. font-size: 17px;
  825. text-decoration: underline;
  826. }
  827. .bytm-menu-footer.hidden {
  828. display: none;
  829. }
  830. .bytm-menu-footer-cont {
  831. display: flex;
  832. flex-direction: row;
  833. justify-content: space-between;
  834. margin-top: 6px;
  835. padding: 15px 20px;
  836. background: var(--bytm-menu-bg);
  837. background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bytm-menu-bg) 30%, var(--bytm-menu-bg) 100%);
  838. border: 2px solid var(--bytm-menu-separator-color);
  839. border-style: solid none none none !important;
  840. border-radius: 0px 0px var(--bytm-menu-border-radius) var(--bytm-menu-border-radius);
  841. }
  842. .bytm-menu-footer-buttons-cont button:not(:last-of-type) {
  843. margin-right: 15px;
  844. }
  845. .bytm-menu-footer-right {
  846. display: flex;
  847. flex-direction: row-reverse;
  848. align-items: center;
  849. }
  850. #bytm-menu-footer-left-buttons-cont button:not(:last-of-type) {
  851. margin-right: 15px;
  852. }
  853. #bytm-menu-scroll-indicator {
  854. --bytm-scroll-indicator-padding: 5px;
  855. position: sticky;
  856. bottom: -15px;
  857. left: 50%;
  858. margin-top: calc(-32px - var(--bytm-scroll-indicator-padding) * 2);
  859. padding: var(--bytm-scroll-indicator-padding);
  860. transform: translateX(-50%);
  861. width: 32px;
  862. height: 32px;
  863. z-index: 7;
  864. background-color: var(--bytm-scroll-indicator-bg);
  865. border-radius: 50%;
  866. cursor: pointer;
  867. }
  868. .bytm-hidden {
  869. visibility: hidden !important;
  870. }
  871. .bytm-ftconf-category-header {
  872. font-size: 20px;
  873. margin-top: 32px;
  874. margin-bottom: 8px;
  875. padding: 0px 20px;
  876. }
  877. .bytm-ftconf-category-header:first-of-type {
  878. margin-top: 0;
  879. }
  880. .bytm-ftitem {
  881. display: flex;
  882. flex-direction: row;
  883. justify-content: space-between;
  884. align-items: center;
  885. font-size: 1.4rem;
  886. padding: 8px 20px;
  887. transition: background-color 0.15s ease-out;
  888. }
  889. .bytm-ftitem:hover {
  890. background-color: var(--bytm-menu-bg-highlight);
  891. }
  892. .bytm-ftitem-leftside {
  893. display: flex;
  894. align-items: center;
  895. min-height: 24px;
  896. }
  897. .bytm-ftconf-ctrl {
  898. display: inline-flex;
  899. align-items: center;
  900. white-space: nowrap;
  901. margin-left: 10px;
  902. }
  903. .bytm-ftconf-label {
  904. user-select: none;
  905. }
  906. .bytm-slider-label {
  907. margin-right: 10px;
  908. }
  909. .bytm-toggle-label {
  910. padding-left: 10px;
  911. padding-right: 5px;
  912. }
  913. .bytm-ftconf-input.bytm-hotkey-input {
  914. cursor: pointer;
  915. min-width: 50px;
  916. }
  917. .bytm-ftconf-input[type=number] {
  918. width: 75px;
  919. }
  920. .bytm-ftconf-input[type=checkbox] {
  921. margin-left: 5px;
  922. }
  923. #bytm-export-menu-text, #bytm-import-menu-text {
  924. white-space: pre-wrap;
  925. font-size: 1.6rem;
  926. margin-bottom: 15px;
  927. }
  928. .bytm-menu-footer-copied {
  929. font-size: 1.6rem;
  930. margin-right: 15px;
  931. }
  932. #bytm-changelog-menu-body {
  933. overflow-y: auto;
  934. }
  935. .bytm-changelog-version-details:not(:first-of-type) {
  936. margin-top: 15px;
  937. }
  938. .bytm-changelog-version-details summary h2 {
  939. display: inline-block;
  940. }
  941. .bytm-changelog-version-details summary {
  942. cursor: pointer;
  943. }
  944. .bytm-changelog-version-details summary::marker {
  945. font-size: 2rem;
  946. }
  947. #bytm-export-menu-textarea, #bytm-import-menu-textarea {
  948. width: 100%;
  949. height: 150px;
  950. resize: none;
  951. }
  952. .bytm-markdown-container {
  953. display: flex;
  954. flex-direction: column;
  955. overflow-y: auto;
  956. font-size: 1.5rem;
  957. line-height: 20px;
  958. }
  959. /* Markdown stuff */
  960. .bytm-markdown-container kbd {
  961. --bytm-easing: cubic-bezier(0.31, 0.58, 0.24, 1.15);
  962. display: inline-block;
  963. vertical-align: bottom;
  964. padding: 4px;
  965. padding-top: 2px;
  966. font-size: 0.95em;
  967. line-height: 11px;
  968. background-color: #222;
  969. border: 1px solid #777;
  970. border-radius: 5px;
  971. box-shadow: inset 0 -2px 0 #515559;
  972. transition: padding 0.1s var(--bytm-easing), box-shadow 0.1s var(--bytm-easing);
  973. }
  974. .bytm-markdown-container kbd:active {
  975. padding-bottom: 2px;
  976. box-shadow: inset 0 0 0 initial;
  977. }
  978. .bytm-markdown-container kbd::selection {
  979. background: rgba(0, 0, 0, 0);
  980. }
  981. .bytm-markdown-container code {
  982. background-color: #222;
  983. border-radius: 3px;
  984. padding: 1px 5px;
  985. }
  986. .bytm-markdown-container h2 {
  987. margin-bottom: 5px;
  988. }
  989. .bytm-markdown-container h2:not(:first-of-type) {
  990. margin-top: 30px;
  991. }
  992. .bytm-markdown-container ul li {
  993. padding-left: 0px;
  994. }
  995. .bytm-markdown-container ul li::marker {
  996. content: none;
  997. }
  998. .bytm-markdown-container ul li::before {
  999. content: "• ";
  1000. font-weight: bolder;
  1001. }
  1002. .bytm-markdown-container ul li > ul li {
  1003. padding-left: 16px;
  1004. }
  1005. .bytm-markdown-container ul li > ul li::marker {
  1006. content: none;
  1007. }
  1008. .bytm-markdown-container ul li > ul li::before {
  1009. white-space: pre-wrap;
  1010. content: "• ";
  1011. font-weight: bolder;
  1012. }
  1013. .bytm-markdown-container ul li > ul li > ul li {
  1014. padding-left: 16px;
  1015. }
  1016. .bytm-markdown-container ul li > ul li > ul li::marker {
  1017. content: none;
  1018. }
  1019. .bytm-markdown-container ul li > ul li > ul li::before {
  1020. white-space: pre-wrap;
  1021. content: "• ";
  1022. font-weight: bolder;
  1023. }
  1024. .bytm-markdown-container .pr-link-cont {
  1025. padding-top: 10px;
  1026. }
  1027. #bytm-feat-help-dialog-desc, #bytm-feat-help-dialog-text {
  1028. overflow-wrap: break-word;
  1029. white-space: pre-wrap;
  1030. font-size: 1.5rem;
  1031. line-height: 1.25em;
  1032. }
  1033. #bytm-feat-help-dialog-desc {
  1034. font-size: 1.8rem;
  1035. padding-bottom: 10px;
  1036. }
  1037. .bytm-ftitem-help-btn {
  1038. width: 24px !important;
  1039. height: 24px !important;
  1040. }
  1041. .bytm-ftitem-help-btn svg {
  1042. width: 18px !important;
  1043. height: 18px !important;
  1044. }
  1045. .bytm-ftitem-help-btn svg > path {
  1046. fill: #b3bec7 !important;
  1047. }
  1048. hr {
  1049. display: block;
  1050. margin: 8px 0px 12px 0px;
  1051. border: revert;
  1052. }
  1053. /* #region misc */
  1054. .bytm-disable-scroll {
  1055. overflow: hidden !important;
  1056. }
  1057. /* #region generic (circular) button */
  1058. .bytm-generic-btn {
  1059. --bytm-generic-btn-width: 36px;
  1060. --bytm-generic-btn-height: 36px;
  1061. display: inline-flex;
  1062. align-items: center;
  1063. justify-content: center;
  1064. position: relative;
  1065. vertical-align: middle;
  1066. cursor: pointer;
  1067. margin-left: 8px;
  1068. white-space: nowrap;
  1069. text-overflow: ellipsis;
  1070. user-select: none;
  1071. min-width: var(--bytm-generic-btn-width);
  1072. max-width: var(--bytm-generic-btn-width);
  1073. min-height: var(--bytm-generic-btn-height);
  1074. max-height: var(--bytm-generic-btn-height);
  1075. border: 1px solid transparent;
  1076. border-radius: calc(var(--bytm-generic-btn-height, 36px) / 2);
  1077. background-color: transparent;
  1078. transition: background-color 0.2s ease;
  1079. }
  1080. .bytm-generic-btn:hover {
  1081. background-color: rgba(255, 255, 255, 0.2);
  1082. }
  1083. .bytm-generic-btn:active {
  1084. animation: bytm-flash-border 0.4s ease 1;
  1085. }
  1086. @keyframes bytm-flash-border {
  1087. 0% {
  1088. border: 1px solid initial;
  1089. }
  1090. 25% {
  1091. border: 1px solid rgba(255, 255, 255, 0.4);
  1092. }
  1093. 100% {
  1094. border: 1px solid initial;
  1095. }
  1096. }
  1097. .bytm-generic-btn:not(.bytm-toggle):active {
  1098. background-color: rgba(255, 255, 255, 0.3);
  1099. }
  1100. .bytm-generic-btn.long {
  1101. --bytm-generic-btn-width: calc(min(136px, fit-content));
  1102. padding: 0px 14px;
  1103. line-height: 36px;
  1104. display: inline-flex;
  1105. align-items: center;
  1106. justify-content: center;
  1107. position: relative;
  1108. vertical-align: middle;
  1109. cursor: pointer;
  1110. margin-left: 0px;
  1111. }
  1112. .bytm-generic-btn.long .bytm-generic-btn-img.left {
  1113. margin-right: 8px;
  1114. }
  1115. .bytm-generic-btn.long .bytm-generic-btn-img.right {
  1116. margin-left: 8px;
  1117. }
  1118. .bytm-generic-long-btn-txt {
  1119. font-size: 14px;
  1120. }
  1121. .bytm-ftitem-help-btn.bytm-generic-btn {
  1122. --bytm-generic-btn-width: 24px;
  1123. --bytm-generic-btn-height: 24px;
  1124. }
  1125. .bytm-generic-btn-img {
  1126. display: inline-block;
  1127. z-index: 1;
  1128. width: 24px;
  1129. height: 24px;
  1130. }
  1131. .bytm-spinner {
  1132. animation: rotate 1.2s linear infinite;
  1133. }
  1134. @keyframes rotate {
  1135. from {
  1136. transform: rotate(0deg);
  1137. }
  1138. to {
  1139. transform: rotate(360deg);
  1140. }
  1141. }
  1142. .bytm-anchor {
  1143. all: unset;
  1144. cursor: pointer;
  1145. }
  1146. /* ytmusic-logo a[bytm-animated="true"] .bytm-mod-logo-ellipse {
  1147. transform-origin: 12px 12px;
  1148. animation: rotate 1s ease-in-out infinite;
  1149. } */
  1150. ytmusic-logo a.bytm-logo-exchanged .bytm-mod-logo-path {
  1151. transform-origin: 12px 12px;
  1152. animation: rotate 1s ease-in-out;
  1153. }
  1154. ytmusic-logo a.bytm-logo-exchanged .bytm-mod-logo-img {
  1155. width: 24px;
  1156. height: 24px;
  1157. z-index: 1000;
  1158. position: absolute;
  1159. animation: rotate-fade-in 1s ease-in-out;
  1160. }
  1161. @keyframes rotate-fade-in {
  1162. 0% {
  1163. opacity: 0;
  1164. transform: rotate(0deg);
  1165. }
  1166. 30% {
  1167. opacity: 0;
  1168. }
  1169. 90% {
  1170. opacity: 1;
  1171. }
  1172. 100% {
  1173. transform: rotate(360deg);
  1174. }
  1175. }
  1176. .bytm-no-select {
  1177. user-select: none;
  1178. -ms-user-select: none;
  1179. -moz-user-select: none;
  1180. -webkit-user-select: none;
  1181. }
  1182. /* YTM does some weird styling that breaks everything, so this reverts all of BYTM's buttons to the browser default style */
  1183. button.bytm-btn {
  1184. padding: revert;
  1185. border: revert;
  1186. outline: revert;
  1187. font: revert;
  1188. text-transform: revert;
  1189. color: revert;
  1190. background: revert;
  1191. cursor: pointer;
  1192. line-height: 1.4em;
  1193. }
  1194. .bytm-link, .bytm-markdown-container a {
  1195. color: #369bff !important;
  1196. text-decoration: none !important;
  1197. cursor: pointer;
  1198. }
  1199. .bytm-link:hover, .bytm-markdown-container a:hover {
  1200. color: #369bff !important;
  1201. text-decoration: underline !important;
  1202. }
  1203. button[disabled] {
  1204. cursor: not-allowed;
  1205. }
  1206. button[disabled].bytm-busy {
  1207. cursor: progress;
  1208. }
  1209. /* #region random fixes */
  1210. .sponsorSkipNoticeContainer,
  1211. .sponsorSkipObject {
  1212. z-index: 4;
  1213. }
  1214. /* #region menu */
  1215. .bytm-cfg-menu-option {
  1216. display: block;
  1217. padding: 8px 0;
  1218. }
  1219. .bytm-cfg-menu-option-item {
  1220. display: flex;
  1221. flex-direction: row;
  1222. align-items: center;
  1223. font-size: 1.4rem;
  1224. font-weight: 400;
  1225. line-height: 24px;
  1226. padding: var(--yt-compact-link-paper-item-padding, 0px 36px 0 16px);
  1227. min-height: var(--paper-item-min-height, 40px);
  1228. white-space: nowrap;
  1229. cursor: pointer;
  1230. }
  1231. .bytm-cfg-menu-option-item:hover {
  1232. background-color: var(--yt-spec-badge-chip-background, #3e3e3e);
  1233. }
  1234. .bytm-cfg-menu-option-icon {
  1235. width: 24px;
  1236. height: 24px;
  1237. margin-right: 16px;
  1238. display: flex;
  1239. align-items: center;
  1240. flex-direction: row;
  1241. flex: none;
  1242. }
  1243. .bytm-cfg-menu-option-text {
  1244. font-size: 1.4rem;
  1245. line-height: 2rem;
  1246. }
  1247. yt-multi-page-menu-section-renderer.ytd-multi-page-menu-renderer {
  1248. border-bottom: 1px solid var(--yt-spec-10-percent-layer, #3e3e3e);
  1249. }
  1250. .bytm-yt-cfg-menu-option {
  1251. position: relative;
  1252. width: calc(100% - 12px);
  1253. }
  1254. .bytm-yt-cfg-menu-option-inner {
  1255. display: flex;
  1256. flex-direction: row;
  1257. justify-content: flex-start;
  1258. align-items: center;
  1259. min-height: var(--paper-item-min-height, 48px);
  1260. max-width: calc(100% - 12px);
  1261. padding: 0px 12px;
  1262. border-radius: var(--paper-item-focused-before-border-radius, 10px);
  1263. cursor: pointer;
  1264. background-color: transparent;
  1265. transition: background-color 0.2s ease;
  1266. }
  1267. .bytm-yt-cfg-menu-option-inner:hover {
  1268. background-color: var(--yt-spec-badge-chip-background, rgba(255, 255, 255, 0.1));
  1269. }
  1270. .bytm-yt-cfg-menu-option-icon {
  1271. display: flex;
  1272. align-items: center;
  1273. flex-direction: row;
  1274. width: 24px;
  1275. height: 24px;
  1276. margin-right: 24px;
  1277. }
  1278. .bytm-yt-cfg-menu-option-item {
  1279. width: 100%;
  1280. color: #fff;
  1281. font-size: 14px;
  1282. }
  1283. .bytm-yt-cfg-menu-option-item:hover {
  1284. /* Support for "Enhancer for YouTube" extension's custom themes */
  1285. color: var(--main-color, #fff) !important;
  1286. }
  1287. /* #region watermark */
  1288. #bytm-watermark {
  1289. font-size: 10px;
  1290. display: inline-block;
  1291. position: absolute;
  1292. left: 97px;
  1293. top: 45px;
  1294. z-index: 10;
  1295. color: #f1f1f1;
  1296. text-decoration: none;
  1297. cursor: pointer;
  1298. }
  1299. #bytm-watermark:hover {
  1300. text-decoration: underline;
  1301. }
  1302. /* #region above queue btns */
  1303. #bytm-above-queue-btn-cont {
  1304. display: flex;
  1305. flex-direction: row;
  1306. justify-content: center;
  1307. align-items: center;
  1308. flex-wrap: nowrap;
  1309. height: 100%;
  1310. }
  1311. #bytm-above-queue-btn-wrapper {
  1312. white-space: nowrap;
  1313. }
  1314. .bytm-above-queue-btn {
  1315. width: 32px;
  1316. height: 32px;
  1317. margin-left: 0;
  1318. margin-right: 8px;
  1319. }
  1320. /* #region scroll to active */
  1321. #bytm-scroll-to-active-btn-cont {
  1322. display: flex;
  1323. flex-direction: column;
  1324. justify-content: center;
  1325. align-items: center;
  1326. height: 100%;
  1327. }
  1328. #bytm-scroll-to-active-btn-cont.hidden {
  1329. display: none;
  1330. }
  1331. #bytm-scroll-to-active-btn {
  1332. display: inline-flex;
  1333. align-items: center;
  1334. justify-content: center;
  1335. border-radius: 50%;
  1336. cursor: pointer;
  1337. }
  1338. #bytm-scroll-to-active-btn {
  1339. width: revert;
  1340. height: revert;
  1341. }
  1342. #bytm-scroll-to-active-btn .bytm-generic-btn-img {
  1343. padding: 4px;
  1344. }
  1345. /* #region thumbnail */
  1346. #bytm-thumbnail-overlay {
  1347. position: absolute;
  1348. top: 0;
  1349. left: 0;
  1350. width: 100%;
  1351. height: 100%;
  1352. display: none;
  1353. background-color: #030303;
  1354. z-index: 0;
  1355. }
  1356. #bytm-thumbnail-overlay-img {
  1357. position: relative;
  1358. width: 100%;
  1359. height: 100%;
  1360. }
  1361. #bytm-thumbnail-overlay-indicator {
  1362. position: absolute;
  1363. bottom: 16px;
  1364. right: 16px;
  1365. width: calc(min(56px, 100% - 16px));
  1366. height: calc(min(56px, 100% - 16px));
  1367. z-index: 1;
  1368. cursor: help;
  1369. filter: drop-shadow(0 0 3px #000);
  1370. }
  1371. ytmusic-player#player #bezel {
  1372. z-index: 1;
  1373. }
  1374. /* #region auto-like */
  1375. .bytm-vote-label {
  1376. cursor: pointer;
  1377. font-size: 1.25rem;
  1378. padding: 6px;
  1379. padding-left: 3px;
  1380. }
  1381. .bytm-vote-label:last-child {
  1382. padding-right: 0px;
  1383. }
  1384. :root {
  1385. --bytm-auto-like-btn-color: #bf87f0;
  1386. }
  1387. #bytm-auto-like-channels-list {
  1388. display: flex;
  1389. flex-direction: column;
  1390. overflow-x: hidden;
  1391. overflow-y: auto;
  1392. white-space: nowrap;
  1393. text-overflow: ellipsis;
  1394. /* idk how else to get the scroll bar to show up correctly */
  1395. max-height: calc(min(100vh - 40px, var(--bytm-dialog-height-max)) - 300px);
  1396. }
  1397. .bytm-auto-like-channel-row-left-cont {
  1398. display: flex;
  1399. align-items: center;
  1400. gap: 10px;
  1401. }
  1402. .bytm-auto-like-channel-row {
  1403. display: flex;
  1404. justify-content: space-between;
  1405. align-items: center;
  1406. padding: 8px 15px;
  1407. transition: background-color 0.15s ease-out;
  1408. }
  1409. .bytm-auto-like-channels-desc {
  1410. padding: 0px 15px;
  1411. white-space: pre-wrap;
  1412. font-size: 1.6rem;
  1413. margin-bottom: 15px;
  1414. }
  1415. .bytm-auto-like-channel-row:hover {
  1416. background-color: var(--bytm-menu-bg-highlight);
  1417. }
  1418. .bytm-auto-like-channel-row .bytm-toggle-input-wrapper.bytm-auto-like-channel-toggle {
  1419. --toggle-height: 18px !important;
  1420. --toggle-width: 36px !important;
  1421. }
  1422. .bytm-auto-like-channel-row .bytm-generic-btn {
  1423. --bytm-generic-btn-width: 30px;
  1424. --bytm-generic-btn-height: 30px;
  1425. }
  1426. .bytm-auto-like-channel-name-label {
  1427. display: flex;
  1428. flex-direction: row;
  1429. align-items: center;
  1430. }
  1431. .bytm-auto-like-channel-id {
  1432. cursor: text;
  1433. font-size: 1.1rem;
  1434. color: #aaa;
  1435. margin-left: 10px;
  1436. }
  1437. .bytm-auto-like-toggle-btn {
  1438. margin-right: 8px;
  1439. border: 1px solid var(--bytm-auto-like-btn-color);
  1440. box-sizing: border-box;
  1441. background-color: transparent;
  1442. transition: border-color 0.2s ease;
  1443. animation: none;
  1444. }
  1445. .bytm-auto-like-toggle-btn.left-margin {
  1446. margin: 0;
  1447. margin-left: 8px;
  1448. }
  1449. .bytm-auto-like-toggle-btn:active {
  1450. background-color: rgba(255, 255, 255, 0.1);
  1451. }
  1452. .bytm-auto-like-toggle-btn:active,
  1453. .bytm-auto-like-toggle-btn.toggled {
  1454. border-color: rgba(255, 255, 255, 0.2);
  1455. }
  1456. .bytm-auto-like-toggle-btn svg path {
  1457. fill: var(--bytm-auto-like-btn-color);
  1458. transition: fill 0.2s ease;
  1459. }
  1460. .bytm-auto-like-toggle-btn:active svg path,
  1461. .bytm-auto-like-toggle-btn.toggled svg path {
  1462. fill: var(--ytmusic-subscribe-button-color, rgba(255, 255, 255, 0.7));
  1463. }
  1464. .bytm-auto-like-toggle-btn .bytm-generic-long-btn-txt {
  1465. font-weight: 500;
  1466. color: var(--bytm-auto-like-btn-color);
  1467. transition: color 0.2s ease;
  1468. }
  1469. .bytm-auto-like-toggle-btn:active .bytm-generic-long-btn-txt,
  1470. .bytm-auto-like-toggle-btn.toggled .bytm-generic-long-btn-txt
  1471. {
  1472. color: var(--ytmusic-subscribe-button-color, rgba(255, 255, 255, 0.7));
  1473. }
  1474. /* #region queue buttons */
  1475. #side-panel ytmusic-player-queue-item .song-info.ytmusic-player-queue-item {
  1476. position: relative;
  1477. }
  1478. #side-panel ytmusic-player-queue-item .bytm-queue-btn-container {
  1479. background: rgb(0, 0, 0);
  1480. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #030303 15%);
  1481. display: none;
  1482. position: absolute;
  1483. right: 0;
  1484. padding-left: 25px;
  1485. height: 100%;
  1486. }
  1487. #side-panel ytmusic-player-queue-item[selected] .bytm-queue-btn-container {
  1488. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #1D1D1D 15%);
  1489. }
  1490. .bytm-generic-list-queue-btn-container {
  1491. /* otherwise the queue buttons render over the currently playing song page */
  1492. z-index: 1;
  1493. }
  1494. #side-panel ytmusic-player-queue-item:hover .bytm-queue-btn-container,
  1495. ytmusic-playlist-shelf-renderer ytmusic-responsive-list-item-renderer:hover .bytm-queue-btn-container,
  1496. ytmusic-shelf-renderer ytmusic-responsive-list-item-renderer:hover .bytm-queue-btn-container,
  1497. /* same thing but with :focus-within */
  1498. #side-panel ytmusic-player-queue-item:focus-within .bytm-queue-btn-container,
  1499. ytmusic-playlist-shelf-renderer ytmusic-responsive-list-item-renderer:focus-within .bytm-queue-btn-container,
  1500. ytmusic-shelf-renderer ytmusic-responsive-list-item-renderer:focus-within .bytm-queue-btn-container
  1501. {
  1502. display: inline-flex;
  1503. align-items: center;
  1504. }
  1505. ytmusic-responsive-list-item-renderer .title-column {
  1506. align-items: center;
  1507. }
  1508. #side-panel ytmusic-player-queue-item[play-button-state="loading"] .bytm-queue-btn-container,
  1509. #side-panel ytmusic-player-queue-item[play-button-state="playing"] .bytm-queue-btn-container,
  1510. #side-panel ytmusic-player-queue-item[play-button-state="paused"] .bytm-queue-btn-container
  1511. {
  1512. /* using a var() with predefined value from YTM is not viable since the nesting changes the actual value of the variable */
  1513. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #030303 15%);
  1514. }
  1515. #side-panel ytmusic-player-queue-item[selected][play-button-state="loading"] .bytm-queue-btn-container,
  1516. #side-panel ytmusic-player-queue-item[selected][play-button-state="playing"] .bytm-queue-btn-container,
  1517. #side-panel ytmusic-player-queue-item[selected][play-button-state="paused"] .bytm-queue-btn-container
  1518. {
  1519. /* using a var() with predefined value from YTM is not viable since the nesting changes the actual value of the variable */
  1520. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #1D1D1D 15%);
  1521. }
  1522. ytmusic-app ytmusic-popup-container tp-yt-iron-dropdown[data-bytm-hidden=true] {
  1523. display: none !important;
  1524. }
  1525. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns .bytm-generic-list-queue-btn-container {
  1526. visibility: hidden;
  1527. }
  1528. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns .bytm-generic-list-queue-btn-container a.bytm-generic-btn {
  1529. visibility: hidden !important;
  1530. }
  1531. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:hover .bytm-generic-list-queue-btn-container,
  1532. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:focus-within .bytm-generic-list-queue-btn-container
  1533. {
  1534. visibility: visible;
  1535. }
  1536. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:hover .bytm-generic-list-queue-btn-container a.bytm-generic-btn,
  1537. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:focus-within .bytm-generic-list-queue-btn-container a.bytm-generic-btn
  1538. {
  1539. visibility: visible !important;
  1540. }
  1541. /* #region volume slider */
  1542. #bytm-vol-slider-cont {
  1543. position: relative;
  1544. }
  1545. #bytm-vol-slider-label {
  1546. opacity: 0.000001;
  1547. position: absolute;
  1548. display: flex;
  1549. flex-direction: row;
  1550. align-items: center;
  1551. gap: 5px;
  1552. font-size: 1.4rem;
  1553. top: 50%;
  1554. left: 0;
  1555. transform: translate(calc(-50% - 10px), -50%);
  1556. text-align: right;
  1557. transition: opacity 0.2s ease;
  1558. }
  1559. #bytm-vol-slider-label.has-icon {
  1560. transform: translate(calc(-50% - 25px), -50%);
  1561. }
  1562. #bytm-vol-slider-label svg {
  1563. padding: 4px;
  1564. }
  1565. #bytm-vol-slider-label svg path {
  1566. fill: #909090;
  1567. }
  1568. #bytm-vol-slider-label.bytm-visible {
  1569. opacity: 1;
  1570. }
  1571. #bytm-vol-slider-shared {
  1572. display: flex;
  1573. flex-direction: row;
  1574. align-items: center;
  1575. }
  1576. #bytm-vol-slider-shared svg {
  1577. width: 20px;
  1578. height: 20px;
  1579. }