BetterYTM.css 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893
  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-kbd-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-kbd-easing), margin-top 0.1s var(--bytm-kbd-easing), box-shadow 0.1s var(--bytm-kbd-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. /* some variables are not defined on purpose to allow plugin authors to more easily provide overrides */
  481. /* use `body` prefix for more specificity: */
  482. body .bytm-ripple {
  483. position: relative;
  484. overflow: hidden;
  485. width: var(--bytm-ripple-width, auto);
  486. height: var(--bytm-ripple-height, auto);
  487. }
  488. body .bytm-ripple.faster {
  489. --bytm-ripple-anim-duration: 0.15s;
  490. }
  491. body .bytm-ripple.fast {
  492. --bytm-ripple-anim-duration: 0.35s;
  493. }
  494. body .bytm-ripple.slow {
  495. --bytm-ripple-anim-duration: 0.75s;
  496. }
  497. body .bytm-ripple.slower {
  498. --bytm-ripple-anim-duration: 1s;
  499. }
  500. .bytm-ripple-area {
  501. --bytm-ripple-min-size: 100px;
  502. position: absolute;
  503. background: var(--bytm-ripple-color, rgba(255, 255, 255, 0.275));
  504. transform: translate(-50%, -50%);
  505. pointer-events: none;
  506. border-radius: 50%;
  507. animation: bytm-scale-ripple var(--bytm-ripple-anim-duration, 0.55s) cubic-bezier(0.375, 0.330, 0.225, 0.930);
  508. }
  509. @keyframes bytm-scale-ripple {
  510. 0% {
  511. width: 0;
  512. height: 0;
  513. opacity: 1;
  514. }
  515. 100% {
  516. /* 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 */
  517. width: calc(max(var(--bytm-ripple-cont-width, var(--bytm-ripple-min-size)) * 2, var(--bytm-ripple-min-size)));
  518. height: calc(max(var(--bytm-ripple-cont-width, var(--bytm-ripple-min-size)) * 2, var(--bytm-ripple-min-size)));
  519. opacity: 0;
  520. }
  521. }
  522. .bytm-hotkey-wrapper {
  523. display: flex;
  524. flex-direction: row;
  525. align-items: center;
  526. justify-content: flex-end;
  527. }
  528. .bytm-hotkey-reset {
  529. font-size: 0.9em;
  530. margin-right: 10px;
  531. }
  532. .bytm-hotkey-info {
  533. font-size: 0.9em;
  534. white-space: nowrap;
  535. }
  536. :root {
  537. --bytm-toast-bg-color: #323232;
  538. --bytm-toast-text-color: #fff;
  539. --bytm-toast-offset-ver: 80px;
  540. --bytm-toast-offset-hor: 25px;
  541. --bytm-toast-transition-time: 0.5s;
  542. --bytm-toast-transform-distance: 175px;
  543. }
  544. #bytm-toast {
  545. position: fixed;
  546. z-index: 1042069;
  547. opacity: 0.000001;
  548. pointer-events: none;
  549. padding: 10px 16px;
  550. border-radius: 3px;
  551. font-size: 1.5rem;
  552. background-color: var(--bytm-toast-bg-color);
  553. color: var(--bytm-toast-text-color);
  554. transition: opacity var(--bytm-toast-transition-time) ease, transform var(--bytm-toast-transition-time) ease;
  555. }
  556. #bytm-toast.visible {
  557. pointer-events: auto;
  558. opacity: 1;
  559. }
  560. #bytm-toast.pos-tl {
  561. top: var(--bytm-toast-offset-ver);
  562. left: var(--bytm-toast-offset-hor);
  563. transform: translate(0, calc(var(--bytm-toast-transform-distance) * -1));
  564. }
  565. #bytm-toast.pos-tr {
  566. top: var(--bytm-toast-offset-ver);
  567. right: var(--bytm-toast-offset-hor);
  568. transform: translate(0, calc(var(--bytm-toast-transform-distance) * -1));
  569. }
  570. #bytm-toast.pos-br {
  571. bottom: var(--bytm-toast-offset-ver);
  572. right: var(--bytm-toast-offset-hor);
  573. transform: translate(0, var(--bytm-toast-transform-distance));
  574. }
  575. #bytm-toast.pos-bl {
  576. bottom: var(--bytm-toast-offset-ver);
  577. left: var(--bytm-toast-offset-hor);
  578. transform: translate(0, var(--bytm-toast-transform-distance));
  579. }
  580. #bytm-toast.visible.pos-tl,
  581. #bytm-toast.visible.pos-tr,
  582. #bytm-toast.visible.pos-br,
  583. #bytm-toast.visible.pos-bl
  584. {
  585. transform: translate(0, 0);
  586. }
  587. .bytm-toast-flex-wrapper {
  588. display: flex;
  589. flex-direction: row;
  590. align-items: center;
  591. gap: 10px;
  592. }
  593. .bytm-toast-icon.img {
  594. width: 24px;
  595. height: 24px;
  596. }
  597. .bytm-toggle-input-wrapper {
  598. --toggle-height: 20px;
  599. --toggle-width: 40px;
  600. --toggle-knob-offset: 4px;
  601. --toggle-color-on: #3683d4;
  602. --toggle-color-off: #666;
  603. --toggle-knob-color: #f5f5f5;
  604. display: flex;
  605. align-items: center;
  606. }
  607. .bytm-toggle-input-wrapper .bytm-toggle-input-label {
  608. cursor: pointer;
  609. font-size: 1.5rem;
  610. padding: 3px 12px;
  611. }
  612. /* sauce: https://danklammer.com/articles/simple-css-toggle-switch/ */
  613. .bytm-toggle-input {
  614. display: flex;
  615. align-items: center;
  616. }
  617. .bytm-toggle-input input {
  618. appearance: none;
  619. display: inline-block;
  620. width: var(--toggle-width);
  621. height: var(--toggle-height);
  622. position: relative;
  623. border-radius: 50px;
  624. overflow: hidden;
  625. outline: none;
  626. border: none;
  627. margin: 0;
  628. padding: var(--toggle-knob-offset);
  629. cursor: pointer;
  630. background-color: var(--toggle-color-off);
  631. transition: justify-content 0.2s ease, background-color 0.2s ease;
  632. }
  633. .bytm-toggle-input input[data-toggled="true"] {
  634. background-color: var(--toggle-color-on);
  635. }
  636. .bytm-toggle-input input .bytm-toggle-input-knob {
  637. --toggle-knob-calc-width: calc(var(--toggle-height) - (var(--toggle-knob-offset) * 2));
  638. --toggle-knob-calc-height: calc(var(--toggle-height) - (var(--toggle-knob-offset) * 2));
  639. width: var(--toggle-knob-calc-width);
  640. height: var(--toggle-knob-calc-height);
  641. background-color: var(--toggle-knob-color);
  642. border-radius: 50%;
  643. position: absolute;
  644. top: 50%;
  645. transform: translateY(-50%);
  646. left: var(--toggle-knob-offset);
  647. transition: left 0.2s ease;
  648. }
  649. .bytm-toggle-input input[data-toggled="true"] .bytm-toggle-input-knob {
  650. left: calc(var(--toggle-width) - var(--toggle-knob-offset) - var(--toggle-knob-calc-width));
  651. }
  652. :root {
  653. --bytm-menu-bg-highlight: #252525;
  654. }
  655. .bytm-menu-bg {
  656. --bytm-menu-bg: #333333;
  657. --bytm-scroll-indicator-bg: rgba(10, 10, 10, 0.7);
  658. --bytm-menu-separator-color: #797979;
  659. --bytm-menu-border-radius: 10px;
  660. }
  661. .bytm-menu-bg {
  662. display: block;
  663. position: fixed;
  664. width: 100%;
  665. height: 100%;
  666. top: 0;
  667. left: 0;
  668. z-index: 5;
  669. background-color: rgba(0, 0, 0, 0.6);
  670. }
  671. .bytm-menu {
  672. position: fixed;
  673. display: flex;
  674. flex-direction: column;
  675. width: calc(min(100% - 60px, var(--bytm-menu-width-max)));
  676. border-radius: var(--bytm-menu-border-radius);
  677. height: auto;
  678. max-height: calc(min(100% - 40px, var(--bytm-menu-height-max)));
  679. left: 50%;
  680. top: 50%;
  681. transform: translate(-50%, -50%);
  682. z-index: 6;
  683. color: #fff;
  684. background-color: var(--bytm-menu-bg);
  685. }
  686. .bytm-menu.top-aligned {
  687. top: 0;
  688. transform: translate(-50%, 40px);
  689. }
  690. .bytm-menu-body {
  691. padding: 20px;
  692. }
  693. #bytm-menu-opts {
  694. display: flex;
  695. flex-direction: column;
  696. position: relative;
  697. padding: 20px 0px;
  698. overflow-y: auto;
  699. }
  700. .bytm-menu-header {
  701. display: flex;
  702. justify-content: space-between;
  703. align-items: center;
  704. margin-bottom: 6px;
  705. padding: 15px 20px 15px 20px;
  706. background-color: var(--bytm-menu-bg);
  707. border: 2px solid var(--bytm-menu-separator-color);
  708. border-style: none none solid none !important;
  709. border-radius: var(--bytm-menu-border-radius) var(--bytm-menu-border-radius) 0px 0px;
  710. }
  711. .bytm-menu-header.small {
  712. padding: 10px 15px;
  713. border-style: none none solid none !important;
  714. }
  715. .bytm-menu-titlecont {
  716. position: relative;
  717. display: flex;
  718. align-items: center;
  719. }
  720. .bytm-menu-titlecont-no-title {
  721. display: flex;
  722. justify-content: flex-end;
  723. align-items: center;
  724. }
  725. .bytm-menu-title {
  726. position: relative;
  727. display: inline-block;
  728. font-size: 22px;
  729. }
  730. #bytm-cfg-menu-bg .bytm-menu-title {
  731. transform: translate(0px, -6px);
  732. }
  733. #bytm-cfg-menu {
  734. --bytm-menu-subtitle-color: #c6d2db;
  735. }
  736. #bytm-menu-subtitle-cont {
  737. width: 100%;
  738. display: flex;
  739. gap: 6px;
  740. flex-direction: row;
  741. justify-content: space-between;
  742. align-items: end;
  743. position: absolute;
  744. bottom: -12px;
  745. left: 0;
  746. font-size: 10px;
  747. font-weight: normal;
  748. z-index: 7;
  749. }
  750. #bytm-menu-subtitle-cont, #bytm-menu-version-anchor {
  751. color: var(--bytm-menu-subtitle-color) !important;
  752. }
  753. #bytm-menu-subtitle-cont, #bytm-menu-mode-display {
  754. overflow: hidden;
  755. text-overflow: ellipsis;
  756. white-space: nowrap;
  757. }
  758. #bytm-menu-version-anchor {
  759. overflow: hidden;
  760. text-wrap: nowrap;
  761. text-overflow: ellipsis;
  762. }
  763. #bytm-menu-linkscont {
  764. display: flex;
  765. align-items: center;
  766. margin-left: 32px;
  767. }
  768. .bytm-menu-link {
  769. position: relative;
  770. max-height: 32px;
  771. max-width: 32px;
  772. display: inline-flex;
  773. flex-direction: column;
  774. align-items: center;
  775. cursor: pointer;
  776. }
  777. .bytm-menu-link:not(:last-of-type) {
  778. margin-right: 10px;
  779. }
  780. .bytm-menu-link .bytm-menu-img {
  781. width: 32px;
  782. height: 32px;
  783. border-radius: 50%;
  784. padding: 0px;
  785. transform: translateY(0px);
  786. transition: transform 0.15s ease-out, padding 0.15s ease-out;
  787. }
  788. .bytm-menu-link:hover .bytm-menu-img {
  789. padding: 7px;
  790. transform: translateY(-14px);
  791. }
  792. .bytm-menu-link .extended-link {
  793. visibility: hidden;
  794. position: absolute;
  795. top: 14px;
  796. padding-top: 13px;
  797. padding-bottom: 2px;
  798. opacity: 0;
  799. text-decoration: none;
  800. color: var(--bytm-menu-subtitle-color) !important;
  801. white-space: pre;
  802. font-size: 1.1rem;
  803. transition: visibility 0.15s ease-out, opacity 0.15s ease-out;
  804. }
  805. .bytm-menu-link:hover .extended-link {
  806. visibility: visible;
  807. opacity: 1;
  808. }
  809. .bytm-menu-close {
  810. width: 32px;
  811. height: 32px;
  812. cursor: pointer;
  813. }
  814. .bytm-menu-close.small {
  815. width: 24px;
  816. height: 24px;
  817. }
  818. .bytm-menu-footer {
  819. font-size: 17px;
  820. text-decoration: underline;
  821. }
  822. .bytm-menu-footer.hidden {
  823. display: none;
  824. }
  825. .bytm-menu-footer-cont {
  826. display: flex;
  827. flex-direction: row;
  828. justify-content: space-between;
  829. margin-top: 6px;
  830. padding: 15px 20px;
  831. background: var(--bytm-menu-bg);
  832. background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, var(--bytm-menu-bg) 30%, var(--bytm-menu-bg) 100%);
  833. border: 2px solid var(--bytm-menu-separator-color);
  834. border-style: solid none none none !important;
  835. border-radius: 0px 0px var(--bytm-menu-border-radius) var(--bytm-menu-border-radius);
  836. }
  837. #bytm-menu-footer-buttons-cont button:not(:last-of-type) {
  838. margin-right: 15px;
  839. }
  840. .bytm-menu-footer-right {
  841. display: flex;
  842. flex-direction: row-reverse;
  843. align-items: center;
  844. }
  845. #bytm-menu-footer-left-buttons-cont button:not(:last-of-type) {
  846. margin-right: 15px;
  847. }
  848. #bytm-menu-scroll-indicator {
  849. --bytm-scroll-indicator-padding: 5px;
  850. position: sticky;
  851. bottom: -15px;
  852. left: 50%;
  853. margin-top: calc(-32px - var(--bytm-scroll-indicator-padding) * 2);
  854. padding: var(--bytm-scroll-indicator-padding);
  855. transform: translateX(-50%);
  856. width: 32px;
  857. height: 32px;
  858. z-index: 7;
  859. background-color: var(--bytm-scroll-indicator-bg);
  860. border-radius: 50%;
  861. cursor: pointer;
  862. }
  863. .bytm-hidden {
  864. visibility: hidden !important;
  865. }
  866. .bytm-ftconf-category-header {
  867. font-size: 20px;
  868. margin-top: 32px;
  869. margin-bottom: 8px;
  870. padding: 0px 20px;
  871. }
  872. .bytm-ftconf-category-header:first-of-type {
  873. margin-top: 0;
  874. }
  875. .bytm-ftitem {
  876. display: flex;
  877. flex-direction: row;
  878. justify-content: space-between;
  879. align-items: center;
  880. font-size: 1.4rem;
  881. padding: 8px 20px;
  882. transition: background-color 0.15s ease-out;
  883. }
  884. .bytm-ftitem:hover {
  885. background-color: var(--bytm-menu-bg-highlight);
  886. }
  887. .bytm-ftitem-leftside {
  888. display: flex;
  889. align-items: center;
  890. min-height: 24px;
  891. }
  892. .bytm-ftconf-ctrl {
  893. display: inline-flex;
  894. align-items: center;
  895. white-space: nowrap;
  896. margin-left: 10px;
  897. }
  898. .bytm-ftconf-label {
  899. user-select: none;
  900. }
  901. .bytm-slider-label {
  902. margin-right: 10px;
  903. }
  904. .bytm-toggle-label {
  905. padding-left: 10px;
  906. padding-right: 5px;
  907. }
  908. .bytm-ftconf-input.bytm-hotkey-input {
  909. cursor: pointer;
  910. min-width: 50px;
  911. }
  912. .bytm-ftconf-input[type=number] {
  913. width: 75px;
  914. }
  915. .bytm-ftconf-input[type=checkbox] {
  916. margin-left: 5px;
  917. }
  918. #bytm-export-menu-text, #bytm-import-menu-text {
  919. white-space: pre-wrap;
  920. font-size: 1.6rem;
  921. margin-bottom: 15px;
  922. }
  923. .bytm-menu-footer-copied {
  924. font-size: 1.6rem;
  925. margin-right: 15px;
  926. }
  927. #bytm-changelog-menu-body {
  928. overflow-y: auto;
  929. }
  930. .bytm-changelog-version-details:not(:first-of-type) {
  931. margin-top: 15px;
  932. }
  933. .bytm-changelog-version-details summary h2 {
  934. display: inline-block;
  935. }
  936. .bytm-changelog-version-details summary {
  937. cursor: pointer;
  938. }
  939. .bytm-changelog-version-details summary::marker {
  940. font-size: 2rem;
  941. }
  942. #bytm-export-menu-textarea, #bytm-import-menu-textarea {
  943. width: 100%;
  944. height: 150px;
  945. resize: none;
  946. }
  947. .bytm-markdown-container {
  948. display: flex;
  949. flex-direction: column;
  950. overflow-y: auto;
  951. font-size: 1.5rem;
  952. line-height: 20px;
  953. }
  954. /* Markdown stuff */
  955. .bytm-markdown-container kbd {
  956. --bytm-easing: cubic-bezier(0.31, 0.58, 0.24, 1.15);
  957. display: inline-block;
  958. vertical-align: bottom;
  959. padding: 4px;
  960. padding-top: 2px;
  961. font-size: 0.95em;
  962. line-height: 11px;
  963. background-color: #222;
  964. border: 1px solid #777;
  965. border-radius: 5px;
  966. box-shadow: inset 0 -2px 0 #515559;
  967. transition: padding 0.1s var(--bytm-easing), box-shadow 0.1s var(--bytm-easing);
  968. }
  969. .bytm-markdown-container kbd:active {
  970. padding-bottom: 2px;
  971. box-shadow: inset 0 0 0 initial;
  972. }
  973. .bytm-markdown-container kbd::selection {
  974. background: rgba(0, 0, 0, 0);
  975. }
  976. .bytm-markdown-container code {
  977. background-color: #222;
  978. border-radius: 3px;
  979. padding: 1px 5px;
  980. }
  981. .bytm-markdown-container h2 {
  982. margin-bottom: 5px;
  983. }
  984. .bytm-markdown-container h2:not(:first-of-type) {
  985. margin-top: 30px;
  986. }
  987. .bytm-markdown-container ul li {
  988. padding-left: 0px;
  989. }
  990. .bytm-markdown-container ul li::marker {
  991. content: none;
  992. }
  993. .bytm-markdown-container ul li::before {
  994. content: "• ";
  995. font-weight: bolder;
  996. }
  997. .bytm-markdown-container ul li > ul li {
  998. padding-left: 16px;
  999. }
  1000. .bytm-markdown-container ul li > ul li::marker {
  1001. content: none;
  1002. }
  1003. .bytm-markdown-container ul li > ul li::before {
  1004. white-space: pre-wrap;
  1005. content: "• ";
  1006. font-weight: bolder;
  1007. }
  1008. .bytm-markdown-container ul li > ul li > ul li {
  1009. padding-left: 16px;
  1010. }
  1011. .bytm-markdown-container ul li > ul li > ul li::marker {
  1012. content: none;
  1013. }
  1014. .bytm-markdown-container ul li > ul li > ul li::before {
  1015. white-space: pre-wrap;
  1016. content: "• ";
  1017. font-weight: bolder;
  1018. }
  1019. .bytm-markdown-container .pr-link-cont {
  1020. padding-top: 10px;
  1021. }
  1022. #bytm-feat-help-dialog-desc, #bytm-feat-help-dialog-text {
  1023. overflow-wrap: break-word;
  1024. white-space: pre-wrap;
  1025. font-size: 1.5rem;
  1026. line-height: 1.25em;
  1027. }
  1028. #bytm-feat-help-dialog-desc {
  1029. font-size: 1.8rem;
  1030. padding-bottom: 10px;
  1031. }
  1032. .bytm-ftitem-help-btn {
  1033. width: 24px !important;
  1034. height: 24px !important;
  1035. }
  1036. .bytm-ftitem-help-btn svg {
  1037. width: 18px !important;
  1038. height: 18px !important;
  1039. }
  1040. .bytm-ftitem-help-btn svg > path {
  1041. fill: #b3bec7 !important;
  1042. }
  1043. hr {
  1044. display: block;
  1045. margin: 8px 0px 12px 0px;
  1046. border: revert;
  1047. }
  1048. /* #region misc */
  1049. .bytm-disable-scroll {
  1050. overflow: hidden !important;
  1051. }
  1052. /* #region generic (circular) button */
  1053. .bytm-generic-btn {
  1054. --bytm-generic-btn-width: 36px;
  1055. --bytm-generic-btn-height: 36px;
  1056. display: inline-flex;
  1057. align-items: center;
  1058. justify-content: center;
  1059. position: relative;
  1060. vertical-align: middle;
  1061. cursor: pointer;
  1062. margin-left: 8px;
  1063. white-space: nowrap;
  1064. text-overflow: ellipsis;
  1065. user-select: none;
  1066. min-width: var(--bytm-generic-btn-width);
  1067. max-width: var(--bytm-generic-btn-width);
  1068. min-height: var(--bytm-generic-btn-height);
  1069. max-height: var(--bytm-generic-btn-height);
  1070. border: 1px solid transparent;
  1071. border-radius: calc(var(--bytm-generic-btn-height, 36px) / 2);
  1072. background-color: transparent;
  1073. transition: background-color 0.2s ease;
  1074. }
  1075. .bytm-generic-btn:hover {
  1076. background-color: rgba(255, 255, 255, 0.2);
  1077. }
  1078. .bytm-generic-btn:active {
  1079. animation: bytm-flash-border 0.4s ease 1;
  1080. }
  1081. @keyframes bytm-flash-border {
  1082. 0% {
  1083. border: 1px solid initial;
  1084. }
  1085. 25% {
  1086. border: 1px solid rgba(255, 255, 255, 0.4);
  1087. }
  1088. 100% {
  1089. border: 1px solid initial;
  1090. }
  1091. }
  1092. .bytm-generic-btn:not(.bytm-toggle):active {
  1093. background-color: rgba(255, 255, 255, 0.3);
  1094. }
  1095. .bytm-generic-btn.long {
  1096. --bytm-generic-btn-width: calc(min(136px, fit-content));
  1097. padding: 0px 14px;
  1098. line-height: 36px;
  1099. display: inline-flex;
  1100. align-items: center;
  1101. justify-content: center;
  1102. position: relative;
  1103. vertical-align: middle;
  1104. cursor: pointer;
  1105. margin-left: 0px;
  1106. }
  1107. .bytm-generic-btn.long .bytm-generic-btn-img.left {
  1108. margin-right: 8px;
  1109. }
  1110. .bytm-generic-btn.long .bytm-generic-btn-img.right {
  1111. margin-left: 8px;
  1112. }
  1113. .bytm-generic-long-btn-txt {
  1114. font-size: 14px;
  1115. }
  1116. .bytm-ftitem-help-btn.bytm-generic-btn {
  1117. --bytm-generic-btn-width: 24px;
  1118. --bytm-generic-btn-height: 24px;
  1119. }
  1120. .bytm-generic-btn-img {
  1121. display: inline-block;
  1122. z-index: 1;
  1123. width: 24px;
  1124. height: 24px;
  1125. }
  1126. .bytm-spinner {
  1127. animation: rotate 1.2s linear infinite;
  1128. }
  1129. @keyframes rotate {
  1130. from {
  1131. transform: rotate(0deg);
  1132. }
  1133. to {
  1134. transform: rotate(360deg);
  1135. }
  1136. }
  1137. .bytm-anchor {
  1138. all: unset;
  1139. cursor: pointer;
  1140. }
  1141. /* ytmusic-logo a[bytm-animated="true"] .bytm-mod-logo-ellipse {
  1142. transform-origin: 12px 12px;
  1143. animation: rotate 1s ease-in-out infinite;
  1144. } */
  1145. ytmusic-logo a.bytm-logo-exchanged .bytm-mod-logo-path {
  1146. transform-origin: 12px 12px;
  1147. animation: rotate 1s ease-in-out;
  1148. }
  1149. ytmusic-logo a.bytm-logo-exchanged .bytm-mod-logo-img {
  1150. width: 24px;
  1151. height: 24px;
  1152. z-index: 1000;
  1153. position: absolute;
  1154. animation: rotate-fade-in 1s ease-in-out;
  1155. }
  1156. @keyframes rotate-fade-in {
  1157. 0% {
  1158. opacity: 0;
  1159. transform: rotate(0deg);
  1160. }
  1161. 30% {
  1162. opacity: 0;
  1163. }
  1164. 90% {
  1165. opacity: 1;
  1166. }
  1167. 100% {
  1168. transform: rotate(360deg);
  1169. }
  1170. }
  1171. .bytm-no-select {
  1172. user-select: none;
  1173. -ms-user-select: none;
  1174. -moz-user-select: none;
  1175. -webkit-user-select: none;
  1176. }
  1177. /* YTM does some weird styling that breaks everything, so this reverts all of BYTM's buttons to the browser default style */
  1178. button.bytm-btn {
  1179. padding: revert;
  1180. border: revert;
  1181. outline: revert;
  1182. font: revert;
  1183. text-transform: revert;
  1184. color: revert;
  1185. background: revert;
  1186. cursor: pointer;
  1187. line-height: 1.4em;
  1188. }
  1189. .bytm-link, .bytm-markdown-container a {
  1190. color: #369bff !important;
  1191. text-decoration: none !important;
  1192. cursor: pointer;
  1193. }
  1194. .bytm-link:hover, .bytm-markdown-container a:hover {
  1195. color: #369bff !important;
  1196. text-decoration: underline !important;
  1197. }
  1198. button[disabled] {
  1199. cursor: not-allowed;
  1200. }
  1201. button[disabled].bytm-busy {
  1202. cursor: progress;
  1203. }
  1204. /* #region random fixes */
  1205. .sponsorSkipNoticeContainer,
  1206. .sponsorSkipObject {
  1207. z-index: 4;
  1208. }
  1209. /* #region menu */
  1210. .bytm-cfg-menu-option {
  1211. display: block;
  1212. padding: 8px 0;
  1213. }
  1214. .bytm-cfg-menu-option-item {
  1215. display: flex;
  1216. flex-direction: row;
  1217. align-items: center;
  1218. font-size: 1.4rem;
  1219. font-weight: 400;
  1220. line-height: 24px;
  1221. padding: var(--yt-compact-link-paper-item-padding, 0px 36px 0 16px);
  1222. min-height: var(--paper-item-min-height, 40px);
  1223. white-space: nowrap;
  1224. cursor: pointer;
  1225. }
  1226. .bytm-cfg-menu-option-item:hover {
  1227. background-color: var(--yt-spec-badge-chip-background, #3e3e3e);
  1228. }
  1229. .bytm-cfg-menu-option-icon {
  1230. width: 24px;
  1231. height: 24px;
  1232. margin-right: 16px;
  1233. display: flex;
  1234. align-items: center;
  1235. flex-direction: row;
  1236. flex: none;
  1237. }
  1238. .bytm-cfg-menu-option-text {
  1239. font-size: 1.4rem;
  1240. line-height: 2rem;
  1241. }
  1242. yt-multi-page-menu-section-renderer.ytd-multi-page-menu-renderer {
  1243. border-bottom: 1px solid var(--yt-spec-10-percent-layer, #3e3e3e);
  1244. }
  1245. .bytm-yt-cfg-menu-option {
  1246. position: relative;
  1247. width: calc(100% - 12px);
  1248. }
  1249. .bytm-yt-cfg-menu-option-inner {
  1250. display: flex;
  1251. flex-direction: row;
  1252. justify-content: flex-start;
  1253. align-items: center;
  1254. min-height: var(--paper-item-min-height, 48px);
  1255. max-width: calc(100% - 12px);
  1256. padding: 0px 12px;
  1257. border-radius: var(--paper-item-focused-before-border-radius, 10px);
  1258. cursor: pointer;
  1259. background-color: transparent;
  1260. transition: background-color 0.2s ease;
  1261. }
  1262. .bytm-yt-cfg-menu-option-inner:hover {
  1263. background-color: var(--yt-spec-badge-chip-background, rgba(255, 255, 255, 0.1));
  1264. }
  1265. .bytm-yt-cfg-menu-option-icon {
  1266. display: flex;
  1267. align-items: center;
  1268. flex-direction: row;
  1269. width: 24px;
  1270. height: 24px;
  1271. margin-right: 24px;
  1272. }
  1273. .bytm-yt-cfg-menu-option-item {
  1274. width: 100%;
  1275. color: #fff;
  1276. font-size: 14px;
  1277. }
  1278. .bytm-yt-cfg-menu-option-item:hover {
  1279. /* Support for "Enhancer for YouTube" extension's custom themes */
  1280. color: var(--main-color, #fff) !important;
  1281. }
  1282. /* #region watermark */
  1283. #bytm-watermark {
  1284. font-size: 10px;
  1285. display: inline-block;
  1286. position: absolute;
  1287. left: 97px;
  1288. top: 45px;
  1289. z-index: 10;
  1290. color: #f1f1f1;
  1291. text-decoration: none;
  1292. cursor: pointer;
  1293. }
  1294. #bytm-watermark:hover {
  1295. text-decoration: underline;
  1296. }
  1297. /* #region above queue btns */
  1298. #bytm-above-queue-btn-cont {
  1299. display: flex;
  1300. flex-direction: row;
  1301. justify-content: center;
  1302. align-items: center;
  1303. flex-wrap: nowrap;
  1304. height: 100%;
  1305. }
  1306. #bytm-above-queue-btn-wrapper {
  1307. white-space: nowrap;
  1308. }
  1309. .bytm-above-queue-btn {
  1310. width: 32px;
  1311. height: 32px;
  1312. margin-left: 0;
  1313. margin-right: 8px;
  1314. }
  1315. /* #region scroll to active */
  1316. #bytm-scroll-to-active-btn-cont {
  1317. display: flex;
  1318. flex-direction: column;
  1319. justify-content: center;
  1320. align-items: center;
  1321. height: 100%;
  1322. }
  1323. #bytm-scroll-to-active-btn-cont.hidden {
  1324. display: none;
  1325. }
  1326. #bytm-scroll-to-active-btn {
  1327. display: inline-flex;
  1328. align-items: center;
  1329. justify-content: center;
  1330. border-radius: 50%;
  1331. cursor: pointer;
  1332. }
  1333. #bytm-scroll-to-active-btn {
  1334. width: revert;
  1335. height: revert;
  1336. }
  1337. #bytm-scroll-to-active-btn .bytm-generic-btn-img {
  1338. padding: 4px;
  1339. }
  1340. /* #region thumbnail */
  1341. #bytm-thumbnail-overlay {
  1342. position: absolute;
  1343. top: 0;
  1344. left: 0;
  1345. width: 100%;
  1346. height: 100%;
  1347. display: none;
  1348. background-color: #030303;
  1349. z-index: 0;
  1350. }
  1351. #bytm-thumbnail-overlay-img {
  1352. position: relative;
  1353. width: 100%;
  1354. height: 100%;
  1355. }
  1356. #bytm-thumbnail-overlay-indicator {
  1357. position: absolute;
  1358. bottom: 16px;
  1359. right: 16px;
  1360. width: calc(min(56px, 100% - 16px));
  1361. height: calc(min(56px, 100% - 16px));
  1362. z-index: 1;
  1363. cursor: help;
  1364. filter: drop-shadow(0 0 3px #000);
  1365. }
  1366. ytmusic-player#player #bezel {
  1367. z-index: 1;
  1368. }
  1369. /* #region auto-like */
  1370. .bytm-vote-label {
  1371. cursor: pointer;
  1372. font-size: 1.25rem;
  1373. padding: 4px;
  1374. }
  1375. :root {
  1376. --bytm-auto-like-btn-color: #bf87f0;
  1377. }
  1378. #bytm-auto-like-channels-list {
  1379. display: flex;
  1380. flex-direction: column;
  1381. overflow-x: hidden;
  1382. overflow-y: auto;
  1383. white-space: nowrap;
  1384. text-overflow: ellipsis;
  1385. /* idk how else to get the scroll bar to show up correctly */
  1386. max-height: calc(min(100vh - 40px, var(--bytm-dialog-height-max)) - 300px);
  1387. }
  1388. .bytm-auto-like-channel-row-left-cont {
  1389. display: flex;
  1390. align-items: center;
  1391. gap: 10px;
  1392. }
  1393. .bytm-auto-like-channel-row {
  1394. display: flex;
  1395. justify-content: space-between;
  1396. align-items: center;
  1397. padding: 8px 15px;
  1398. transition: background-color 0.15s ease-out;
  1399. }
  1400. .bytm-auto-like-channels-desc {
  1401. padding: 0px 15px;
  1402. white-space: pre-wrap;
  1403. font-size: 1.6rem;
  1404. margin-bottom: 15px;
  1405. }
  1406. #bytm-auto-like-channels-add-new-wrapper {
  1407. margin: 15px;
  1408. margin-top: 5px;
  1409. }
  1410. .bytm-auto-like-channel-row:hover {
  1411. background-color: var(--bytm-menu-bg-highlight);
  1412. }
  1413. .bytm-auto-like-channel-row .bytm-toggle-input-wrapper.bytm-auto-like-channel-toggle {
  1414. --toggle-height: 18px !important;
  1415. --toggle-width: 36px !important;
  1416. }
  1417. .bytm-auto-like-channel-row .bytm-generic-btn {
  1418. --bytm-generic-btn-width: 30px;
  1419. --bytm-generic-btn-height: 30px;
  1420. }
  1421. .bytm-auto-like-channel-name-label {
  1422. display: flex;
  1423. flex-direction: row;
  1424. align-items: center;
  1425. }
  1426. .bytm-auto-like-channel-id {
  1427. cursor: text;
  1428. font-size: 1.1rem;
  1429. color: #aaa;
  1430. margin-left: 10px;
  1431. }
  1432. .bytm-auto-like-toggle-btn {
  1433. margin-right: 8px;
  1434. border: 1px solid var(--bytm-auto-like-btn-color);
  1435. box-sizing: border-box;
  1436. background-color: transparent;
  1437. transition: border-color 0.2s ease;
  1438. animation: none;
  1439. }
  1440. .bytm-auto-like-toggle-btn.left-margin {
  1441. margin: 0;
  1442. margin-left: 8px;
  1443. }
  1444. .bytm-auto-like-toggle-btn:active {
  1445. background-color: rgba(255, 255, 255, 0.1);
  1446. }
  1447. .bytm-auto-like-toggle-btn:active,
  1448. .bytm-auto-like-toggle-btn.toggled {
  1449. border-color: rgba(255, 255, 255, 0.2);
  1450. }
  1451. .bytm-auto-like-toggle-btn svg path {
  1452. fill: var(--bytm-auto-like-btn-color);
  1453. transition: fill 0.2s ease;
  1454. }
  1455. .bytm-auto-like-toggle-btn:active svg path,
  1456. .bytm-auto-like-toggle-btn.toggled svg path {
  1457. fill: var(--ytmusic-subscribe-button-color, rgba(255, 255, 255, 0.7));
  1458. }
  1459. .bytm-auto-like-toggle-btn .bytm-generic-long-btn-txt {
  1460. font-weight: 500;
  1461. color: var(--bytm-auto-like-btn-color);
  1462. transition: color 0.2s ease;
  1463. }
  1464. .bytm-auto-like-toggle-btn:active .bytm-generic-long-btn-txt,
  1465. .bytm-auto-like-toggle-btn.toggled .bytm-generic-long-btn-txt
  1466. {
  1467. color: var(--ytmusic-subscribe-button-color, rgba(255, 255, 255, 0.7));
  1468. }
  1469. /* #region queue buttons */
  1470. #side-panel ytmusic-player-queue-item .song-info.ytmusic-player-queue-item {
  1471. position: relative;
  1472. }
  1473. #side-panel ytmusic-player-queue-item .bytm-queue-btn-container {
  1474. background: rgb(0, 0, 0);
  1475. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #030303 15%);
  1476. display: none;
  1477. position: absolute;
  1478. right: 0;
  1479. padding-left: 25px;
  1480. height: 100%;
  1481. }
  1482. #side-panel ytmusic-player-queue-item[selected] .bytm-queue-btn-container {
  1483. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #1D1D1D 15%);
  1484. }
  1485. .bytm-generic-list-queue-btn-container {
  1486. /* otherwise the queue buttons render over the currently playing song page */
  1487. z-index: 1;
  1488. }
  1489. #side-panel ytmusic-player-queue-item:hover .bytm-queue-btn-container,
  1490. ytmusic-playlist-shelf-renderer ytmusic-responsive-list-item-renderer:hover .bytm-queue-btn-container,
  1491. ytmusic-shelf-renderer ytmusic-responsive-list-item-renderer:hover .bytm-queue-btn-container,
  1492. /* same thing but with :focus-within */
  1493. #side-panel ytmusic-player-queue-item:focus-within .bytm-queue-btn-container,
  1494. ytmusic-playlist-shelf-renderer ytmusic-responsive-list-item-renderer:focus-within .bytm-queue-btn-container,
  1495. ytmusic-shelf-renderer ytmusic-responsive-list-item-renderer:focus-within .bytm-queue-btn-container
  1496. {
  1497. display: inline-flex;
  1498. align-items: center;
  1499. }
  1500. ytmusic-responsive-list-item-renderer .title-column {
  1501. align-items: center;
  1502. }
  1503. #side-panel ytmusic-player-queue-item[play-button-state="loading"] .bytm-queue-btn-container,
  1504. #side-panel ytmusic-player-queue-item[play-button-state="playing"] .bytm-queue-btn-container,
  1505. #side-panel ytmusic-player-queue-item[play-button-state="paused"] .bytm-queue-btn-container
  1506. {
  1507. /* using a var() with predefined value from YTM is not viable since the nesting changes the actual value of the variable */
  1508. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #030303 15%);
  1509. }
  1510. #side-panel ytmusic-player-queue-item[selected][play-button-state="loading"] .bytm-queue-btn-container,
  1511. #side-panel ytmusic-player-queue-item[selected][play-button-state="playing"] .bytm-queue-btn-container,
  1512. #side-panel ytmusic-player-queue-item[selected][play-button-state="paused"] .bytm-queue-btn-container
  1513. {
  1514. /* using a var() with predefined value from YTM is not viable since the nesting changes the actual value of the variable */
  1515. background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #1D1D1D 15%);
  1516. }
  1517. ytmusic-app ytmusic-popup-container tp-yt-iron-dropdown[data-bytm-hidden=true] {
  1518. display: none !important;
  1519. }
  1520. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns .bytm-generic-list-queue-btn-container {
  1521. visibility: hidden;
  1522. }
  1523. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns .bytm-generic-list-queue-btn-container a.bytm-generic-btn {
  1524. visibility: hidden !important;
  1525. }
  1526. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:hover .bytm-generic-list-queue-btn-container,
  1527. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:focus-within .bytm-generic-list-queue-btn-container
  1528. {
  1529. visibility: visible;
  1530. }
  1531. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:hover .bytm-generic-list-queue-btn-container a.bytm-generic-btn,
  1532. ytmusic-responsive-list-item-renderer.bytm-has-queue-btns:focus-within .bytm-generic-list-queue-btn-container a.bytm-generic-btn
  1533. {
  1534. visibility: visible !important;
  1535. }
  1536. /* #region volume slider */
  1537. #bytm-vol-slider-cont {
  1538. position: relative;
  1539. }
  1540. #bytm-vol-slider-label {
  1541. opacity: 0.000001;
  1542. position: absolute;
  1543. display: flex;
  1544. flex-direction: row;
  1545. align-items: center;
  1546. gap: 5px;
  1547. font-size: 1.4rem;
  1548. top: 50%;
  1549. left: 0;
  1550. transform: translate(calc(-50% - 10px), -50%);
  1551. text-align: right;
  1552. transition: opacity 0.2s ease;
  1553. }
  1554. #bytm-vol-slider-label.has-icon {
  1555. transform: translate(calc(-50% - 25px), -50%);
  1556. }
  1557. #bytm-vol-slider-label svg {
  1558. padding: 4px;
  1559. }
  1560. #bytm-vol-slider-label svg path {
  1561. fill: #909090;
  1562. }
  1563. #bytm-vol-slider-label.bytm-visible {
  1564. opacity: 1;
  1565. }
  1566. #bytm-vol-slider-shared {
  1567. display: flex;
  1568. flex-direction: row;
  1569. align-items: center;
  1570. }
  1571. #bytm-vol-slider-shared svg {
  1572. width: 20px;
  1573. height: 20px;
  1574. }