App.vue 23 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340
  1. <template>
  2. <div class="upper-container">
  3. <banned v-if="banned" />
  4. <div v-else class="upper-container">
  5. <router-view
  6. :key="$route.fullPath"
  7. class="main-container"
  8. :class="{ 'main-container-modal-active': aModalIsOpen2 }"
  9. />
  10. <what-is-new v-show="modals.whatIsNew" />
  11. <login-modal v-if="modals.login" />
  12. <register-modal v-if="modals.register" />
  13. <create-playlist-modal v-if="modals.createPlaylist" />
  14. </div>
  15. </div>
  16. </template>
  17. <script>
  18. import { mapState, mapActions, mapGetters } from "vuex";
  19. import Toast from "toasters";
  20. import { defineAsyncComponent } from "vue";
  21. import ws from "./ws";
  22. import aw from "./aw";
  23. import keyboardShortcuts from "./keyboardShortcuts";
  24. export default {
  25. components: {
  26. WhatIsNew: defineAsyncComponent(() =>
  27. import("@/components/modals/WhatIsNew.vue")
  28. ),
  29. LoginModal: defineAsyncComponent(() =>
  30. import("@/components/modals/Login.vue")
  31. ),
  32. RegisterModal: defineAsyncComponent(() =>
  33. import("@/components/modals/Register.vue")
  34. ),
  35. CreatePlaylistModal: defineAsyncComponent(() =>
  36. import("@/components/modals/CreatePlaylist.vue")
  37. ),
  38. Banned: defineAsyncComponent(() => import("@/pages/Banned.vue"))
  39. },
  40. replace: false,
  41. data() {
  42. return {
  43. apiDomain: "",
  44. socketConnected: true,
  45. keyIsDown: false,
  46. scrollPosition: { y: 0, x: 0 },
  47. aModalIsOpen2: false
  48. };
  49. },
  50. computed: {
  51. ...mapState({
  52. loggedIn: state => state.user.auth.loggedIn,
  53. role: state => state.user.auth.role,
  54. username: state => state.user.auth.username,
  55. userId: state => state.user.auth.userId,
  56. banned: state => state.user.auth.banned,
  57. modals: state => state.modalVisibility.modals,
  58. currentlyActive: state => state.modalVisibility.currentlyActive,
  59. nightmode: state => state.user.preferences.nightmode,
  60. activityWatch: state => state.user.preferences.activityWatch
  61. }),
  62. ...mapGetters({
  63. socket: "websockets/getSocket"
  64. }),
  65. aModalIsOpen() {
  66. return Object.keys(this.currentlyActive).length > 0;
  67. }
  68. },
  69. watch: {
  70. socketConnected(connected) {
  71. if (!connected) this.disconnectedMessage.show();
  72. else this.disconnectedMessage.hide();
  73. },
  74. nightmode(nightmode) {
  75. if (nightmode) this.enableNightmode();
  76. else this.disableNightmode();
  77. },
  78. activityWatch(activityWatch) {
  79. if (activityWatch) aw.enable();
  80. else aw.disable();
  81. },
  82. aModalIsOpen(aModalIsOpen) {
  83. if (aModalIsOpen) {
  84. this.scrollPosition = {
  85. x: window.scrollX,
  86. y: window.scrollY
  87. };
  88. this.aModalIsOpen2 = true;
  89. } else {
  90. this.aModalIsOpen2 = false;
  91. setTimeout(() => {
  92. window.scrollTo(
  93. this.scrollPosition.x,
  94. this.scrollPosition.y
  95. );
  96. }, 10);
  97. }
  98. }
  99. },
  100. async mounted() {
  101. window
  102. .matchMedia("(prefers-color-scheme: dark)")
  103. .addEventListener("change", e => {
  104. if (e.matches === !this.nightmode) this.toggleNightMode();
  105. });
  106. document.onkeydown = ev => {
  107. const event = ev || window.event;
  108. const { keyCode } = event;
  109. const shift = event.shiftKey;
  110. const ctrl = event.ctrlKey;
  111. const alt = event.altKey;
  112. const identifier = `${keyCode}.${shift}.${ctrl}`;
  113. if (this.keyIsDown === identifier) return;
  114. this.keyIsDown = identifier;
  115. keyboardShortcuts.handleKeyDown(event, keyCode, shift, ctrl, alt);
  116. };
  117. document.onkeyup = () => {
  118. this.keyIsDown = "";
  119. };
  120. // ctrl + alt + n
  121. keyboardShortcuts.registerShortcut("nightmode", {
  122. keyCode: 78,
  123. ctrl: true,
  124. alt: true,
  125. handler: () => this.toggleNightMode()
  126. });
  127. keyboardShortcuts.registerShortcut("closeModal", {
  128. keyCode: 27,
  129. shift: false,
  130. ctrl: false,
  131. handler: () => {
  132. if (Object.keys(this.currentlyActive).length !== 0)
  133. this.closeCurrentModal();
  134. }
  135. });
  136. this.disconnectedMessage = new Toast({
  137. content: "Could not connect to the server.",
  138. persistent: true,
  139. interactable: false
  140. });
  141. this.disconnectedMessage.hide();
  142. ws.onConnect(() => {
  143. this.socketConnected = true;
  144. this.socket.dispatch("users.getPreferences", res => {
  145. if (res.status === "success") {
  146. const { preferences } = res.data;
  147. this.changeAutoSkipDisliked(preferences.autoSkipDisliked);
  148. this.changeNightmode(preferences.nightmode);
  149. this.changeActivityLogPublic(preferences.activityLogPublic);
  150. this.changeAnonymousSongRequests(
  151. preferences.anonymousSongRequests
  152. );
  153. this.changeActivityWatch(preferences.activityWatch);
  154. if (this.nightmode) this.enableNightmode();
  155. else this.disableNightmode();
  156. }
  157. });
  158. this.socket.on("keep.event:user.session.deleted", () =>
  159. window.location.reload()
  160. );
  161. });
  162. ws.onDisconnect(true, () => {
  163. this.socketConnected = false;
  164. });
  165. this.apiDomain = await lofig.get("apiDomain");
  166. this.$router.isReady().then(() => {
  167. if (this.$route.query.err) {
  168. let { err } = this.$route.query;
  169. err = err
  170. .replace(new RegExp("<", "g"), "&lt;")
  171. .replace(new RegExp(">", "g"), "&gt;");
  172. this.$router.push({ query: {} });
  173. new Toast({ content: err, timeout: 20000 });
  174. }
  175. if (this.$route.query.msg) {
  176. let { msg } = this.$route.query;
  177. msg = msg
  178. .replace(new RegExp("<", "g"), "&lt;")
  179. .replace(new RegExp(">", "g"), "&gt;");
  180. this.$router.push({ query: {} });
  181. new Toast({ content: msg, timeout: 20000 });
  182. }
  183. if (localStorage.getItem("github_redirect")) {
  184. this.$router.push(localStorage.getItem("github_redirect"));
  185. localStorage.removeItem("github_redirect");
  186. }
  187. });
  188. if (localStorage.getItem("nightmode") === "true") {
  189. this.changeNightmode(true);
  190. this.enableNightmode();
  191. }
  192. },
  193. methods: {
  194. toggleNightMode() {
  195. localStorage.setItem("nightmode", !this.nightmode);
  196. if (this.loggedIn) {
  197. this.socket.dispatch(
  198. "users.updatePreferences",
  199. { nightmode: !this.nightmode },
  200. res => {
  201. if (res.status !== "success") new Toast(res.message);
  202. }
  203. );
  204. }
  205. this.changeNightmode(!this.nightmode);
  206. },
  207. enableNightmode: () => {
  208. document
  209. .getElementsByTagName("body")[0]
  210. .classList.add("night-mode");
  211. },
  212. disableNightmode: () => {
  213. document
  214. .getElementsByTagName("body")[0]
  215. .classList.remove("night-mode");
  216. },
  217. ...mapActions("modalVisibility", ["closeCurrentModal"]),
  218. ...mapActions("user/preferences", [
  219. "changeNightmode",
  220. "changeAutoSkipDisliked",
  221. "changeActivityLogPublic",
  222. "changeAnonymousSongRequests",
  223. "changeActivityWatch"
  224. ])
  225. }
  226. };
  227. </script>
  228. <style lang="scss">
  229. @import "tippy.js/dist/tippy.css";
  230. @import "tippy.js/animations/scale.css";
  231. :root {
  232. --primary-color: var(--blue);
  233. --blue: rgb(2, 166, 242);
  234. --light-blue: rgb(163, 224, 255);
  235. --dark-blue: rgb(0, 102, 244);
  236. --teal: rgb(0, 209, 178);
  237. --purple: rgb(143, 40, 140);
  238. --light-purple: rgb(170, 141, 216);
  239. --yellow: rgb(241, 196, 15);
  240. --light-pink: rgb(228, 155, 166);
  241. --dark-pink: rgb(234, 72, 97);
  242. --orange: rgb(255, 94, 0);
  243. --dark-orange: rgb(250, 50, 0);
  244. --green: rgb(68, 189, 50);
  245. --red: rgb(231, 77, 60);
  246. --white: rgb(255, 255, 255);
  247. --black: rgb(0, 0, 0);
  248. --light-grey: rgb(245, 245, 245);
  249. --light-grey-2: rgb(221, 221, 221);
  250. --light-grey-3: rgb(195, 193, 195);
  251. --grey: rgb(107, 107, 107);
  252. --grey-2: rgb(113, 113, 113);
  253. --grey-3: rgb(126, 126, 126);
  254. --dark-grey: rgb(77, 77, 77);
  255. --dark-grey-2: rgb(51, 51, 51);
  256. --dark-grey-3: rgb(34, 34, 34);
  257. --dark-grey-4: rgb(26, 26, 26);
  258. --youtube: rgb(189, 46, 46);
  259. }
  260. .night-mode {
  261. div {
  262. // background-color: var(--black);
  263. color: var(--light-grey-2);
  264. }
  265. // #toasts-container .toast {
  266. // color: var(--dark-grey-2);
  267. // background-color: var(--light-grey-3) !important;
  268. .input,
  269. .textarea,
  270. .select select {
  271. background-color: var(--dark-grey);
  272. border-color: var(--grey-3);
  273. color: var(--white);
  274. &::placeholder {
  275. color: var(--light-grey-3);
  276. }
  277. }
  278. // &:last-of-type {
  279. // background-color: var(--light-grey) !important;
  280. // }
  281. // }
  282. h1,
  283. h2,
  284. h3,
  285. h4,
  286. h5,
  287. h6 {
  288. color: var(--white) !important;
  289. }
  290. p:not(.help),
  291. label,
  292. .label {
  293. color: var(--light-grey-2) !important;
  294. }
  295. .section,
  296. .content {
  297. background-color: var(--dark-grey-3) !important;
  298. }
  299. .content-box,
  300. .step:not(.selected) {
  301. background-color: var(--dark-grey-3) !important;
  302. }
  303. .tippy-box[data-theme~="songActions"] {
  304. background-color: var(--dark-grey);
  305. }
  306. }
  307. body.night-mode {
  308. background-color: var(--black) !important;
  309. }
  310. #toasts-container {
  311. z-index: 10000 !important;
  312. .toast {
  313. font-weight: 600;
  314. // background-color: var(--dark-grey) !important;
  315. // &:last-of-type {
  316. // background-color: var(--dark-grey-2) !important;
  317. // }
  318. }
  319. }
  320. html {
  321. overflow: auto !important;
  322. height: 100%;
  323. }
  324. body {
  325. background-color: var(--light-grey);
  326. color: var(--dark-grey);
  327. height: 100%;
  328. font-family: "Inter", Helvetica, Arial, sans-serif;
  329. }
  330. h1,
  331. h2,
  332. h3,
  333. h4,
  334. h5,
  335. h6,
  336. .sidebar-title {
  337. font-family: "Inter", Helvetica, Arial, sans-serif;
  338. }
  339. .modal-card-title {
  340. font-weight: 600;
  341. font-family: "Inter", Helvetica, Arial, sans-serif;
  342. }
  343. p,
  344. button,
  345. input,
  346. select,
  347. textarea {
  348. font-family: "Inter", Helvetica, Arial, sans-serif;
  349. }
  350. #page-title {
  351. margin-top: 0;
  352. font-size: 35px;
  353. text-align: center;
  354. }
  355. @media only screen and (min-width: 700px) {
  356. #page-title {
  357. margin: 0;
  358. margin-bottom: 30px;
  359. font-size: 40px;
  360. }
  361. }
  362. .upper-container {
  363. height: 100%;
  364. }
  365. .main-container {
  366. height: 100%;
  367. min-height: 100vh;
  368. display: flex;
  369. flex-direction: column;
  370. > .container {
  371. flex: 1 0 auto;
  372. }
  373. }
  374. .main-container.main-container-modal-active {
  375. height: 100% !important;
  376. overflow: hidden !important;
  377. }
  378. a {
  379. color: var(--primary-color);
  380. text-decoration: none;
  381. }
  382. .modal-card {
  383. margin: 0 !important;
  384. }
  385. .absolute-a {
  386. width: 100%;
  387. height: 100%;
  388. position: absolute;
  389. top: 0;
  390. left: 0;
  391. }
  392. .alert {
  393. padding: 20px;
  394. color: var(--white);
  395. background-color: var(--red);
  396. position: fixed;
  397. top: 50px;
  398. right: 50px;
  399. font-size: 2em;
  400. border-radius: 5px;
  401. z-index: 10000000;
  402. }
  403. .night-mode {
  404. .tippy-box {
  405. border: 1px solid var(--light-grey-3);
  406. box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25),
  407. 0 10px 10px rgba(0, 0, 0, 0.22);
  408. background-color: var(--white);
  409. &:not([data-theme~="songActions"]) > .tippy-arrow::before {
  410. border-top-color: var(--white);
  411. }
  412. .tippy-content {
  413. color: var(--black);
  414. }
  415. &[data-theme~="songActions"],
  416. &[data-theme~="addToPlaylist"],
  417. &[data-theme~="stationSettings"] {
  418. background-color: var(--dark-grey-2);
  419. border: 0 !important;
  420. }
  421. &[data-theme~="songActions"] {
  422. background-color: var(--dark-grey-2);
  423. border: 0 !important;
  424. i,
  425. a {
  426. color: var(--white);
  427. }
  428. .youtube-icon {
  429. background-color: var(--white);
  430. }
  431. }
  432. &[data-theme~="addToPlaylist"] {
  433. background-color: var(--dark-grey-2);
  434. border: 0 !important;
  435. .nav-dropdown-items {
  436. .nav-item {
  437. background-color: var(--dark-grey);
  438. &:focus {
  439. outline-color: var(--dark-grey);
  440. }
  441. p {
  442. color: var(--white);
  443. }
  444. }
  445. }
  446. }
  447. }
  448. .tippy-box[data-placement^="top"] {
  449. &[data-theme~="songActions"],
  450. &[data-theme~="addToPlaylist"] {
  451. > .tippy-arrow::before {
  452. border-top-color: var(--dark-grey-2);
  453. }
  454. }
  455. }
  456. .tippy-box[data-placement^="bottom"] {
  457. &[data-theme~="songActions"],
  458. &[data-theme~="addToPlaylist"],
  459. &[data-theme~="stationSettings"] {
  460. > .tippy-arrow::before {
  461. border-bottom-color: var(--dark-grey-2);
  462. }
  463. }
  464. }
  465. .tippy-box[data-placement^="left"] {
  466. &[data-theme~="songActions"],
  467. &[data-theme~="addToPlaylist"] {
  468. > .tippy-arrow::before {
  469. border-left-color: var(--dark-grey-2);
  470. }
  471. }
  472. }
  473. .tippy-box[data-placement^="right"] {
  474. &[data-theme~="songActions"],
  475. &[data-theme~="addToPlaylist"] {
  476. > .tippy-arrow::before {
  477. border-right-color: var(--dark-grey-2);
  478. }
  479. }
  480. }
  481. }
  482. .tippy-box[data-theme~="info"] {
  483. font-size: 12px;
  484. letter-spacing: 1px;
  485. }
  486. .tippy-box[data-theme~="confirm"] {
  487. background-color: var(--red);
  488. border: 0;
  489. .tippy-content {
  490. padding: 0;
  491. }
  492. a {
  493. padding: 15px;
  494. line-height: 30px;
  495. color: var(--white);
  496. border-bottom: 0;
  497. font-size: 15px;
  498. font-weight: 600;
  499. &:hover,
  500. &:focus {
  501. filter: brightness(90%);
  502. }
  503. }
  504. }
  505. .tippy-box[data-theme~="songActions"] {
  506. font-size: 15px;
  507. padding: 5px 10px;
  508. border: 1px solid var(--light-grey-3);
  509. box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  510. background-color: var(--white);
  511. .button {
  512. width: 146px;
  513. }
  514. i,
  515. a {
  516. display: inline-block;
  517. cursor: pointer;
  518. color: var(--dark-grey);
  519. vertical-align: middle;
  520. &:hover,
  521. &:focus {
  522. filter: brightness(90%);
  523. }
  524. &:not(:first) {
  525. margin-left: 5px;
  526. }
  527. }
  528. .play-icon,
  529. .added-to-playlist-icon {
  530. color: var(--green);
  531. }
  532. .edit-icon,
  533. .view-icon,
  534. .add-to-playlist-icon,
  535. .add-to-queue-icon {
  536. color: var(--primary-color);
  537. }
  538. .hide-icon {
  539. color: var(--light-grey-3);
  540. }
  541. .stop-icon,
  542. .delete-icon {
  543. color: var(--red);
  544. }
  545. .report-icon {
  546. color: var(--yellow);
  547. }
  548. }
  549. .tippy-box[data-placement^="top"] {
  550. &[data-theme~="songActions"],
  551. &[data-theme~="addToPlaylist"] {
  552. > .tippy-arrow::before {
  553. border-top-color: var(--white);
  554. }
  555. }
  556. &[data-theme~="confirm"] > .tippy-arrow::before {
  557. border-top-color: var(--red);
  558. }
  559. }
  560. .tippy-box[data-placement^="bottom"] {
  561. &[data-theme~="songActions"],
  562. &[data-theme~="addToPlaylist"],
  563. &[data-theme~="stationSettings"] {
  564. > .tippy-arrow::before {
  565. border-bottom-color: var(--white);
  566. }
  567. }
  568. &[data-theme~="confirm"] > .tippy-arrow::before {
  569. border-bottom-color: var(--red);
  570. }
  571. }
  572. .tippy-box[data-placement^="left"] {
  573. &[data-theme~="songActions"],
  574. &[data-theme~="addToPlaylist"] {
  575. > .tippy-arrow::before {
  576. border-left-color: var(--white);
  577. }
  578. }
  579. &[data-theme~="confirm"] > .tippy-arrow::before {
  580. border-left-color: var(--red);
  581. }
  582. }
  583. .tippy-box[data-placement^="right"] {
  584. &[data-theme~="songActions"],
  585. &[data-theme~="addToPlaylist"] {
  586. > .tippy-arrow::before {
  587. border-right-color: var(--white);
  588. }
  589. }
  590. &[data-theme~="confirm"] > .tippy-arrow::before {
  591. border-right-color: var(--red);
  592. }
  593. }
  594. .tippy-box[data-theme~="stationSettings"] {
  595. border: 1px solid var(--light-grey-3);
  596. box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  597. background-color: var(--white);
  598. button:not(:last-of-type) {
  599. margin-bottom: 5px;
  600. }
  601. }
  602. .tippy-box[data-theme~="addToPlaylist"] {
  603. font-size: 15px;
  604. padding: 5px;
  605. border: 1px solid var(--light-grey-3);
  606. box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  607. background-color: var(--white);
  608. color: var(--dark-grey);
  609. width: 100%;
  610. .nav-dropdown-items {
  611. .nav-item {
  612. width: 100%;
  613. justify-content: flex-start;
  614. border: 0;
  615. padding: 10px;
  616. font-size: 15.5px;
  617. min-height: 36px;
  618. background: var(--light-grey);
  619. border-radius: 5px;
  620. cursor: pointer;
  621. .checkbox-control {
  622. display: flex;
  623. flex-direction: row;
  624. align-items: center;
  625. overflow-wrap: anywhere;
  626. p {
  627. margin-left: 10px;
  628. }
  629. .switch {
  630. position: relative;
  631. display: inline-block;
  632. flex-shrink: 0;
  633. width: 40px;
  634. height: 24px;
  635. }
  636. .switch input {
  637. opacity: 0;
  638. width: 0;
  639. height: 0;
  640. }
  641. .slider {
  642. width: 100%;
  643. position: absolute;
  644. cursor: pointer;
  645. top: 0;
  646. left: 0;
  647. right: 0;
  648. bottom: 0;
  649. background-color: #ccc;
  650. transition: 0.2s;
  651. border-radius: 34px;
  652. }
  653. .slider:before {
  654. position: absolute;
  655. content: "";
  656. height: 16px;
  657. width: 16px;
  658. left: 4px;
  659. bottom: 4px;
  660. background-color: white;
  661. transition: 0.2s;
  662. border-radius: 50%;
  663. }
  664. input:checked + .slider {
  665. background-color: var(--primary-color);
  666. }
  667. input:focus + .slider {
  668. box-shadow: 0 0 1px var(--primary-color);
  669. }
  670. input:checked + .slider:before {
  671. transform: translateX(16px);
  672. }
  673. }
  674. &:focus {
  675. outline-color: var(--light-grey-3);
  676. }
  677. &:not(:last-of-type) {
  678. margin-bottom: 5px;
  679. }
  680. }
  681. }
  682. .tippy-content > span {
  683. display: flex;
  684. flex-direction: column;
  685. button {
  686. width: 100%;
  687. &:not(:last-of-type) {
  688. margin-bottom: 10px;
  689. }
  690. }
  691. }
  692. }
  693. .select {
  694. &:after {
  695. border-color: var(--primary-color);
  696. border-width: 1.5px;
  697. margin-top: -3px;
  698. }
  699. select {
  700. height: 36px;
  701. }
  702. }
  703. .button:focus,
  704. .button:active {
  705. border-color: var(--light-grey-2) !important;
  706. }
  707. .input:focus,
  708. .input:active,
  709. .textarea:focus,
  710. .textarea:active,
  711. .select select:focus,
  712. .select select:active {
  713. border-color: var(--primary-color) !important;
  714. }
  715. button.delete:focus {
  716. background-color: rgba(10, 10, 10, 0.3);
  717. }
  718. .tag {
  719. padding-right: 6px !important;
  720. }
  721. .button {
  722. &:hover,
  723. &:focus {
  724. filter: brightness(95%);
  725. }
  726. &.is-success {
  727. background-color: var(--green) !important;
  728. }
  729. &.is-primary {
  730. background-color: var(--primary-color) !important;
  731. }
  732. &.is-danger {
  733. background-color: var(--red) !important;
  734. }
  735. &.is-info {
  736. background-color: var(--primary-color) !important;
  737. }
  738. &.is-warning {
  739. background-color: var(--yellow) !important;
  740. }
  741. }
  742. .input,
  743. .button {
  744. height: 36px;
  745. }
  746. .fadein-helpbox-enter-active {
  747. transition-duration: 0.3s;
  748. transition-timing-function: ease-in;
  749. }
  750. .fadein-helpbox-leave-active {
  751. transition-duration: 0.3s;
  752. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  753. }
  754. .fadein-helpbox-enter-to,
  755. .fadein-helpbox-leave {
  756. max-height: 100px;
  757. overflow: hidden;
  758. }
  759. .fadein-helpbox-enter,
  760. .fadein-helpbox-leave-to {
  761. overflow: hidden;
  762. max-height: 0;
  763. }
  764. .control {
  765. margin-bottom: 5px !important;
  766. }
  767. .input-with-button {
  768. .control {
  769. margin-right: 0px !important;
  770. }
  771. input,
  772. select {
  773. width: 100%;
  774. height: 36px;
  775. border-radius: 3px 0 0 3px;
  776. border-right: 0;
  777. border-color: var(--light-grey-3);
  778. }
  779. .button {
  780. height: 36px;
  781. border-radius: 0 3px 3px 0;
  782. }
  783. }
  784. .page-title {
  785. margin: 0 0 50px 0;
  786. }
  787. .material-icons {
  788. user-select: none;
  789. -webkit-user-select: none;
  790. }
  791. .icon-with-button {
  792. margin-right: 3px;
  793. font-size: 18px;
  794. }
  795. .verified-song {
  796. font-size: 17px;
  797. color: var(--primary-color);
  798. }
  799. .section-title,
  800. h4.section-title {
  801. font-size: 26px;
  802. font-weight: 600;
  803. margin: 0px;
  804. }
  805. .section-description {
  806. font-size: 16px;
  807. font-weight: 400;
  808. margin-bottom: 10px !important;
  809. }
  810. .section-horizontal-rule {
  811. margin: 15px 0 30px 0;
  812. }
  813. .section-margin-bottom {
  814. height: 30px;
  815. }
  816. .margin-top-zero {
  817. margin-top: 0 !important;
  818. }
  819. .margin-bottom-zero {
  820. margin-bottom: 0 !important;
  821. }
  822. /** Universial items e.g. playlist items, queue items, activity items */
  823. .item-draggable {
  824. cursor: move;
  825. }
  826. .universal-item {
  827. display: flex;
  828. flex-direction: row;
  829. flex-grow: 1;
  830. align-items: center;
  831. justify-content: space-between;
  832. padding: 7.5px;
  833. border: 1px solid var(--light-grey-3);
  834. border-radius: 3px;
  835. overflow: hidden;
  836. .item-thumbnail {
  837. width: 65px;
  838. height: 65px;
  839. margin: -7.5px;
  840. border-radius: 3px 0 0 3px;
  841. }
  842. .item-title {
  843. font-size: 20px;
  844. overflow: hidden;
  845. text-overflow: ellipsis;
  846. white-space: nowrap;
  847. }
  848. .item-description {
  849. font-size: 14px;
  850. overflow: hidden;
  851. text-overflow: ellipsis;
  852. white-space: nowrap;
  853. }
  854. .universal-item-actions {
  855. display: flex;
  856. flex-direction: row;
  857. margin-left: 10px;
  858. justify-content: center;
  859. @media screen and (max-width: 800px) {
  860. flex-wrap: wrap;
  861. }
  862. .action-dropdown-icon {
  863. display: flex;
  864. color: var(--primary-color);
  865. }
  866. .icons-group {
  867. display: flex;
  868. align-items: center;
  869. a {
  870. padding: 0;
  871. }
  872. }
  873. .button {
  874. width: 146px;
  875. }
  876. i,
  877. span {
  878. cursor: pointer;
  879. // color: var(--dark-grey);
  880. &:not(:first-child) {
  881. margin-left: 5px;
  882. }
  883. }
  884. .play-icon,
  885. .added-to-playlist-icon {
  886. color: var(--green);
  887. }
  888. .edit-icon,
  889. .view-icon,
  890. .add-to-playlist-icon,
  891. .add-to-queue-icon {
  892. color: var(--primary-color);
  893. }
  894. .hide-icon {
  895. color: var(--light-grey-3);
  896. }
  897. .stop-icon,
  898. .delete-icon {
  899. color: var(--red);
  900. }
  901. .report-icon {
  902. color: var(--yellow);
  903. }
  904. }
  905. }
  906. .save-button-mixin {
  907. min-width: 200px;
  908. &:disabled {
  909. background-color: var(--light-grey) !important;
  910. color: var(--black);
  911. }
  912. }
  913. .save-button-transition-enter-active {
  914. transition: all 0.1s ease;
  915. }
  916. .save-button-transition-enter {
  917. transform: translateX(20px);
  918. opacity: 0;
  919. }
  920. .youtube-icon {
  921. margin-right: 3px;
  922. height: 20px;
  923. width: 20px;
  924. -webkit-mask: url("/assets/social/youtube.svg") no-repeat center;
  925. mask: url("/assets/social/youtube.svg") no-repeat center;
  926. background-color: var(--youtube);
  927. }
  928. #forgot-password {
  929. display: flex;
  930. justify-content: flex-start;
  931. margin: 5px 0;
  932. }
  933. .steps-fade-enter-active,
  934. .steps-fade-leave-active {
  935. transition: all 0.3s ease;
  936. }
  937. .steps-fade-enter,
  938. .steps-fade-leave-to {
  939. opacity: 0;
  940. }
  941. .skip-step {
  942. background-color: var(--grey-3);
  943. color: var(--white);
  944. }
  945. #steps {
  946. display: flex;
  947. align-items: center;
  948. justify-content: center;
  949. height: 50px;
  950. margin-top: 36px;
  951. @media screen and (max-width: 300px) {
  952. display: none;
  953. }
  954. .step {
  955. display: flex;
  956. align-items: center;
  957. justify-content: center;
  958. border-radius: 100%;
  959. border: 1px solid var(--dark-grey);
  960. min-width: 50px;
  961. min-height: 50px;
  962. background-color: var(--white);
  963. font-size: 30px;
  964. cursor: pointer;
  965. &.selected {
  966. background-color: var(--primary-color);
  967. color: var(--white) !important;
  968. border: 0;
  969. }
  970. }
  971. .divider {
  972. display: flex;
  973. justify-content: center;
  974. width: 180px;
  975. height: 1px;
  976. background-color: var(--dark-grey);
  977. }
  978. }
  979. .content-box {
  980. margin-top: 90px;
  981. border-radius: 3px;
  982. background-color: var(--white);
  983. border: 1px solid var(--dark-grey);
  984. max-width: 580px;
  985. padding: 40px;
  986. @media screen and (max-width: 300px) {
  987. margin-top: 30px;
  988. padding: 30px 20px;
  989. }
  990. }
  991. .content-box-optional-helper {
  992. margin-top: 15px;
  993. color: var(--primary-color);
  994. text-decoration: underline;
  995. font-size: 16px;
  996. a {
  997. color: var(--primary-color);
  998. }
  999. }
  1000. .content-box-title {
  1001. font-size: 25px;
  1002. color: var(--black);
  1003. }
  1004. .content-box-description {
  1005. font-size: 14px;
  1006. color: var(--dark-grey);
  1007. }
  1008. .content-box-inputs {
  1009. margin-top: 35px;
  1010. .input-with-button {
  1011. .button {
  1012. width: 105px;
  1013. }
  1014. @media screen and (max-width: 450px) {
  1015. flex-direction: column;
  1016. }
  1017. }
  1018. label {
  1019. font-size: 11px;
  1020. }
  1021. #change-password-button {
  1022. margin-top: 36px;
  1023. width: 175px;
  1024. }
  1025. }
  1026. #password-visibility-container {
  1027. display: flex;
  1028. align-items: center;
  1029. a {
  1030. width: 0;
  1031. margin-left: -30px;
  1032. z-index: 0;
  1033. top: 2px;
  1034. position: relative;
  1035. color: var(--light-grey-1);
  1036. }
  1037. }
  1038. .news-item {
  1039. font-family: "Karla";
  1040. border-radius: 5px;
  1041. padding: 20px;
  1042. border: unset !important;
  1043. box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
  1044. * {
  1045. font-family: Karla, Arial, sans-serif;
  1046. font-size: 16px;
  1047. }
  1048. h1 {
  1049. font-size: 40px;
  1050. &:first-of-type {
  1051. margin-top: 0;
  1052. }
  1053. }
  1054. h2 {
  1055. font-size: 30px;
  1056. }
  1057. h3 {
  1058. font-size: 25px;
  1059. }
  1060. h4,
  1061. h5,
  1062. h6 {
  1063. font-size: 20px;
  1064. }
  1065. h1,
  1066. h2,
  1067. h3,
  1068. h4,
  1069. h5,
  1070. h6 {
  1071. margin: 10px 0;
  1072. }
  1073. ul {
  1074. list-style: unset;
  1075. }
  1076. li {
  1077. margin-left: 30px;
  1078. }
  1079. blockquote {
  1080. padding: 0px 15px;
  1081. color: #6a737d;
  1082. border-left: 0.25em solid #dfe2e5;
  1083. }
  1084. code {
  1085. font-style: italic;
  1086. }
  1087. }
  1088. .checkbox-control {
  1089. display: flex;
  1090. flex-direction: row;
  1091. align-items: center;
  1092. p {
  1093. margin-left: 10px;
  1094. }
  1095. .switch {
  1096. position: relative;
  1097. display: inline-block;
  1098. flex-shrink: 0;
  1099. width: 40px;
  1100. height: 24px;
  1101. }
  1102. .switch input {
  1103. opacity: 0;
  1104. width: 0;
  1105. height: 0;
  1106. }
  1107. .slider {
  1108. position: absolute;
  1109. cursor: pointer;
  1110. top: 0;
  1111. left: 0;
  1112. right: 0;
  1113. bottom: 0;
  1114. background-color: #ccc;
  1115. transition: 0.2s;
  1116. border-radius: 34px;
  1117. }
  1118. .slider:before {
  1119. position: absolute;
  1120. content: "";
  1121. height: 16px;
  1122. width: 16px;
  1123. left: 4px;
  1124. bottom: 4px;
  1125. background-color: white;
  1126. transition: 0.2s;
  1127. border-radius: 50%;
  1128. }
  1129. input:checked + .slider {
  1130. background-color: var(--primary-color);
  1131. }
  1132. input:focus + .slider {
  1133. box-shadow: 0 0 1px var(--primary-color);
  1134. }
  1135. input:checked + .slider:before {
  1136. transform: translateX(16px);
  1137. }
  1138. }
  1139. </style>