App.vue 23 KB

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