BetterYTM.css 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887
  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. cursor: revert;
  381. }
  382. #bytm-export-dialog-text, #bytm-import-dialog-text {
  383. font-size: 1.6em;
  384. margin-bottom: 15px;
  385. }
  386. .bytm-dialog-footer-copied {
  387. font-size: 1.6em;
  388. margin-right: 15px;
  389. }
  390. #bytm-changelog-dialog-body {
  391. overflow-y: auto;
  392. }
  393. #bytm-export-dialog-textarea, #bytm-import-dialog-textarea {
  394. width: 100%;
  395. height: 150px;
  396. resize: none;
  397. }
  398. .bytm-markdown-container {
  399. display: flex;
  400. flex-direction: column;
  401. overflow-y: auto;
  402. font-size: 1.4rem;
  403. line-height: 20px;
  404. }
  405. /* Markdown stuff */
  406. .bytm-markdown-container kbd, .bytm-kbd {
  407. --bytm-easing: cubic-bezier(0.31, 0.58, 0.24, 1.15);
  408. display: inline-block;
  409. vertical-align: bottom;
  410. padding: 4px;
  411. padding-top: 2px;
  412. font-size: 0.95em;
  413. line-height: 11px;
  414. background-color: #222;
  415. border: 1px solid #777;
  416. border-radius: 5px;
  417. box-shadow: inset 0 -2px 0 #515559;
  418. transition: padding 0.1s var(--bytm-easing), margin-top 0.1s var(--bytm-easing), box-shadow 0.1s var(--bytm-easing);
  419. }
  420. .bytm-markdown-container kbd:active, .bytm-kbd:active {
  421. padding-bottom: 2px;
  422. margin-top: 2px;
  423. box-shadow: inset 0 0 0 initial;
  424. }
  425. .bytm-markdown-container kbd::selection, .bytm-kbd::selection {
  426. background: rgba(0, 0, 0, 0);
  427. }
  428. .bytm-markdown-container code {
  429. background-color: #222;
  430. border-radius: 3px;
  431. padding: 1px 5px;
  432. font-family: monospace;
  433. }
  434. .bytm-markdown-container h2 {
  435. margin-bottom: 5px;
  436. }
  437. .bytm-markdown-container h2:not(:first-of-type) {
  438. margin-top: 30px;
  439. }
  440. .bytm-markdown-container ul li::before {
  441. content: "• ";
  442. font-weight: bolder;
  443. }
  444. .bytm-markdown-container ul li > ul li::before {
  445. white-space: pre-wrap;
  446. content: " • ";
  447. font-weight: bolder;
  448. }
  449. #bytm-feat-help-dialog-desc, #bytm-feat-help-dialog-text {
  450. overflow-wrap: break-word;
  451. white-space: pre-wrap;
  452. font-size: 1.5em;
  453. }
  454. #bytm-feat-help-dialog-desc {
  455. font-size: 1.65em;
  456. padding-bottom: 5px;
  457. }
  458. .bytm-ftitem-help-btn {
  459. width: 24px !important;
  460. height: 24px !important;
  461. }
  462. .bytm-ftitem-help-btn svg {
  463. width: 18px !important;
  464. height: 18px !important;
  465. }
  466. .bytm-ftitem-help-btn svg > path {
  467. fill: #b3bec7 !important;
  468. }
  469. hr {
  470. display: block;
  471. margin: 8px 0px 12px 0px;
  472. border: revert;
  473. }
  474. .bytm-ftitem-adornment {
  475. display: inline-flex;
  476. justify-content: flex-start;
  477. align-items: center;
  478. margin-right: 6px;
  479. }
  480. .bytm-hotkey-wrapper {
  481. display: flex;
  482. flex-direction: row;
  483. align-items: center;
  484. justify-content: flex-end;
  485. }
  486. .bytm-hotkey-reset {
  487. font-size: 0.9em;
  488. margin-right: 10px;
  489. }
  490. .bytm-hotkey-info {
  491. font-size: 0.9em;
  492. white-space: nowrap;
  493. }
  494. /* use `html body` prefix for more specificity */
  495. html body .bytm-ripple {
  496. position: relative;
  497. overflow: hidden;
  498. white-space: nowrap;
  499. text-overflow: ellipsis;
  500. width: var(--bytm-ripple-width);
  501. height: var(--bytm-ripple-height);
  502. user-select: none;
  503. }
  504. html body .bytm-ripple.faster {
  505. --bytm-ripple-anim-duration: 0.15s;
  506. }
  507. html body .bytm-ripple.fast {
  508. --bytm-ripple-anim-duration: 0.35s;
  509. }
  510. html body .bytm-ripple,
  511. html body .bytm-ripple.normal {
  512. --bytm-ripple-anim-duration: 0.55s;
  513. }
  514. html body .bytm-ripple.slow {
  515. --bytm-ripple-anim-duration: 0.75s;
  516. }
  517. html body .bytm-ripple.slower {
  518. --bytm-ripple-anim-duration: 1s;
  519. }
  520. .bytm-ripple-area {
  521. position: absolute;
  522. background: rgba(255, 255, 255, 0.25);
  523. transform: translate(-50%, -50%);
  524. pointer-events: none;
  525. border-radius: 50%;
  526. animation: bytm-scale-ripple var(--bytm-ripple-anim-duration) cubic-bezier(0.375, 0.330, 0.225, 0.930);
  527. }
  528. @keyframes bytm-scale-ripple {
  529. 0% {
  530. width: 0;
  531. height: 0;
  532. opacity: 1;
  533. }
  534. 100% {
  535. /* 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 */
  536. width: calc(var(--bytm-ripple-cont-width) * 2);
  537. height: calc(var(--bytm-ripple-cont-width) * 2);
  538. opacity: 0;
  539. }
  540. }
  541. :root {
  542. --bytm-toast-bg-color: #323232;
  543. --bytm-toast-text-color: #fff;
  544. --bytm-toast-offset-ver: 80px;
  545. --bytm-toast-offset-hor: 25px;
  546. --bytm-toast-transition-time: 0.5s;
  547. --bytm-toast-transform-distance: 175px;
  548. }
  549. #bytm-toast {
  550. position: fixed;
  551. z-index: 1042069;
  552. opacity: 0.000001;
  553. pointer-events: none;
  554. padding: 10px 16px;
  555. border-radius: 3px;
  556. font-size: 1.5rem;
  557. background-color: var(--bytm-toast-bg-color);
  558. color: var(--bytm-toast-text-color);
  559. transition: opacity var(--bytm-toast-transition-time) ease, transform var(--bytm-toast-transition-time) ease;
  560. }
  561. #bytm-toast.visible {
  562. pointer-events: auto;
  563. opacity: 1;
  564. }
  565. #bytm-toast.pos-tl {
  566. top: var(--bytm-toast-offset-ver);
  567. left: var(--bytm-toast-offset-hor);
  568. transform: translate(0, calc(var(--bytm-toast-transform-distance) * -1));
  569. }
  570. #bytm-toast.pos-tr {
  571. top: var(--bytm-toast-offset-ver);
  572. right: var(--bytm-toast-offset-hor);
  573. transform: translate(0, calc(var(--bytm-toast-transform-distance) * -1));
  574. }
  575. #bytm-toast.pos-br {
  576. bottom: var(--bytm-toast-offset-ver);
  577. right: var(--bytm-toast-offset-hor);
  578. transform: translate(0, var(--bytm-toast-transform-distance));
  579. }
  580. #bytm-toast.pos-bl {
  581. bottom: var(--bytm-toast-offset-ver);
  582. left: var(--bytm-toast-offset-hor);
  583. transform: translate(0, var(--bytm-toast-transform-distance));
  584. }
  585. #bytm-toast.visible.pos-tl,
  586. #bytm-toast.visible.pos-tr,
  587. #bytm-toast.visible.pos-br,
  588. #bytm-toast.visible.pos-bl
  589. {
  590. transform: translate(0, 0);
  591. }
  592. .bytm-toast-flex-wrapper {
  593. display: flex;
  594. flex-direction: row;
  595. align-items: center;
  596. gap: 10px;
  597. }
  598. .bytm-toast-icon.img {
  599. width: 24px;
  600. height: 24px;
  601. }
  602. .bytm-toggle-input-wrapper {
  603. --toggle-height: 20px;
  604. --toggle-width: 40px;
  605. --toggle-knob-offset: 4px;
  606. --toggle-color-on: #3683d4;
  607. --toggle-color-off: #666;
  608. --toggle-knob-color: #f5f5f5;
  609. display: flex;
  610. align-items: center;
  611. }
  612. .bytm-toggle-input-wrapper .bytm-toggle-input-label {
  613. cursor: pointer;
  614. font-size: 1.5rem;
  615. padding: 3px 12px;
  616. }
  617. /* sauce: https://danklammer.com/articles/simple-css-toggle-switch/ */
  618. .bytm-toggle-input {
  619. display: flex;
  620. align-items: center;
  621. }
  622. .bytm-toggle-input input {
  623. appearance: none;
  624. display: inline-block;
  625. width: var(--toggle-width);
  626. height: var(--toggle-height);
  627. position: relative;
  628. border-radius: 50px;
  629. overflow: hidden;
  630. outline: none;
  631. border: none;
  632. margin: 0;
  633. padding: var(--toggle-knob-offset);
  634. cursor: pointer;
  635. background-color: var(--toggle-color-off);
  636. transition: justify-content 0.2s ease, background-color 0.2s ease;
  637. }
  638. .bytm-toggle-input input[data-toggled="true"] {
  639. background-color: var(--toggle-color-on);
  640. }
  641. .bytm-toggle-input input .bytm-toggle-input-knob {
  642. --toggle-knob-calc-width: calc(var(--toggle-height) - (var(--toggle-knob-offset) * 2));
  643. --toggle-knob-calc-height: calc(var(--toggle-height) - (var(--toggle-knob-offset) * 2));
  644. width: var(--toggle-knob-calc-width);
  645. height: var(--toggle-knob-calc-height);
  646. background-color: var(--toggle-knob-color);
  647. border-radius: 50%;
  648. position: absolute;
  649. top: 50%;
  650. transform: translateY(-50%);
  651. left: var(--toggle-knob-offset);
  652. transition: left 0.2s ease;
  653. }
  654. .bytm-toggle-input input[data-toggled="true"] .bytm-toggle-input-knob {
  655. left: calc(var(--toggle-width) - var(--toggle-knob-offset) - var(--toggle-knob-calc-width));
  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. .bytm-generic-btn {
  1058. --bytm-generic-btn-width: 36px;
  1059. --bytm-generic-btn-height: 36px;
  1060. display: inline-flex;
  1061. align-items: center;
  1062. justify-content: center;
  1063. position: relative;
  1064. vertical-align: middle;
  1065. cursor: pointer;
  1066. margin-left: 8px;
  1067. min-width: var(--bytm-generic-btn-width);
  1068. max-width: var(--bytm-generic-btn-width);
  1069. min-height: var(--bytm-generic-btn-height);
  1070. max-height: var(--bytm-generic-btn-height);
  1071. border: 1px solid transparent;
  1072. border-radius: calc(var(--bytm-generic-btn-height, 36px) / 2);
  1073. background-color: transparent;
  1074. transition: background-color 0.2s ease;
  1075. }
  1076. .bytm-generic-btn:not(.long):hover {
  1077. background-color: rgba(255, 255, 255, 0.2);
  1078. }
  1079. .bytm-generic-btn:active {
  1080. animation: flashBorder 0.4s ease 1;
  1081. }
  1082. .bytm-generic-btn:not(.bytm-toggle):active {
  1083. background-color: #5f5f5f;
  1084. }
  1085. .bytm-generic-btn.long {
  1086. --bytm-generic-btn-width: 136px;
  1087. padding: 0px;
  1088. line-height: 36px;
  1089. display: inline-flex;
  1090. align-items: center;
  1091. justify-content: center;
  1092. position: relative;
  1093. vertical-align: middle;
  1094. cursor: pointer;
  1095. margin-left: 0px;
  1096. }
  1097. .bytm-generic-btn.long .bytm-generic-btn-img.left {
  1098. margin-right: 8px;
  1099. }
  1100. .bytm-generic-btn.long .bytm-generic-btn-img.right {
  1101. margin-left: 8px;
  1102. }
  1103. .bytm-generic-long-btn-txt {
  1104. font-size: 14px;
  1105. }
  1106. .bytm-ftitem-help-btn.bytm-generic-btn {
  1107. --bytm-generic-btn-width: 24px;
  1108. --bytm-generic-btn-height: 24px;
  1109. }
  1110. @keyframes flashBorder {
  1111. 0% {
  1112. border: 1px solid initial;
  1113. }
  1114. 20% {
  1115. border: 1px solid #808080;
  1116. }
  1117. 100% {
  1118. border: 1px solid initial;
  1119. }
  1120. }
  1121. .bytm-generic-btn-img {
  1122. display: inline-block;
  1123. z-index: 1;
  1124. width: 24px;
  1125. height: 24px;
  1126. }
  1127. .bytm-spinner {
  1128. animation: rotate 1.2s linear infinite;
  1129. }
  1130. @keyframes rotate {
  1131. from {
  1132. transform: rotate(0deg);
  1133. }
  1134. to {
  1135. transform: rotate(360deg);
  1136. }
  1137. }
  1138. .bytm-anchor {
  1139. all: unset;
  1140. cursor: pointer;
  1141. }
  1142. /* ytmusic-logo a[bytm-animated="true"] .bytm-mod-logo-ellipse {
  1143. transform-origin: 12px 12px;
  1144. animation: rotate 1s ease-in-out infinite;
  1145. } */
  1146. ytmusic-logo a.bytm-logo-exchanged .bytm-mod-logo-path {
  1147. transform-origin: 12px 12px;
  1148. animation: rotate 1s ease-in-out;
  1149. }
  1150. ytmusic-logo a.bytm-logo-exchanged .bytm-mod-logo-img {
  1151. width: 24px;
  1152. height: 24px;
  1153. z-index: 1000;
  1154. position: absolute;
  1155. animation: rotate-fade-in 1s ease-in-out;
  1156. }
  1157. @keyframes rotate-fade-in {
  1158. 0% {
  1159. opacity: 0;
  1160. transform: rotate(0deg);
  1161. }
  1162. 30% {
  1163. opacity: 0;
  1164. }
  1165. 90% {
  1166. opacity: 1;
  1167. }
  1168. 100% {
  1169. transform: rotate(360deg);
  1170. }
  1171. }
  1172. .bytm-no-select {
  1173. user-select: none;
  1174. -ms-user-select: none;
  1175. -moz-user-select: none;
  1176. -webkit-user-select: none;
  1177. }
  1178. /* YTM does some weird styling that breaks everything, so this reverts all of BYTM's buttons to the browser default style */
  1179. button.bytm-btn {
  1180. padding: revert;
  1181. border: revert;
  1182. outline: revert;
  1183. font: revert;
  1184. text-transform: revert;
  1185. color: revert;
  1186. background: revert;
  1187. cursor: pointer;
  1188. line-height: 1.4em;
  1189. }
  1190. .bytm-link, .bytm-markdown-container a {
  1191. color: #369bff !important;
  1192. text-decoration: none !important;
  1193. cursor: pointer;
  1194. }
  1195. .bytm-link:hover, .bytm-markdown-container a:hover {
  1196. color: #369bff !important;
  1197. text-decoration: underline !important;
  1198. }
  1199. button[disabled] {
  1200. cursor: not-allowed;
  1201. }
  1202. button[disabled].bytm-busy {
  1203. cursor: progress;
  1204. }
  1205. /* #region random fixes */
  1206. .sponsorSkipNoticeContainer,
  1207. .sponsorSkipObject {
  1208. z-index: 4;
  1209. }
  1210. /* #region menu */
  1211. .bytm-cfg-menu-option {
  1212. display: block;
  1213. padding: 8px 0;
  1214. }
  1215. .bytm-cfg-menu-option-item {
  1216. display: flex;
  1217. flex-direction: row;
  1218. align-items: center;
  1219. font-size: 1.4rem;
  1220. font-weight: 400;
  1221. line-height: 24px;
  1222. padding: var(--yt-compact-link-paper-item-padding, 0px 36px 0 16px);
  1223. min-height: var(--paper-item-min-height, 40px);
  1224. white-space: nowrap;
  1225. cursor: pointer;
  1226. }
  1227. .bytm-cfg-menu-option-item:hover {
  1228. background-color: var(--yt-spec-badge-chip-background, #3e3e3e);
  1229. }
  1230. .bytm-cfg-menu-option-icon {
  1231. width: 24px;
  1232. height: 24px;
  1233. margin-right: 16px;
  1234. display: flex;
  1235. align-items: center;
  1236. flex-direction: row;
  1237. flex: none;
  1238. }
  1239. .bytm-cfg-menu-option-text {
  1240. font-size: 1.4rem;
  1241. line-height: 2rem;
  1242. }
  1243. yt-multi-page-menu-section-renderer.ytd-multi-page-menu-renderer {
  1244. border-bottom: 1px solid var(--yt-spec-10-percent-layer, #3e3e3e);
  1245. }
  1246. .bytm-yt-cfg-menu-option {
  1247. position: relative;
  1248. width: calc(100% - 12px);
  1249. }
  1250. .bytm-yt-cfg-menu-option-inner {
  1251. display: flex;
  1252. flex-direction: row;
  1253. justify-content: flex-start;
  1254. align-items: center;
  1255. min-height: var(--paper-item-min-height, 48px);
  1256. max-width: calc(100% - 12px);
  1257. padding: 0px 12px;
  1258. border-radius: var(--paper-item-focused-before-border-radius, 10px);
  1259. cursor: pointer;
  1260. background-color: transparent;
  1261. transition: background-color 0.2s ease;
  1262. }
  1263. .bytm-yt-cfg-menu-option-inner:hover {
  1264. background-color: var(--yt-spec-badge-chip-background, rgba(255, 255, 255, 0.1));
  1265. }
  1266. .bytm-yt-cfg-menu-option-icon {
  1267. display: flex;
  1268. align-items: center;
  1269. flex-direction: row;
  1270. width: 24px;
  1271. height: 24px;
  1272. margin-right: 24px;
  1273. }
  1274. .bytm-yt-cfg-menu-option-item {
  1275. width: 100%;
  1276. color: #fff;
  1277. font-size: 14px;
  1278. }
  1279. .bytm-yt-cfg-menu-option-item:hover {
  1280. /* Support for "Enhancer for YouTube" extension's custom themes */
  1281. color: var(--main-color, #fff) !important;
  1282. }
  1283. /* #region watermark */
  1284. #bytm-watermark {
  1285. font-size: 10px;
  1286. display: inline-block;
  1287. position: absolute;
  1288. left: 97px;
  1289. top: 45px;
  1290. z-index: 10;
  1291. color: #f1f1f1;
  1292. text-decoration: none;
  1293. cursor: pointer;
  1294. }
  1295. #bytm-watermark:hover {
  1296. text-decoration: underline;
  1297. }
  1298. /* #region above queue btns */
  1299. #bytm-above-queue-btn-cont {
  1300. display: flex;
  1301. flex-direction: row;
  1302. justify-content: center;
  1303. align-items: center;
  1304. flex-wrap: nowrap;
  1305. height: 100%;
  1306. }
  1307. #bytm-above-queue-btn-wrapper {
  1308. white-space: nowrap;
  1309. }
  1310. .bytm-above-queue-btn {
  1311. width: 32px;
  1312. height: 32px;
  1313. margin-left: 0;
  1314. margin-right: 8px;
  1315. }
  1316. /* #region scroll to active */
  1317. #bytm-scroll-to-active-btn-cont {
  1318. display: flex;
  1319. flex-direction: column;
  1320. justify-content: center;
  1321. align-items: center;
  1322. height: 100%;
  1323. }
  1324. #bytm-scroll-to-active-btn-cont.hidden {
  1325. display: none;
  1326. }
  1327. #bytm-scroll-to-active-btn {
  1328. display: inline-flex;
  1329. align-items: center;
  1330. justify-content: center;
  1331. border-radius: 50%;
  1332. cursor: pointer;
  1333. }
  1334. #bytm-scroll-to-active-btn {
  1335. width: revert;
  1336. height: revert;
  1337. }
  1338. #bytm-scroll-to-active-btn .bytm-generic-btn-img {
  1339. padding: 4px;
  1340. }
  1341. /* #region thumbnail */
  1342. #bytm-thumbnail-overlay {
  1343. position: absolute;
  1344. top: 0;
  1345. left: 0;
  1346. width: 100%;
  1347. height: 100%;
  1348. display: none;
  1349. background-color: #030303;
  1350. z-index: 0;
  1351. }
  1352. #bytm-thumbnail-overlay-img {
  1353. position: relative;
  1354. width: 100%;
  1355. height: 100%;
  1356. }
  1357. #bytm-thumbnail-overlay-indicator {
  1358. position: absolute;
  1359. bottom: 16px;
  1360. right: 16px;
  1361. width: calc(min(56px, 100% - 16px));
  1362. height: calc(min(56px, 100% - 16px));
  1363. z-index: 1;
  1364. cursor: help;
  1365. filter: drop-shadow(0 0 3px #000);
  1366. }
  1367. ytmusic-player#player #bezel {
  1368. z-index: 1;
  1369. }
  1370. :root {
  1371. --bytm-auto-like-btn-color: #bf87f0;
  1372. }
  1373. #bytm-auto-like-channels-list {
  1374. display: flex;
  1375. flex-direction: column;
  1376. overflow-x: hidden;
  1377. overflow-y: auto;
  1378. white-space: nowrap;
  1379. text-overflow: ellipsis;
  1380. /* idk how else to get the scroll bar to show up correctly */
  1381. max-height: calc(min(100vh - 40px, var(--bytm-dialog-height-max)) - 300px);
  1382. }
  1383. .bytm-auto-like-channel-row-left-cont {
  1384. display: flex;
  1385. align-items: center;
  1386. gap: 10px;
  1387. }
  1388. .bytm-auto-like-channel-row {
  1389. display: flex;
  1390. justify-content: space-between;
  1391. align-items: center;
  1392. padding: 8px 15px;
  1393. transition: background-color 0.15s ease-out;
  1394. }
  1395. .bytm-auto-like-channels-desc {
  1396. padding: 0px 15px;
  1397. white-space: pre-wrap;
  1398. font-size: 1.6rem;
  1399. margin-bottom: 15px;
  1400. }
  1401. #bytm-auto-like-channels-add-new-wrapper {
  1402. margin: 15px;
  1403. margin-top: 5px;
  1404. }
  1405. .bytm-auto-like-channel-row:hover {
  1406. background-color: var(--bytm-menu-bg-highlight);
  1407. }
  1408. .bytm-auto-like-channel-row .bytm-toggle-input-wrapper.bytm-auto-like-channel-toggle {
  1409. --toggle-height: 18px !important;
  1410. --toggle-width: 36px !important;
  1411. }
  1412. .bytm-auto-like-channel-row .bytm-generic-btn {
  1413. --bytm-generic-btn-width: 30px;
  1414. --bytm-generic-btn-height: 30px;
  1415. }
  1416. .bytm-auto-like-channel-name-label {
  1417. display: flex;
  1418. flex-direction: row;
  1419. align-items: center;
  1420. }
  1421. .bytm-auto-like-channel-id {
  1422. cursor: text;
  1423. font-size: 1.1rem;
  1424. color: #aaa;
  1425. margin-left: 10px;
  1426. }
  1427. .bytm-auto-like-toggle-btn {
  1428. margin-right: 8px;
  1429. border: 1px solid var(--bytm-auto-like-btn-color);
  1430. box-sizing: border-box;
  1431. background-color: transparent;
  1432. transition: border-color 0.2s ease;
  1433. animation: none;
  1434. }
  1435. .bytm-auto-like-toggle-btn.left-margin {
  1436. margin: 0;
  1437. margin-left: 8px;
  1438. }
  1439. .bytm-auto-like-toggle-btn:active {
  1440. background-color: rgba(255, 255, 255, 0.1);
  1441. }
  1442. .bytm-auto-like-toggle-btn:active,
  1443. .bytm-auto-like-toggle-btn.toggled {
  1444. border-color: rgba(255, 255, 255, 0.2);
  1445. }
  1446. .bytm-auto-like-toggle-btn svg path {
  1447. fill: var(--bytm-auto-like-btn-color);
  1448. transition: fill 0.2s ease;
  1449. }
  1450. .bytm-auto-like-toggle-btn:active svg path,
  1451. .bytm-auto-like-toggle-btn.toggled svg path {
  1452. fill: var(--ytmusic-subscribe-button-color, rgba(255, 255, 255, 0.7));
  1453. }
  1454. .bytm-auto-like-toggle-btn .bytm-generic-long-btn-txt {
  1455. font-weight: 500;
  1456. color: var(--bytm-auto-like-btn-color);
  1457. transition: color 0.2s ease;
  1458. }
  1459. .bytm-auto-like-toggle-btn:active .bytm-generic-long-btn-txt,
  1460. .bytm-auto-like-toggle-btn.toggled .bytm-generic-long-btn-txt
  1461. {
  1462. color: var(--ytmusic-subscribe-button-color, rgba(255, 255, 255, 0.7));
  1463. }
  1464. /* #region queue buttons */
  1465. #side-panel ytmusic-player-queue-item .song-info.ytmusic-player-queue-item {
  1466. position: relative;
  1467. }
  1468. #side-panel ytmusic-player-queue-item .bytm-queue-btn-container {
  1469. background: rgb(0, 0, 0);
  1470. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #030303 15%);
  1471. display: none;
  1472. position: absolute;
  1473. right: 0;
  1474. padding-left: 25px;
  1475. height: 100%;
  1476. }
  1477. #side-panel ytmusic-player-queue-item[selected] .bytm-queue-btn-container {
  1478. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #1D1D1D 15%);
  1479. }
  1480. .bytm-generic-list-queue-btn-container {
  1481. /* otherwise the queue buttons render over the currently playing song page */
  1482. z-index: 1;
  1483. }
  1484. #side-panel ytmusic-player-queue-item:hover .bytm-queue-btn-container,
  1485. ytmusic-playlist-shelf-renderer ytmusic-responsive-list-item-renderer:hover .bytm-queue-btn-container,
  1486. ytmusic-shelf-renderer ytmusic-responsive-list-item-renderer:hover .bytm-queue-btn-container,
  1487. /* same thing but with :focus-within */
  1488. #side-panel ytmusic-player-queue-item:focus-within .bytm-queue-btn-container,
  1489. ytmusic-playlist-shelf-renderer ytmusic-responsive-list-item-renderer:focus-within .bytm-queue-btn-container,
  1490. ytmusic-shelf-renderer ytmusic-responsive-list-item-renderer:focus-within .bytm-queue-btn-container
  1491. {
  1492. display: inline-flex;
  1493. align-items: center;
  1494. }
  1495. ytmusic-responsive-list-item-renderer .title-column {
  1496. align-items: center;
  1497. }
  1498. #side-panel ytmusic-player-queue-item[play-button-state="loading"] .bytm-queue-btn-container,
  1499. #side-panel ytmusic-player-queue-item[play-button-state="playing"] .bytm-queue-btn-container,
  1500. #side-panel ytmusic-player-queue-item[play-button-state="paused"] .bytm-queue-btn-container
  1501. {
  1502. /* using a var() with predefined value from YTM is not viable since the nesting changes the actual value of the variable */
  1503. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #030303 15%);
  1504. }
  1505. #side-panel ytmusic-player-queue-item[selected][play-button-state="loading"] .bytm-queue-btn-container,
  1506. #side-panel ytmusic-player-queue-item[selected][play-button-state="playing"] .bytm-queue-btn-container,
  1507. #side-panel ytmusic-player-queue-item[selected][play-button-state="paused"] .bytm-queue-btn-container
  1508. {
  1509. /* using a var() with predefined value from YTM is not viable since the nesting changes the actual value of the variable */
  1510. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #1D1D1D 15%);
  1511. }
  1512. ytmusic-app ytmusic-popup-container tp-yt-iron-dropdown[data-bytm-hidden=true] {
  1513. display: none !important;
  1514. }
  1515. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns .bytm-generic-list-queue-btn-container {
  1516. visibility: hidden;
  1517. }
  1518. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns .bytm-generic-list-queue-btn-container a.bytm-generic-btn {
  1519. visibility: hidden !important;
  1520. }
  1521. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:hover .bytm-generic-list-queue-btn-container,
  1522. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:focus-within .bytm-generic-list-queue-btn-container
  1523. {
  1524. visibility: visible;
  1525. }
  1526. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:hover .bytm-generic-list-queue-btn-container a.bytm-generic-btn,
  1527. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:focus-within .bytm-generic-list-queue-btn-container a.bytm-generic-btn
  1528. {
  1529. visibility: visible !important;
  1530. }
  1531. /* #region volume slider */
  1532. #bytm-vol-slider-cont {
  1533. position: relative;
  1534. }
  1535. #bytm-vol-slider-label {
  1536. opacity: 0.000001;
  1537. position: absolute;
  1538. display: flex;
  1539. flex-direction: row;
  1540. align-items: center;
  1541. gap: 5px;
  1542. font-size: 1.4rem;
  1543. top: 50%;
  1544. left: 0;
  1545. transform: translate(calc(-50% - 10px), -50%);
  1546. text-align: right;
  1547. transition: opacity 0.2s ease;
  1548. }
  1549. #bytm-vol-slider-label.has-icon {
  1550. transform: translate(calc(-50% - 25px), -50%);
  1551. }
  1552. #bytm-vol-slider-label svg {
  1553. padding: 4px;
  1554. }
  1555. #bytm-vol-slider-label svg path {
  1556. fill: #909090;
  1557. }
  1558. #bytm-vol-slider-label.bytm-visible {
  1559. opacity: 1;
  1560. }
  1561. #bytm-vol-slider-shared {
  1562. display: flex;
  1563. flex-direction: row;
  1564. align-items: center;
  1565. }
  1566. #bytm-vol-slider-shared svg {
  1567. width: 20px;
  1568. height: 20px;
  1569. }