popup.css 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6. body {
  7. font-family: Arial, sans-serif;
  8. background-color: #f5f5f5;
  9. color: #333;
  10. width: 400px;
  11. max-height: 600px;
  12. overflow-y: auto;
  13. }
  14. #app {
  15. padding: 16px;
  16. }
  17. header {
  18. margin-bottom: 16px;
  19. text-align: center;
  20. display: flex;
  21. align-items: center;
  22. justify-content: center;
  23. position: relative;
  24. }
  25. h1 {
  26. font-size: 20px;
  27. color: #333;
  28. }
  29. h2 {
  30. font-size: 16px;
  31. margin-bottom: 8px;
  32. padding-bottom: 4px;
  33. border-bottom: 1px solid #ddd;
  34. }
  35. .playlist-name-clickable {
  36. cursor: pointer;
  37. color: #4285f4;
  38. transition: color 0.2s ease;
  39. }
  40. .playlist-name-clickable:hover {
  41. color: #3367d6;
  42. text-decoration: underline;
  43. }
  44. .playlist {
  45. background: #fff;
  46. border-radius: 8px;
  47. padding: 12px;
  48. margin-bottom: 16px;
  49. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  50. }
  51. .video-item {
  52. display: flex;
  53. justify-content: space-between;
  54. align-items: center;
  55. padding: 8px 0;
  56. border-bottom: 1px solid #eee;
  57. }
  58. .video-item:last-child {
  59. border-bottom: none;
  60. }
  61. .video-title {
  62. flex: 1;
  63. overflow: hidden;
  64. text-overflow: ellipsis;
  65. white-space: nowrap;
  66. }
  67. a.video-title {
  68. text-decoration: none;
  69. color: #333;
  70. }
  71. .video-actions {
  72. display: flex;
  73. gap: 8px;
  74. }
  75. button {
  76. padding: 4px 8px;
  77. border: none;
  78. border-radius: 4px;
  79. cursor: pointer;
  80. font-size: 12px;
  81. }
  82. button:hover {
  83. opacity: 0.9;
  84. }
  85. .empty-playlist {
  86. padding: 8px 0;
  87. color: #888;
  88. font-style: italic;
  89. font-size: 14px;
  90. }
  91. .current-video {
  92. background-color: #e3f2fd;
  93. border-left: 3px solid #4285f4;
  94. padding-left: 8px;
  95. font-weight: bold;
  96. }
  97. .done-video {
  98. color: #999;
  99. opacity: 0.6;
  100. }
  101. .done-video .video-title {
  102. text-decoration: line-through;
  103. }
  104. .non-contiguous-done-video {
  105. opacity: 0.7;
  106. background-color: rgba(128, 128, 128, 0.05);
  107. }
  108. .non-contiguous-done-video .video-title {
  109. color: #666;
  110. }
  111. /* Truncated videos indicator */
  112. .truncated-videos {
  113. padding: 8px 0 12px 8px;
  114. margin-bottom: 12px;
  115. border-bottom: 1px solid #eee;
  116. cursor: pointer;
  117. color: #888;
  118. font-style: italic;
  119. font-size: 14px;
  120. transition: color 0.2s ease, background-color 0.2s ease;
  121. }
  122. .truncated-videos:hover {
  123. color: #4285f4;
  124. background-color: #f8f9fa;
  125. }
  126. /* More menu styles */
  127. .more-menu-container {
  128. position: relative;
  129. }
  130. .more-btn {
  131. background-color: #666;
  132. color: white;
  133. font-size: 14px;
  134. padding: 4px 8px;
  135. border-radius: 4px;
  136. font-weight: bold;
  137. }
  138. .more-menu {
  139. position: absolute;
  140. right: 0;
  141. top: 100%;
  142. background: white;
  143. border: 1px solid #ddd;
  144. border-radius: 4px;
  145. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  146. z-index: 1000;
  147. min-width: 100px;
  148. margin-top: 4px;
  149. }
  150. .menu-item {
  151. display: block;
  152. width: 100%;
  153. padding: 8px 12px;
  154. border: none;
  155. background: none;
  156. text-align: left;
  157. cursor: pointer;
  158. font-size: 12px;
  159. border-radius: 0;
  160. }
  161. .menu-item:hover {
  162. background-color: #f5f5f5;
  163. }
  164. .remove-item {
  165. color: #f44336;
  166. }
  167. .remove-item:hover {
  168. background-color: #ffeaea;
  169. }
  170. /* Back button styles */
  171. .back-btn {
  172. background-color: #4285f4;
  173. color: white;
  174. padding: 8px 12px;
  175. border-radius: 4px;
  176. font-size: 14px;
  177. margin-bottom: 8px;
  178. }
  179. .back-btn:hover {
  180. background-color: #3367d6;
  181. }
  182. /* Arrow back button styles */
  183. .back-btn-arrow {
  184. position: absolute;
  185. left: 0;
  186. background: none;
  187. border: none;
  188. font-size: 20px;
  189. color: #4285f4;
  190. cursor: pointer;
  191. padding: 8px 12px;
  192. border-radius: 50%;
  193. transition: background-color 0.2s ease, color 0.2s ease;
  194. display: flex;
  195. align-items: center;
  196. justify-content: center;
  197. width: 36px;
  198. height: 36px;
  199. }
  200. .back-btn-arrow:hover {
  201. background-color: #e8f0fe;
  202. color: #3367d6;
  203. }
  204. /* History view styles */
  205. .history-container {
  206. background: #fff;
  207. border-radius: 8px;
  208. padding: 12px;
  209. margin-bottom: 16px;
  210. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  211. min-height: 200px;
  212. }
  213. .history-list {
  214. display: flex;
  215. flex-direction: column;
  216. gap: 16px;
  217. }
  218. .history-item {
  219. border-bottom: 1px solid #eee;
  220. padding-bottom: 12px;
  221. }
  222. .history-item:last-child {
  223. border-bottom: none;
  224. padding-bottom: 0;
  225. }
  226. .history-video-info {
  227. margin-bottom: 8px;
  228. }
  229. .history-video-title {
  230. display: block;
  231. font-weight: bold;
  232. color: #333;
  233. text-decoration: none;
  234. margin-bottom: 4px;
  235. overflow: hidden;
  236. text-overflow: ellipsis;
  237. white-space: nowrap;
  238. }
  239. .history-video-title:hover {
  240. color: #4285f4;
  241. }
  242. .history-video-id {
  243. font-size: 12px;
  244. color: #4285f4;
  245. font-family: monospace;
  246. text-decoration: none;
  247. cursor: pointer;
  248. transition: color 0.2s ease;
  249. }
  250. .history-video-id:hover {
  251. color: #3367d6;
  252. text-decoration: underline;
  253. }
  254. .history-tags {
  255. margin-top: 6px;
  256. display: flex;
  257. gap: 6px;
  258. flex-wrap: wrap;
  259. }
  260. .tag-chip {
  261. font-size: 10px;
  262. padding: 2px 8px;
  263. border: 1px solid #ddd;
  264. border-radius: 12px;
  265. background-color: #f8f9fa;
  266. color: #666;
  267. cursor: pointer;
  268. transition: all 0.2s ease;
  269. }
  270. .tag-chip:hover {
  271. background-color: #e8f0fe;
  272. border-color: #4285f4;
  273. color: #4285f4;
  274. }
  275. .tag-chip.active {
  276. background-color: #4285f4;
  277. border-color: #4285f4;
  278. color: white;
  279. }
  280. .tag-chip.active:hover {
  281. background-color: #3367d6;
  282. border-color: #3367d6;
  283. }
  284. .history-events {
  285. display: flex;
  286. flex-direction: column;
  287. gap: 4px;
  288. margin-left: 12px;
  289. }
  290. .history-event {
  291. display: flex;
  292. align-items: center;
  293. gap: 8px;
  294. font-size: 12px;
  295. color: #555;
  296. }
  297. .event-action {
  298. font-weight: bold;
  299. min-width: 60px;
  300. }
  301. .event-position {
  302. color: #666;
  303. font-family: monospace;
  304. min-width: 70px;
  305. }
  306. .event-timestamp {
  307. color: #888;
  308. font-size: 11px;
  309. margin-left: auto;
  310. }
  311. .empty-history {
  312. text-align: center;
  313. padding: 40px 0;
  314. color: #888;
  315. font-style: italic;
  316. }
  317. /* History button styles */
  318. .history-btn {
  319. background-color: #34a853;
  320. color: white;
  321. padding: 8px 12px;
  322. border-radius: 4px;
  323. font-size: 14px;
  324. }
  325. .history-btn:hover {
  326. background-color: #2d7d3a;
  327. }
  328. /* Playlist view styles */
  329. .playlist-view-container {
  330. background: #fff;
  331. border-radius: 8px;
  332. padding: 12px;
  333. margin-bottom: 16px;
  334. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  335. min-height: 200px;
  336. }
  337. .playlist-full-view {
  338. display: flex;
  339. flex-direction: column;
  340. gap: 0;
  341. }
  342. .playlist-full-view .video-item {
  343. display: flex;
  344. justify-content: space-between;
  345. align-items: center;
  346. padding: 8px 0;
  347. border-bottom: 1px solid #eee;
  348. }
  349. .playlist-full-view .video-item:last-child {
  350. border-bottom: none;
  351. }
  352. /* Add current page button styles */
  353. .add-current-page-container {
  354. display: flex;
  355. flex-wrap: wrap;
  356. row-gap: 6px;
  357. column-gap: 4px;
  358. margin-bottom: 12px;
  359. }
  360. .add-current-page-btn {
  361. width: fit-content;
  362. background-color: #4285f4;
  363. color: white;
  364. padding: 8px 12px;
  365. border-radius: 4px;
  366. font-size: 14px;
  367. font-weight: 500;
  368. }
  369. .add-current-page-btn:hover:not(:disabled) {
  370. background-color: #3367d6;
  371. }
  372. .add-current-page-btn:disabled,
  373. .add-current-page-btn.disabled {
  374. background-color: #ccc;
  375. color: #888;
  376. cursor: not-allowed;
  377. }
  378. .add-current-page-btn:disabled:hover,
  379. .add-current-page-btn.disabled:hover {
  380. background-color: #ccc;
  381. }
  382. .scatter-control {
  383. display: inline-flex;
  384. align-items: stretch;
  385. border: 1px solid #aaa;
  386. border-radius: 4px;
  387. overflow: hidden;
  388. }
  389. .scatter-count-input {
  390. width: 36px;
  391. padding: 8px 2px;
  392. border: none;
  393. border-right: 1px solid #aaa;
  394. font-size: 14px;
  395. text-align: center;
  396. outline: none;
  397. box-sizing: border-box;
  398. }
  399. .scatter-btn {
  400. background-color: #388e3c;
  401. color: white;
  402. padding: 8px 12px;
  403. border: none;
  404. font-size: 14px;
  405. font-weight: 500;
  406. }
  407. .scatter-btn:hover:not(:disabled) {
  408. background-color: #2e7d32;
  409. cursor: pointer;
  410. }
  411. .scatter-btn:disabled {
  412. background-color: #ccc;
  413. color: #888;
  414. cursor: not-allowed;
  415. }
  416. /* Save Channel view styles */
  417. .save-channel-container {
  418. background: #fff;
  419. border-radius: 8px;
  420. padding: 16px;
  421. margin-bottom: 16px;
  422. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  423. min-height: 300px;
  424. }
  425. .save-channel-content {
  426. display: flex;
  427. flex-direction: column;
  428. gap: 20px;
  429. }
  430. .curl-command-section {
  431. display: flex;
  432. flex-direction: column;
  433. gap: 12px;
  434. }
  435. .curl-field-container {
  436. display: flex;
  437. flex-direction: column;
  438. gap: 8px;
  439. }
  440. .curl-command-field {
  441. width: 100%;
  442. min-height: 120px;
  443. padding: 12px;
  444. border: 1px solid #ddd;
  445. border-radius: 6px;
  446. font-family: monospace;
  447. font-size: 12px;
  448. background-color: #f8f9fa;
  449. resize: vertical;
  450. line-height: 1.4;
  451. }
  452. .copy-curl-btn {
  453. align-self: flex-start;
  454. background-color: #4285f4;
  455. color: white;
  456. padding: 8px 16px;
  457. border-radius: 4px;
  458. font-size: 14px;
  459. font-weight: 500;
  460. transition: all 0.2s ease;
  461. }
  462. .copy-curl-btn:hover {
  463. background-color: #3367d6;
  464. transform: translateY(-1px);
  465. box-shadow: 0 2px 6px rgba(66, 133, 244, 0.3);
  466. }
  467. .copy-curl-btn:active {
  468. background-color: #2d5aa0;
  469. transform: translateY(0);
  470. box-shadow: 0 1px 3px rgba(66, 133, 244, 0.4);
  471. transition: all 0.1s ease;
  472. }
  473. .copy-curl-btn:disabled {
  474. background-color: #ccc;
  475. color: #888;
  476. cursor: not-allowed;
  477. transform: none;
  478. box-shadow: none;
  479. }
  480. .copy-curl-btn:disabled:hover {
  481. background-color: #ccc;
  482. transform: none;
  483. box-shadow: none;
  484. }
  485. .interval-section {
  486. display: flex;
  487. flex-direction: column;
  488. gap: 8px;
  489. }
  490. .interval-label {
  491. font-size: 14px;
  492. font-weight: 500;
  493. color: #333;
  494. }
  495. .interval-input {
  496. width: 100px;
  497. padding: 8px 12px;
  498. border: 1px solid #ddd;
  499. border-radius: 6px;
  500. font-size: 14px;
  501. font-family: inherit;
  502. background-color: #fff;
  503. transition: border-color 0.2s ease, box-shadow 0.2s ease;
  504. }
  505. .interval-input:focus {
  506. outline: none;
  507. border-color: #4285f4;
  508. box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
  509. }
  510. .interval-input:invalid {
  511. border-color: #f44336;
  512. }
  513. .category-section h3 {
  514. margin-bottom: 12px;
  515. color: #333;
  516. font-size: 16px;
  517. font-weight: 500;
  518. }
  519. .category-buttons {
  520. display: flex;
  521. gap: 8px;
  522. flex-wrap: wrap;
  523. }
  524. .category-btn {
  525. padding: 8px 16px;
  526. border: 2px solid #ddd;
  527. border-radius: 6px;
  528. background-color: #f8f9fa;
  529. color: #666;
  530. font-size: 14px;
  531. font-weight: 500;
  532. cursor: pointer;
  533. transition: all 0.2s ease;
  534. }
  535. .category-btn:hover {
  536. border-color: #4285f4;
  537. background-color: #e8f0fe;
  538. color: #4285f4;
  539. }
  540. .category-btn.active {
  541. border-color: #4285f4;
  542. background-color: #4285f4;
  543. color: white;
  544. }
  545. .category-btn.active:hover {
  546. border-color: #3367d6;
  547. background-color: #3367d6;
  548. }
  549. .save-channel-notice {
  550. background-color: #fff3cd;
  551. border: 1px solid #ffeaa7;
  552. border-radius: 6px;
  553. padding: 12px;
  554. color: #856404;
  555. font-size: 14px;
  556. }
  557. .save-channel-notice p {
  558. margin: 0;
  559. }
  560. /* Save Channel button styles */
  561. .save-channel-btn {
  562. background-color: #ff6d01;
  563. color: white;
  564. padding: 8px 12px;
  565. border-radius: 4px;
  566. font-size: 14px;
  567. font-weight: 500;
  568. }
  569. .save-channel-btn:hover {
  570. background-color: #e55a00;
  571. }
  572. /* Wiki/Insp view styles */
  573. .wiki-insp-container {
  574. background: #fff;
  575. border-radius: 8px;
  576. padding: 16px;
  577. margin-bottom: 16px;
  578. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  579. min-height: 300px;
  580. }
  581. .wiki-insp-content {
  582. display: flex;
  583. flex-direction: column;
  584. gap: 20px;
  585. }
  586. .wikitext-command-section {
  587. display: flex;
  588. flex-direction: column;
  589. gap: 12px;
  590. }
  591. .wikitext-command-field {
  592. width: 100%;
  593. min-height: 120px;
  594. padding: 12px;
  595. border: 1px solid #ddd;
  596. border-radius: 6px;
  597. font-family: monospace;
  598. font-size: 12px;
  599. background-color: #f8f9fa;
  600. resize: vertical;
  601. line-height: 1.4;
  602. }
  603. .timestamp-controls {
  604. display: flex;
  605. align-items: center;
  606. justify-content: space-between;
  607. gap: 12px;
  608. padding: 8px 0;
  609. }
  610. .timestamp-checkbox-container {
  611. display: flex;
  612. align-items: center;
  613. }
  614. .timestamp-checkbox-label {
  615. display: flex;
  616. align-items: center;
  617. gap: 8px;
  618. font-size: 14px;
  619. color: #333;
  620. cursor: pointer;
  621. user-select: none;
  622. }
  623. .timestamp-checkbox {
  624. width: 16px;
  625. height: 16px;
  626. cursor: pointer;
  627. accent-color: #4285f4;
  628. }
  629. .refresh-timestamp-btn {
  630. background-color: #34a853;
  631. color: white;
  632. padding: 6px 12px;
  633. border-radius: 4px;
  634. font-size: 12px;
  635. font-weight: 500;
  636. transition: all 0.2s ease;
  637. white-space: nowrap;
  638. }
  639. .refresh-timestamp-btn:hover:not(:disabled) {
  640. background-color: #2d7d3a;
  641. transform: translateY(-1px);
  642. box-shadow: 0 2px 6px rgba(52, 168, 83, 0.3);
  643. }
  644. .refresh-timestamp-btn:active {
  645. background-color: #1e5f2a;
  646. transform: translateY(0);
  647. box-shadow: 0 1px 3px rgba(52, 168, 83, 0.4);
  648. transition: all 0.1s ease;
  649. }
  650. .refresh-timestamp-btn:disabled {
  651. background-color: #ccc;
  652. color: #888;
  653. cursor: not-allowed;
  654. transform: none;
  655. box-shadow: none;
  656. }
  657. .refresh-timestamp-btn:disabled:hover {
  658. background-color: #ccc;
  659. transform: none;
  660. box-shadow: none;
  661. }
  662. .copy-wikitext-btn {
  663. width: 100%;
  664. background-color: #4285f4;
  665. color: white;
  666. padding: 10px 16px;
  667. border-radius: 6px;
  668. font-size: 14px;
  669. font-weight: 500;
  670. transition: all 0.2s ease;
  671. }
  672. .copy-wikitext-btn:hover:not(:disabled) {
  673. background-color: #3367d6;
  674. transform: translateY(-1px);
  675. box-shadow: 0 2px 8px rgba(66, 133, 244, 0.3);
  676. }
  677. .copy-wikitext-btn:active {
  678. background-color: #2d5aa0;
  679. transform: translateY(0);
  680. box-shadow: 0 1px 3px rgba(66, 133, 244, 0.4);
  681. transition: all 0.1s ease;
  682. }
  683. .copy-wikitext-btn:disabled {
  684. background-color: #ccc;
  685. color: #888;
  686. cursor: not-allowed;
  687. transform: none;
  688. box-shadow: none;
  689. }
  690. .copy-wikitext-btn:disabled:hover {
  691. background-color: #ccc;
  692. transform: none;
  693. box-shadow: none;
  694. }
  695. .wiki-insp-notice {
  696. background-color: #fff3cd;
  697. border: 1px solid #ffeaa7;
  698. border-radius: 6px;
  699. padding: 12px;
  700. color: #856404;
  701. font-size: 14px;
  702. }
  703. .wiki-insp-notice p {
  704. margin: 0;
  705. }
  706. /* Wiki/Insp button styles */
  707. .wiki-insp-btn {
  708. background-color: #9c27b0;
  709. color: white;
  710. padding: 8px 12px;
  711. border-radius: 4px;
  712. font-size: 14px;
  713. font-weight: 500;
  714. }
  715. .wiki-insp-btn:hover {
  716. background-color: #7b1fa2;
  717. }
  718. /* Import view styles */
  719. .import-container {
  720. background: #fff;
  721. border-radius: 8px;
  722. padding: 16px;
  723. margin-bottom: 16px;
  724. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  725. min-height: 300px;
  726. }
  727. .import-content {
  728. display: flex;
  729. flex-direction: column;
  730. gap: 20px;
  731. }
  732. .import-section {
  733. display: flex;
  734. flex-direction: column;
  735. gap: 12px;
  736. }
  737. .import-textarea {
  738. width: 100%;
  739. min-height: 450px;
  740. max-height: 500px;
  741. padding: 12px;
  742. border: 1px solid #ddd;
  743. border-radius: 6px;
  744. font-family: monospace;
  745. font-size: 12px;
  746. background-color: #f8f9fa;
  747. resize: vertical;
  748. line-height: 1.4;
  749. }
  750. .import-textarea:focus {
  751. outline: none;
  752. border-color: #4285f4;
  753. box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
  754. }
  755. .import-submit-btn {
  756. width: 100%;
  757. background-color: #34a853;
  758. color: white;
  759. padding: 10px 16px;
  760. border-radius: 6px;
  761. font-size: 14px;
  762. font-weight: 500;
  763. transition: all 0.2s ease;
  764. }
  765. .import-submit-btn:hover {
  766. background-color: #2d7d3a;
  767. transform: translateY(-1px);
  768. box-shadow: 0 2px 8px rgba(52, 168, 83, 0.3);
  769. }
  770. .import-submit-btn:active {
  771. background-color: #1e5f2a;
  772. transform: translateY(0);
  773. box-shadow: 0 1px 3px rgba(52, 168, 83, 0.4);
  774. transition: all 0.1s ease;
  775. }
  776. /* Import button styles */
  777. .import-btn {
  778. background-color: #34a853;
  779. color: white;
  780. padding: 8px 12px;
  781. border-radius: 4px;
  782. font-size: 14px;
  783. font-weight: 500;
  784. }
  785. .import-btn:hover {
  786. background-color: #2d7d3a;
  787. }
  788. /* Export button styles */
  789. .export-btn {
  790. background-color: #4285f4;
  791. color: white;
  792. padding: 8px 12px;
  793. border-radius: 4px;
  794. font-size: 14px;
  795. font-weight: 500;
  796. }
  797. .export-btn:hover {
  798. background-color: #3367d6;
  799. }
  800. .export-container {
  801. display: flex;
  802. flex-wrap: wrap;
  803. row-gap: 6px;
  804. column-gap: 4px;
  805. margin-bottom: 12px;
  806. }
  807. .move-to-playlist-item {
  808. color: #555;
  809. }
  810. .move-to-submenu {
  811. border-top: 1px solid #eee;
  812. }
  813. .move-to-playlist-option {
  814. padding-left: 20px;
  815. color: #4285f4;
  816. }
  817. .move-to-playlist-option:hover {
  818. background-color: #e8f0fe;
  819. }