App.vue 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115
  1. <template>
  2. <div class="upper-container">
  3. <modal-manager />
  4. <banned v-if="banned" />
  5. <div v-else class="upper-container">
  6. <router-view
  7. :key="$route.fullPath"
  8. class="main-container"
  9. :class="{ 'main-container-modal-active': aModalIsOpen2 }"
  10. />
  11. </div>
  12. <falling-snow v-if="christmas" />
  13. </div>
  14. </template>
  15. <script>
  16. import { mapState, mapActions, mapGetters } from "vuex";
  17. import Toast from "toasters";
  18. import { defineAsyncComponent } from "vue";
  19. import ws from "./ws";
  20. import aw from "./aw";
  21. import keyboardShortcuts from "./keyboardShortcuts";
  22. export default {
  23. components: {
  24. ModalManager: defineAsyncComponent(() =>
  25. import("@/components/ModalManager.vue")
  26. ),
  27. Banned: defineAsyncComponent(() => import("@/pages/Banned.vue")),
  28. FallingSnow: defineAsyncComponent(() =>
  29. import("@/components/FallingSnow.vue")
  30. )
  31. },
  32. replace: false,
  33. data() {
  34. return {
  35. apiDomain: "",
  36. socketConnected: true,
  37. keyIsDown: false,
  38. scrollPosition: { y: 0, x: 0 },
  39. aModalIsOpen2: false,
  40. broadcastChannel: null,
  41. christmas: false
  42. };
  43. },
  44. computed: {
  45. ...mapState({
  46. loggedIn: state => state.user.auth.loggedIn,
  47. role: state => state.user.auth.role,
  48. username: state => state.user.auth.username,
  49. userId: state => state.user.auth.userId,
  50. banned: state => state.user.auth.banned,
  51. modals: state => state.modalVisibility.modals,
  52. currentlyActive: state => state.modalVisibility.currentlyActive,
  53. nightmode: state => state.user.preferences.nightmode,
  54. activityWatch: state => state.user.preferences.activityWatch
  55. }),
  56. ...mapGetters({
  57. socket: "websockets/getSocket"
  58. }),
  59. aModalIsOpen() {
  60. return Object.keys(this.currentlyActive).length > 0;
  61. }
  62. },
  63. watch: {
  64. socketConnected(connected) {
  65. if (!connected) this.disconnectedMessage.show();
  66. else this.disconnectedMessage.hide();
  67. },
  68. nightmode(nightmode) {
  69. if (nightmode) this.enableNightmode();
  70. else this.disableNightmode();
  71. },
  72. activityWatch(activityWatch) {
  73. if (activityWatch) aw.enable();
  74. else aw.disable();
  75. },
  76. aModalIsOpen(aModalIsOpen) {
  77. if (aModalIsOpen) {
  78. this.scrollPosition = {
  79. x: window.scrollX,
  80. y: window.scrollY
  81. };
  82. this.aModalIsOpen2 = true;
  83. } else {
  84. this.aModalIsOpen2 = false;
  85. setTimeout(() => {
  86. window.scrollTo(
  87. this.scrollPosition.x,
  88. this.scrollPosition.y
  89. );
  90. }, 10);
  91. }
  92. }
  93. },
  94. async mounted() {
  95. window
  96. .matchMedia("(prefers-color-scheme: dark)")
  97. .addEventListener("change", e => {
  98. if (e.matches === !this.nightmode) this.toggleNightMode();
  99. });
  100. if (!this.loggedIn) {
  101. lofig.get("cookie.SIDname").then(sid => {
  102. this.broadcastChannel = new BroadcastChannel(
  103. `${sid}.user_login`
  104. );
  105. this.broadcastChannel.onmessage = data => {
  106. if (data) {
  107. this.broadcastChannel.close();
  108. window.location.reload();
  109. }
  110. };
  111. });
  112. }
  113. document.onkeydown = ev => {
  114. const event = ev || window.event;
  115. const { keyCode } = event;
  116. const shift = event.shiftKey;
  117. const ctrl = event.ctrlKey;
  118. const alt = event.altKey;
  119. const identifier = `${keyCode}.${shift}.${ctrl}`;
  120. if (this.keyIsDown === identifier) return;
  121. this.keyIsDown = identifier;
  122. keyboardShortcuts.handleKeyDown(event, keyCode, shift, ctrl, alt);
  123. };
  124. document.onkeyup = () => {
  125. this.keyIsDown = "";
  126. };
  127. // ctrl + alt + n
  128. keyboardShortcuts.registerShortcut("nightmode", {
  129. keyCode: 78,
  130. ctrl: true,
  131. alt: true,
  132. handler: () => this.toggleNightMode()
  133. });
  134. keyboardShortcuts.registerShortcut("closeModal", {
  135. keyCode: 27,
  136. shift: false,
  137. ctrl: false,
  138. handler: () => {
  139. if (
  140. Object.keys(this.currentlyActive).length !== 0 &&
  141. this.currentlyActive[0] !== "editSong" &&
  142. this.currentlyActive[0] !== "editSongs"
  143. )
  144. this.closeCurrentModal();
  145. }
  146. });
  147. this.disconnectedMessage = new Toast({
  148. content: "Could not connect to the server.",
  149. persistent: true,
  150. interactable: false
  151. });
  152. this.disconnectedMessage.hide();
  153. ws.onConnect(() => {
  154. this.socketConnected = true;
  155. this.socket.dispatch("users.getPreferences", res => {
  156. if (res.status === "success") {
  157. const { preferences } = res.data;
  158. this.changeAutoSkipDisliked(preferences.autoSkipDisliked);
  159. this.changeNightmode(preferences.nightmode);
  160. this.changeActivityLogPublic(preferences.activityLogPublic);
  161. this.changeAnonymousSongRequests(
  162. preferences.anonymousSongRequests
  163. );
  164. this.changeActivityWatch(preferences.activityWatch);
  165. if (this.nightmode) this.enableNightmode();
  166. else this.disableNightmode();
  167. }
  168. });
  169. this.socket.on("keep.event:user.session.deleted", () =>
  170. window.location.reload()
  171. );
  172. const newUser = !localStorage.getItem("firstVisited");
  173. this.socket.dispatch("news.newest", newUser, res => {
  174. if (res.status !== "success") return;
  175. const { news } = res.data;
  176. if (news) {
  177. if (newUser) {
  178. this.openModal({ modal: "whatIsNew", data: { news } });
  179. } else if (localStorage.getItem("whatIsNew")) {
  180. if (
  181. parseInt(localStorage.getItem("whatIsNew")) <
  182. news.createdAt
  183. ) {
  184. this.openModal({
  185. modal: "whatIsNew",
  186. data: { news }
  187. });
  188. localStorage.setItem("whatIsNew", news.createdAt);
  189. }
  190. } else {
  191. if (
  192. parseInt(localStorage.getItem("firstVisited")) <
  193. news.createdAt
  194. )
  195. this.openModal({
  196. modal: "whatIsNew",
  197. data: { news }
  198. });
  199. localStorage.setItem("whatIsNew", news.createdAt);
  200. }
  201. }
  202. if (!localStorage.getItem("firstVisited"))
  203. localStorage.setItem("firstVisited", Date.now());
  204. });
  205. });
  206. ws.onDisconnect(true, () => {
  207. this.socketConnected = false;
  208. });
  209. this.apiDomain = await lofig.get("backend.apiDomain");
  210. this.$router.isReady().then(() => {
  211. if (this.$route.query.err) {
  212. let { err } = this.$route.query;
  213. err = err.replace(/</g, "&lt;").replace(/>/g, "&gt;");
  214. this.$router.push({ query: {} });
  215. new Toast({ content: err, timeout: 20000 });
  216. }
  217. if (this.$route.query.msg) {
  218. let { msg } = this.$route.query;
  219. msg = msg.replace(/</g, "&lt;").replace(/>/g, "&gt;");
  220. this.$router.push({ query: {} });
  221. new Toast({ content: msg, timeout: 20000 });
  222. }
  223. if (localStorage.getItem("github_redirect")) {
  224. this.$router.push(localStorage.getItem("github_redirect"));
  225. localStorage.removeItem("github_redirect");
  226. }
  227. });
  228. if (localStorage.getItem("nightmode") === "true") {
  229. this.changeNightmode(true);
  230. this.enableNightmode();
  231. }
  232. lofig.get("siteSettings.christmas").then(christmas => {
  233. if (christmas) {
  234. this.christmas = true;
  235. this.enableChristmasMode();
  236. }
  237. });
  238. },
  239. methods: {
  240. toggleNightMode() {
  241. localStorage.setItem("nightmode", !this.nightmode);
  242. if (this.loggedIn) {
  243. this.socket.dispatch(
  244. "users.updatePreferences",
  245. { nightmode: !this.nightmode },
  246. res => {
  247. if (res.status !== "success") new Toast(res.message);
  248. }
  249. );
  250. }
  251. this.changeNightmode(!this.nightmode);
  252. },
  253. enableNightmode: () => {
  254. document
  255. .getElementsByTagName("html")[0]
  256. .classList.add("night-mode");
  257. },
  258. disableNightmode: () => {
  259. document
  260. .getElementsByTagName("html")[0]
  261. .classList.remove("night-mode");
  262. },
  263. enableChristmasMode: () => {
  264. document
  265. .getElementsByTagName("html")[0]
  266. .classList.add("christmas-mode");
  267. },
  268. ...mapActions("modalVisibility", ["closeCurrentModal", "openModal"]),
  269. ...mapActions("user/preferences", [
  270. "changeNightmode",
  271. "changeAutoSkipDisliked",
  272. "changeActivityLogPublic",
  273. "changeAnonymousSongRequests",
  274. "changeActivityWatch"
  275. ])
  276. }
  277. };
  278. </script>
  279. <style lang="less">
  280. @import "normalize.css/normalize.css";
  281. @import "tippy.js/dist/tippy.css";
  282. @import "tippy.js/animations/scale.css";
  283. :root {
  284. --primary-color: var(--blue);
  285. --blue: rgb(2, 166, 242);
  286. --light-blue: rgb(163, 224, 255);
  287. --dark-blue: rgb(0, 102, 244);
  288. --teal: rgb(0, 209, 178);
  289. --purple: rgb(143, 40, 140);
  290. --light-purple: rgb(170, 141, 216);
  291. --yellow: rgb(241, 196, 15);
  292. --light-pink: rgb(228, 155, 166);
  293. --dark-pink: rgb(234, 72, 97);
  294. --orange: rgb(255, 94, 0);
  295. --dark-orange: rgb(250, 50, 0);
  296. --green: rgb(68, 189, 50);
  297. --red: rgb(231, 77, 60);
  298. --dark-red: rgb(235, 41, 19);
  299. --white: rgb(255, 255, 255);
  300. --black: rgb(0, 0, 0);
  301. --light-grey: rgb(245, 245, 245);
  302. --light-grey-2: rgb(221, 221, 221);
  303. --light-grey-3: rgb(195, 193, 195);
  304. --grey: rgb(107, 107, 107);
  305. --grey-2: rgb(113, 113, 113);
  306. --grey-3: rgb(126, 126, 126);
  307. --dark-grey: rgb(77, 77, 77);
  308. --dark-grey-2: rgb(51, 51, 51);
  309. --dark-grey-3: rgb(34, 34, 34);
  310. --dark-grey-4: rgb(26, 26, 26);
  311. --youtube: rgb(189, 46, 46);
  312. }
  313. .night-mode {
  314. body {
  315. background-color: var(--black) !important;
  316. }
  317. div {
  318. color: var(--light-grey-2);
  319. }
  320. .input,
  321. .textarea,
  322. .select select {
  323. background-color: var(--dark-grey);
  324. border-color: var(--grey-3);
  325. color: var(--white);
  326. &::placeholder {
  327. color: var(--light-grey-3);
  328. }
  329. }
  330. .control.has-addons .button {
  331. background-color: var(--dark-grey-2);
  332. border: 0;
  333. i {
  334. color: var(--white);
  335. }
  336. }
  337. h1,
  338. h2,
  339. h3,
  340. h4,
  341. h5,
  342. h6 {
  343. color: var(--white) !important;
  344. }
  345. p:not(.help),
  346. label,
  347. .label {
  348. color: var(--light-grey-2) !important;
  349. }
  350. .section,
  351. .content {
  352. background-color: var(--dark-grey-3) !important;
  353. }
  354. .content-box,
  355. .step:not(.selected) {
  356. background-color: var(--dark-grey-3) !important;
  357. }
  358. .tippy-box[data-theme~="songActions"] {
  359. background-color: var(--dark-grey);
  360. }
  361. code {
  362. background-color: var(--dark-grey-2) !important;
  363. }
  364. .button.is-dark {
  365. background-color: var(--light-grey) !important;
  366. color: var(--dark-grey-2) !important;
  367. }
  368. .checkbox input[type="checkbox"] {
  369. background-color: var(--dark-grey);
  370. border-color: transparent;
  371. &:checked:before,
  372. &:checked:after {
  373. background-color: var(--white);
  374. }
  375. }
  376. .pill {
  377. background-color: var(--dark-grey);
  378. color: var(--primary-color);
  379. }
  380. }
  381. .christmas-mode {
  382. --primary-color: var(--red);
  383. }
  384. /* inter-regular - latin */
  385. @font-face {
  386. font-family: "Inter";
  387. font-style: normal;
  388. font-weight: 400;
  389. src: url("/fonts/inter-v3-latin-regular.eot"); /* IE9 Compat Modes */
  390. src: local(""),
  391. url("/fonts/inter-v3-latin-regular.eot?#iefix")
  392. format("embedded-opentype"),
  393. /* IE6-IE8 */ url("/fonts/inter-v3-latin-regular.woff2") format("woff2"),
  394. /* Super Modern Browsers */ url("/fonts/inter-v3-latin-regular.woff")
  395. format("woff"),
  396. /* Modern Browsers */ url("/fonts/inter-v3-latin-regular.ttf")
  397. format("truetype"),
  398. /* Safari, Android, iOS */
  399. url("/fonts/inter-v3-latin-regular.svg#Inter") format("svg"); /* Legacy iOS */
  400. }
  401. /* inter-200 - latin */
  402. @font-face {
  403. font-family: "Inter";
  404. font-style: normal;
  405. font-weight: 200;
  406. src: url("/fonts/inter-v3-latin-200.eot"); /* IE9 Compat Modes */
  407. src: local(""),
  408. url("/fonts/inter-v3-latin-200.eot?#iefix") format("embedded-opentype"),
  409. /* IE6-IE8 */ url("/fonts/inter-v3-latin-200.woff2") format("woff2"),
  410. /* Super Modern Browsers */ url("/fonts/inter-v3-latin-200.woff")
  411. format("woff"),
  412. /* Modern Browsers */ url("/fonts/inter-v3-latin-200.ttf")
  413. format("truetype"),
  414. /* Safari, Android, iOS */ url("/fonts/inter-v3-latin-200.svg#Inter")
  415. format("svg"); /* Legacy iOS */
  416. }
  417. /* inter-800 - latin */
  418. @font-face {
  419. font-family: "Inter";
  420. font-style: normal;
  421. font-weight: 800;
  422. src: url("/fonts/inter-v3-latin-800.eot"); /* IE9 Compat Modes */
  423. src: local(""),
  424. url("/fonts/inter-v3-latin-800.eot?#iefix") format("embedded-opentype"),
  425. /* IE6-IE8 */ url("/fonts/inter-v3-latin-800.woff2") format("woff2"),
  426. /* Super Modern Browsers */ url("/fonts/inter-v3-latin-800.woff")
  427. format("woff"),
  428. /* Modern Browsers */ url("/fonts/inter-v3-latin-800.ttf")
  429. format("truetype"),
  430. /* Safari, Android, iOS */ url("/fonts/inter-v3-latin-800.svg#Inter")
  431. format("svg"); /* Legacy iOS */
  432. }
  433. /* inter-600 - latin */
  434. @font-face {
  435. font-family: "Inter";
  436. font-style: normal;
  437. font-weight: 600;
  438. src: url("/fonts/inter-v3-latin-600.eot"); /* IE9 Compat Modes */
  439. src: local(""),
  440. url("/fonts/inter-v3-latin-600.eot?#iefix") format("embedded-opentype"),
  441. /* IE6-IE8 */ url("/fonts/inter-v3-latin-600.woff2") format("woff2"),
  442. /* Super Modern Browsers */ url("/fonts/inter-v3-latin-600.woff")
  443. format("woff"),
  444. /* Modern Browsers */ url("/fonts/inter-v3-latin-600.ttf")
  445. format("truetype"),
  446. /* Safari, Android, iOS */ url("/fonts/inter-v3-latin-600.svg#Inter")
  447. format("svg"); /* Legacy iOS */
  448. }
  449. /* pacifico-regular - latin */
  450. @font-face {
  451. font-family: "Pacifico";
  452. font-style: normal;
  453. font-weight: 400;
  454. src: url("/fonts/pacifico-v17-latin-regular.eot"); /* IE9 Compat Modes */
  455. src: local(""),
  456. url("/fonts/pacifico-v17-latin-regular.eot?#iefix")
  457. format("embedded-opentype"),
  458. /* IE6-IE8 */ url("/fonts/pacifico-v17-latin-regular.woff2")
  459. format("woff2"),
  460. /* Super Modern Browsers */
  461. url("/fonts/pacifico-v17-latin-regular.woff") format("woff"),
  462. /* Modern Browsers */ url("/fonts/pacifico-v17-latin-regular.ttf")
  463. format("truetype"),
  464. /* Safari, Android, iOS */
  465. url("/fonts/pacifico-v17-latin-regular.svg#Pacifico") format("svg"); /* Legacy iOS */
  466. }
  467. @font-face {
  468. font-family: "Material Icons";
  469. font-style: normal;
  470. font-weight: 400;
  471. src: url(/fonts/MaterialIcons-Regular.ttf); /* For IE6-8 */
  472. src: local("Material Icons"), local("MaterialIcons-Regular"),
  473. url(/fonts/MaterialIcons-Regular.ttf) format("truetype");
  474. }
  475. .material-icons {
  476. font-family: "Material Icons";
  477. font-weight: normal;
  478. font-style: normal;
  479. font-size: 24px; /* Preferred icon size */
  480. display: inline-block;
  481. line-height: 1;
  482. text-transform: none;
  483. letter-spacing: normal;
  484. word-wrap: normal;
  485. white-space: nowrap;
  486. direction: ltr;
  487. /* Support for all WebKit browsers. */
  488. -webkit-font-smoothing: antialiased;
  489. /* Support for Safari and Chrome. */
  490. text-rendering: optimizeLegibility;
  491. /* Support for Firefox. */
  492. -moz-osx-font-smoothing: grayscale;
  493. /* Support for IE. */
  494. font-feature-settings: "liga";
  495. }
  496. code {
  497. background-color: var(--light-grey) !important;
  498. color: var(--dark-red) !important;
  499. }
  500. #toasts-container {
  501. z-index: 10000 !important;
  502. .toast {
  503. font-weight: 600;
  504. z-index: 10000 !important;
  505. }
  506. }
  507. html {
  508. overflow: auto !important;
  509. height: 100%;
  510. background-color: inherit;
  511. font-size: 14px;
  512. }
  513. body {
  514. background-color: var(--light-grey);
  515. color: var(--dark-grey);
  516. height: 100%;
  517. line-height: 1.4285714;
  518. font-size: 1rem;
  519. font-family: "Inter", Helvetica, Arial, sans-serif;
  520. }
  521. .app {
  522. min-height: 100vh;
  523. position: relative;
  524. }
  525. #root {
  526. height: 100%;
  527. }
  528. .content-wrapper {
  529. /* padding: 60px 0 calc(230px + 60px) 0; */
  530. padding-top: 60px;
  531. }
  532. .column {
  533. display: flex;
  534. flex: 1 1 0;
  535. flex-direction: column;
  536. padding: 10px;
  537. }
  538. ul {
  539. list-style: none;
  540. margin: 0;
  541. display: block;
  542. }
  543. h1,
  544. h2,
  545. h3,
  546. h4,
  547. h5,
  548. h6 {
  549. font-family: "Inter", Helvetica, Arial, sans-serif;
  550. font-weight: 400;
  551. line-height: 1.1;
  552. a {
  553. font-weight: inherit;
  554. }
  555. }
  556. h1 {
  557. font-size: 4.2rem;
  558. line-height: 110%;
  559. margin: 2.1rem 0 1.68rem 0;
  560. }
  561. h2 {
  562. font-size: 3.56rem;
  563. line-height: 110%;
  564. margin: 1.78rem 0 1.424rem 0;
  565. }
  566. h3 {
  567. font-size: 2.92rem;
  568. line-height: 110%;
  569. margin: 1.46rem 0 1.168rem 0;
  570. }
  571. h4 {
  572. font-size: 2.28rem;
  573. line-height: 110%;
  574. margin: 1.14rem 0 0.912rem 0;
  575. }
  576. h5 {
  577. font-size: 1.64rem;
  578. line-height: 110%;
  579. margin: 0.82rem 0 0.656rem 0;
  580. }
  581. h6 {
  582. font-size: 1rem;
  583. line-height: 110%;
  584. margin: 0.5rem 0 0.4rem 0;
  585. }
  586. .content {
  587. h4 {
  588. line-height: 1.125;
  589. }
  590. }
  591. .thin {
  592. font-weight: 200;
  593. }
  594. .left {
  595. float: left !important;
  596. }
  597. .right {
  598. float: right !important;
  599. }
  600. .white {
  601. background-color: var(--white) !important;
  602. }
  603. .btn-search {
  604. font-size: 14px;
  605. }
  606. a.nav-item.is-tab {
  607. border-bottom: 1px solid transparent;
  608. border-top: 1px solid transparent;
  609. }
  610. .button.is-info {
  611. border-width: 0;
  612. color: var(--white);
  613. }
  614. strong {
  615. color: inherit;
  616. }
  617. hr {
  618. background-color: var(--light-grey-2);
  619. border: none;
  620. height: 1px;
  621. }
  622. p,
  623. button,
  624. input,
  625. select,
  626. textarea {
  627. font-family: "Inter", Helvetica, Arial, sans-serif;
  628. }
  629. input,
  630. select,
  631. textarea {
  632. outline: none;
  633. }
  634. .label {
  635. display: flex;
  636. font-weight: 700;
  637. &:not(:last-child) {
  638. margin-bottom: 5px;
  639. }
  640. }
  641. #page-title {
  642. margin-top: 0;
  643. font-size: 35px;
  644. text-align: center;
  645. }
  646. @media only screen and (min-width: 700px) {
  647. #page-title {
  648. margin: 0;
  649. margin-bottom: 30px;
  650. font-size: 40px;
  651. }
  652. }
  653. @media screen and (min-width: 980px) {
  654. .container {
  655. max-width: 960px;
  656. margin-left: auto;
  657. margin-right: auto;
  658. }
  659. }
  660. @media screen and (min-width: 1180px) {
  661. .container {
  662. max-width: 1200px;
  663. }
  664. }
  665. .upper-container {
  666. height: 100%;
  667. }
  668. .main-container {
  669. height: 100%;
  670. min-height: 100vh;
  671. display: flex;
  672. flex-direction: column;
  673. &.main-container-modal-active {
  674. height: 100% !important;
  675. overflow: hidden !important;
  676. }
  677. > .container {
  678. position: relative;
  679. flex: 1 0 auto;
  680. margin: 0 auto;
  681. max-width: 1200px;
  682. }
  683. }
  684. a {
  685. color: var(--primary-color);
  686. text-decoration: none;
  687. cursor: pointer;
  688. &:hover,
  689. &:focus {
  690. filter: brightness(90%);
  691. }
  692. }
  693. table {
  694. border-collapse: collapse;
  695. width: 100%;
  696. thead {
  697. td {
  698. border-width: 0 0 2px;
  699. }
  700. }
  701. td {
  702. border: 1px solid var(--light-grey-2);
  703. border-width: 0 0 1px;
  704. padding: 8px 10px;
  705. }
  706. tbody {
  707. tr:last-child {
  708. td {
  709. border-bottom-width: 0;
  710. }
  711. }
  712. }
  713. }
  714. img {
  715. max-width: 100%;
  716. }
  717. .absolute-a {
  718. width: 100%;
  719. height: 100%;
  720. position: absolute;
  721. top: 0;
  722. left: 0;
  723. }
  724. .alert {
  725. padding: 20px;
  726. color: var(--white);
  727. background-color: var(--dark-red);
  728. position: fixed;
  729. top: 50px;
  730. right: 50px;
  731. font-size: 2em;
  732. border-radius: @border-radius;
  733. z-index: 10000000;
  734. }
  735. .night-mode {
  736. .tippy-box {
  737. border: 1px solid var(--light-grey-3);
  738. box-shadow: @box-shadow-dropdown;
  739. background-color: var(--white);
  740. .tippy-content {
  741. color: var(--black);
  742. }
  743. &[data-theme~="songActions"],
  744. &[data-theme~="dropdown"],
  745. &[data-theme~="search"],
  746. &[data-theme~="stationSettings"] {
  747. background-color: var(--dark-grey-2);
  748. border: 0 !important;
  749. }
  750. &[data-theme~="songActions"] {
  751. background-color: var(--dark-grey-2);
  752. border: 0 !important;
  753. i,
  754. a {
  755. color: var(--white);
  756. }
  757. .youtube-icon {
  758. background-color: var(--white);
  759. }
  760. }
  761. &[data-theme~="dropdown"] {
  762. background-color: var(--dark-grey-2);
  763. border: 0 !important;
  764. .nav-dropdown-items {
  765. .nav-item {
  766. background-color: var(--dark-grey);
  767. &:focus {
  768. outline-color: var(--dark-grey);
  769. }
  770. p {
  771. color: var(--white);
  772. }
  773. }
  774. }
  775. }
  776. &[data-theme~="search"] {
  777. background-color: var(--dark-grey-2);
  778. border: 0 !important;
  779. }
  780. &[data-theme~="info"] p {
  781. color: var(--black) !important;
  782. }
  783. }
  784. .tippy-box[data-placement^="top"] {
  785. &[data-theme~="songActions"],
  786. &[data-theme~="dropdown"],
  787. &[data-theme~="search"] {
  788. > .tippy-arrow::before {
  789. border-top-color: var(--dark-grey-2);
  790. }
  791. }
  792. }
  793. .tippy-box[data-placement^="bottom"] {
  794. &[data-theme~="songActions"],
  795. &[data-theme~="dropdown"],
  796. &[data-theme~="search"],
  797. &[data-theme~="stationSettings"] {
  798. > .tippy-arrow::before {
  799. border-bottom-color: var(--dark-grey-2);
  800. }
  801. }
  802. }
  803. .tippy-box[data-placement^="left"] {
  804. &[data-theme~="songActions"],
  805. &[data-theme~="dropdown"],
  806. &[data-theme~="search"] {
  807. > .tippy-arrow::before {
  808. border-left-color: var(--dark-grey-2);
  809. }
  810. }
  811. }
  812. .tippy-box[data-placement^="right"] {
  813. &[data-theme~="songActions"],
  814. &[data-theme~="dropdown"],
  815. &[data-theme~="search"] {
  816. > .tippy-arrow::before {
  817. border-right-color: var(--dark-grey-2);
  818. }
  819. }
  820. }
  821. }
  822. .tippy-box[data-theme~="info"] {
  823. font-size: 12px;
  824. letter-spacing: 1px;
  825. }
  826. .tippy-box[data-theme~="quickConfirm"] {
  827. background-color: var(--dark-red);
  828. border: 0;
  829. .tippy-content {
  830. padding: 0;
  831. }
  832. a {
  833. padding: 15px;
  834. line-height: 30px;
  835. color: var(--white);
  836. border-bottom: 0;
  837. font-size: 15px;
  838. font-weight: 600;
  839. &:hover,
  840. &:focus {
  841. filter: brightness(90%);
  842. }
  843. }
  844. }
  845. .tippy-box[data-theme~="songActions"] {
  846. font-size: 15px;
  847. padding: 5px 10px;
  848. border: 1px solid var(--light-grey-3);
  849. box-shadow: @box-shadow-dropdown;
  850. background-color: var(--white);
  851. .button {
  852. width: 146px;
  853. }
  854. i,
  855. a {
  856. display: inline-block;
  857. cursor: pointer;
  858. color: var(--dark-grey);
  859. vertical-align: middle;
  860. &:hover,
  861. &:focus {
  862. filter: brightness(90%);
  863. }
  864. &:not(:first) {
  865. margin-left: 5px;
  866. }
  867. }
  868. .play-icon,
  869. .added-to-playlist-icon {
  870. color: var(--green);
  871. }
  872. .edit-icon,
  873. .view-icon,
  874. .add-to-playlist-icon,
  875. .add-to-queue-icon {
  876. color: var(--primary-color);
  877. }
  878. .hide-icon {
  879. color: var(--light-grey-3);
  880. }
  881. .stop-icon,
  882. .delete-icon {
  883. color: var(--dark-red);
  884. }
  885. .report-icon {
  886. color: var(--yellow);
  887. }
  888. }
  889. .tippy-box[data-placement^="top"] {
  890. &[data-theme~="songActions"],
  891. &[data-theme~="dropdown"],
  892. &[data-theme~="search"] {
  893. > .tippy-arrow::before {
  894. border-top-color: var(--white);
  895. }
  896. }
  897. &[data-theme~="quickConfirm"] > .tippy-arrow::before {
  898. border-top-color: var(--dark-red);
  899. }
  900. }
  901. .tippy-box[data-placement^="bottom"] {
  902. &[data-theme~="songActions"],
  903. &[data-theme~="dropdown"],
  904. &[data-theme~="stationSettings"],
  905. &[data-theme~="search"] {
  906. > .tippy-arrow::before {
  907. border-bottom-color: var(--white);
  908. }
  909. }
  910. &[data-theme~="quickConfirm"] > .tippy-arrow::before {
  911. border-bottom-color: var(--dark-red);
  912. }
  913. }
  914. .tippy-box[data-placement^="left"] {
  915. &[data-theme~="songActions"],
  916. &[data-theme~="dropdown"],
  917. &[data-theme~="search"] {
  918. > .tippy-arrow::before {
  919. border-left-color: var(--white);
  920. }
  921. }
  922. &[data-theme~="quickConfirm"] > .tippy-arrow::before {
  923. border-left-color: var(--dark-red);
  924. }
  925. }
  926. .tippy-box[data-placement^="right"] {
  927. &[data-theme~="songActions"],
  928. &[data-theme~="dropdown"],
  929. &[data-theme~="search"] {
  930. > .tippy-arrow::before {
  931. border-right-color: var(--white);
  932. }
  933. }
  934. &[data-theme~="quickConfirm"] > .tippy-arrow::before {
  935. border-right-color: var(--dark-red);
  936. }
  937. }
  938. .tippy-box[data-theme~="stationSettings"] {
  939. border: 1px solid var(--light-grey-3);
  940. box-shadow: @box-shadow-dropdown;
  941. background-color: var(--white);
  942. button:not(:last-of-type) {
  943. margin-bottom: 5px;
  944. }
  945. }
  946. .tippy-box[data-theme~="dropdown"] {
  947. font-size: 15px;
  948. padding: 0;
  949. border: 1px solid var(--light-grey-3);
  950. box-shadow: @box-shadow-dropdown;
  951. background-color: var(--white);
  952. color: var(--dark-grey);
  953. width: 350px;
  954. .tippy-content {
  955. padding: 0;
  956. }
  957. .nav-dropdown-items {
  958. max-height: 220px;
  959. overflow-y: auto;
  960. padding: 10px;
  961. .nav-item {
  962. width: 100%;
  963. justify-content: flex-start;
  964. border: 0;
  965. padding: 8px 4px;
  966. font-size: 15.5px;
  967. min-height: 36px;
  968. background: var(--light-grey);
  969. border-radius: @border-radius;
  970. cursor: pointer;
  971. .checkbox-control {
  972. display: flex;
  973. flex-direction: row;
  974. align-items: center;
  975. overflow-wrap: anywhere;
  976. margin: 0 !important;
  977. p {
  978. margin-left: 10px;
  979. }
  980. .switch {
  981. position: relative;
  982. display: inline-block;
  983. flex-shrink: 0;
  984. width: 40px;
  985. height: 24px;
  986. }
  987. .switch input {
  988. opacity: 0;
  989. width: 0;
  990. height: 0;
  991. }
  992. .slider {
  993. width: 100%;
  994. position: absolute;
  995. cursor: pointer;
  996. top: 0;
  997. left: 0;
  998. right: 0;
  999. bottom: 0;
  1000. background-color: var(--light-grey-3);
  1001. transition: 0.2s;
  1002. border-radius: 34px;
  1003. &.disabled {
  1004. cursor: not-allowed;
  1005. }
  1006. }
  1007. .slider:before {
  1008. position: absolute;
  1009. content: "";
  1010. height: 16px;
  1011. width: 16px;
  1012. left: 4px;
  1013. bottom: 4px;
  1014. background-color: var(--white);
  1015. transition: 0.2s;
  1016. border-radius: 50%;
  1017. }
  1018. input:checked + .slider {
  1019. background-color: var(--primary-color);
  1020. }
  1021. input:focus + .slider {
  1022. box-shadow: 0 0 1px var(--primary-color);
  1023. }
  1024. input:checked + .slider:before {
  1025. transform: translateX(16px);
  1026. }
  1027. }
  1028. &:focus {
  1029. outline-color: var(--light-grey-3);
  1030. }
  1031. &:not(:last-of-type) {
  1032. margin-bottom: 5px;
  1033. }
  1034. }
  1035. }
  1036. .tippy-content > span {
  1037. display: flex;
  1038. flex-direction: column;
  1039. button.nav-item {
  1040. &:not(:last-of-type) {
  1041. margin-bottom: 10px;
  1042. }
  1043. }
  1044. }
  1045. #create-playlist {
  1046. margin: 10px 10px 10px 10px;
  1047. width: calc(100% - 20px);
  1048. }
  1049. }
  1050. .tippy-box[data-theme~="search"] {
  1051. font-size: 15px;
  1052. padding: 0;
  1053. border: 1px solid var(--light-grey-3);
  1054. box-shadow: @box-shadow-dropdown;
  1055. background-color: var(--white);
  1056. color: var(--dark-grey);
  1057. width: 100% !important;
  1058. max-width: 600px !important;
  1059. max-height: calc(100vh - 300px);
  1060. overflow-y: auto;
  1061. .tippy-content {
  1062. padding: 0;
  1063. & > span {
  1064. display: flex;
  1065. flex-direction: column;
  1066. padding: 5px;
  1067. }
  1068. }
  1069. }
  1070. .has-text-centered {
  1071. text-align: center;
  1072. }
  1073. .select {
  1074. position: relative;
  1075. &.is-expanded {
  1076. width: 100%;
  1077. }
  1078. &.disabled,
  1079. .disabled {
  1080. filter: grayscale(1);
  1081. cursor: not-allowed;
  1082. }
  1083. &:after {
  1084. content: " ";
  1085. border: 1.5px solid var(--primary-color);
  1086. border-right: 0;
  1087. border-top: 0;
  1088. height: 7px;
  1089. pointer-events: none;
  1090. position: absolute;
  1091. transform: rotate(-45deg);
  1092. width: 7px;
  1093. margin-top: -6px;
  1094. right: 16px;
  1095. top: 50%;
  1096. }
  1097. select {
  1098. height: 36px;
  1099. width: 100%;
  1100. background-color: var(--white);
  1101. border: 1px solid var(--light-grey-2);
  1102. color: var(--dark-grey-2);
  1103. appearance: none;
  1104. border-radius: @border-radius;
  1105. font-size: 14px;
  1106. line-height: 24px;
  1107. padding-left: 8px;
  1108. position: relative;
  1109. padding-right: 36px;
  1110. cursor: pointer;
  1111. }
  1112. }
  1113. .checkbox {
  1114. height: 25px;
  1115. width: 25px;
  1116. input[type="checkbox"] {
  1117. height: 25px;
  1118. width: 25px;
  1119. background-color: var(--white);
  1120. border: 1px solid var(--light-grey-2);
  1121. appearance: none;
  1122. border-radius: @border-radius;
  1123. cursor: pointer;
  1124. position: relative;
  1125. &:checked {
  1126. &:before {
  1127. content: "";
  1128. position: absolute;
  1129. top: 4px;
  1130. right: 7px;
  1131. background-color: var(--primary-color);
  1132. width: 4px;
  1133. height: 16px;
  1134. transform: rotate(45deg);
  1135. }
  1136. &:after {
  1137. content: "";
  1138. position: absolute;
  1139. top: 12px;
  1140. left: 2px;
  1141. background-color: var(--primary-color);
  1142. width: 10px;
  1143. height: 4px;
  1144. transform: rotate(45deg);
  1145. }
  1146. }
  1147. }
  1148. }
  1149. .button:focus,
  1150. .button:active {
  1151. border-color: var(--light-grey-2) !important;
  1152. }
  1153. .input:focus,
  1154. .input:active,
  1155. .textarea:focus,
  1156. .textarea:active,
  1157. .select select:focus,
  1158. .select select:active {
  1159. border-color: var(--primary-color) !important;
  1160. }
  1161. button.delete:focus {
  1162. background-color: rgba(10, 10, 10, 0.3);
  1163. }
  1164. .tag {
  1165. padding-right: 6px !important;
  1166. }
  1167. #tab-selection,
  1168. .tab-selection {
  1169. overflow-x: auto;
  1170. .button {
  1171. white-space: nowrap;
  1172. }
  1173. }
  1174. .table {
  1175. background-color: var(--white);
  1176. color: var(--dark-grey);
  1177. width: 100%;
  1178. border-collapse: collapse;
  1179. border-spacing: 0;
  1180. border-radius: @border-radius;
  1181. thead th {
  1182. padding: 5px 10px;
  1183. text-align: left;
  1184. font-weight: 600;
  1185. color: var(--grey-3);
  1186. }
  1187. tr {
  1188. &:nth-child(even) {
  1189. background-color: #fafafa;
  1190. }
  1191. &:hover,
  1192. &:focus {
  1193. background-color: var(--light-grey);
  1194. }
  1195. }
  1196. }
  1197. .button {
  1198. border: 1px solid var(--light-grey-2);
  1199. background-color: var(--white);
  1200. color: var(--dark-grey-2);
  1201. border-radius: @border-radius;
  1202. line-height: 24px;
  1203. align-items: center;
  1204. display: inline-flex;
  1205. font-size: 14px;
  1206. padding-left: 10px;
  1207. padding-right: 10px;
  1208. justify-content: center;
  1209. cursor: pointer;
  1210. user-select: none;
  1211. white-space: nowrap;
  1212. &:hover,
  1213. &:focus {
  1214. filter: brightness(95%);
  1215. }
  1216. &.is-success {
  1217. background-color: var(--green) !important;
  1218. border-width: 0;
  1219. color: var(--white);
  1220. }
  1221. &.is-primary {
  1222. background-color: var(--primary-color) !important;
  1223. border-width: 0;
  1224. color: var(--white);
  1225. }
  1226. &.is-danger {
  1227. background-color: var(--dark-red) !important;
  1228. border-width: 0;
  1229. color: var(--white);
  1230. }
  1231. &.is-info {
  1232. background-color: var(--primary-color) !important;
  1233. border-width: 0;
  1234. color: var(--white);
  1235. }
  1236. &.is-warning {
  1237. background-color: var(--yellow) !important;
  1238. border-width: 0;
  1239. color: rgba(0, 0, 0, 0.7);
  1240. }
  1241. &.is-dark {
  1242. background-color: var(--dark-grey-2);
  1243. border-width: 0;
  1244. color: var(--light-grey);
  1245. }
  1246. &.is-fullwidth {
  1247. display: flex;
  1248. width: 100%;
  1249. }
  1250. &.disabled {
  1251. filter: grayscale(1);
  1252. cursor: not-allowed;
  1253. }
  1254. }
  1255. .input,
  1256. .textarea {
  1257. width: 100%;
  1258. padding-left: 8px;
  1259. padding-right: 8px;
  1260. line-height: 24px;
  1261. font-size: 14px;
  1262. border-radius: @border-radius;
  1263. box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
  1264. border: 1px solid var(--light-grey-2);
  1265. }
  1266. .input,
  1267. .button {
  1268. height: 36px;
  1269. }
  1270. .textarea {
  1271. display: block;
  1272. line-height: 1.2;
  1273. padding: 10px;
  1274. max-height: 600px;
  1275. min-height: 120px;
  1276. min-width: 100%;
  1277. resize: vertical;
  1278. }
  1279. .icon {
  1280. height: 24px;
  1281. width: 24px;
  1282. line-height: 24px;
  1283. margin-left: 4px;
  1284. margin-right: -2px;
  1285. }
  1286. .fadein-helpbox-enter-active {
  1287. transition-duration: 0.3s;
  1288. transition-timing-function: ease-in;
  1289. }
  1290. .fadein-helpbox-leave-active {
  1291. transition-duration: 0.3s;
  1292. transition-timing-function: cubic-bezier(0, 1, 0.5, 1);
  1293. }
  1294. .fadein-helpbox-enter-to,
  1295. .fadein-helpbox-leave {
  1296. max-height: 100px;
  1297. overflow: hidden;
  1298. }
  1299. .fadein-helpbox-enter,
  1300. .fadein-helpbox-leave-to {
  1301. overflow: hidden;
  1302. max-height: 0;
  1303. }
  1304. .control {
  1305. margin-bottom: 5px !important;
  1306. &.is-grouped {
  1307. display: flex;
  1308. & > .control {
  1309. &.select.is-expanded > select {
  1310. width: 100%;
  1311. }
  1312. & > input,
  1313. & > select,
  1314. & > .button,
  1315. &.label {
  1316. border-radius: 0;
  1317. }
  1318. &:first-child {
  1319. & > input,
  1320. & > select,
  1321. & > .button,
  1322. &.label {
  1323. border-radius: @border-radius 0 0 @border-radius;
  1324. }
  1325. }
  1326. &:last-child {
  1327. & > input,
  1328. & > select,
  1329. & > .button,
  1330. &.label {
  1331. border-radius: 0 @border-radius @border-radius 0;
  1332. }
  1333. }
  1334. }
  1335. }
  1336. &.is-expanded {
  1337. flex: 1;
  1338. }
  1339. &.has-addons {
  1340. display: flex;
  1341. .button {
  1342. border-radius: 0;
  1343. margin-right: -1px;
  1344. &:first-child {
  1345. border-radius: @border-radius 0 0 @border-radius;
  1346. }
  1347. &:last-child {
  1348. border-radius: 0 @border-radius @border-radius 0;
  1349. padding-left: 10px;
  1350. }
  1351. &.dropdown-toggle {
  1352. padding-left: 5px;
  1353. padding-right: 5px;
  1354. }
  1355. }
  1356. .input {
  1357. margin-right: -1px;
  1358. &:first-child {
  1359. border-radius: @border-radius 0 0 @border-radius;
  1360. }
  1361. }
  1362. }
  1363. }
  1364. .input-with-button {
  1365. .control {
  1366. margin-right: 0px !important;
  1367. }
  1368. input,
  1369. select {
  1370. width: 100%;
  1371. height: 36px;
  1372. border-radius: @border-radius 0 0 @border-radius;
  1373. border-right: 0;
  1374. border-color: var(--light-grey-3);
  1375. }
  1376. .button {
  1377. height: 36px;
  1378. border-radius: 0 @border-radius @border-radius 0;
  1379. }
  1380. }
  1381. .page-title {
  1382. margin: 0 0 50px 0;
  1383. }
  1384. .material-icons {
  1385. user-select: none;
  1386. -webkit-user-select: none;
  1387. }
  1388. .icon-with-button {
  1389. margin-right: 3px;
  1390. font-size: 18px;
  1391. }
  1392. .verified-song {
  1393. font-size: 17px;
  1394. color: var(--primary-color);
  1395. }
  1396. .section-title,
  1397. h4.section-title {
  1398. font-size: 26px;
  1399. font-weight: 600;
  1400. margin: 0px;
  1401. }
  1402. .section-description {
  1403. font-size: 16px;
  1404. font-weight: 400;
  1405. margin-bottom: 10px !important;
  1406. }
  1407. .section-horizontal-rule {
  1408. margin: 15px 0 30px 0;
  1409. }
  1410. .section-margin-bottom {
  1411. height: 30px;
  1412. }
  1413. .margin-top-zero {
  1414. margin-top: 0 !important;
  1415. }
  1416. .margin-bottom-zero {
  1417. margin-bottom: 0 !important;
  1418. }
  1419. /** Universial items e.g. playlist items, queue items, activity items */
  1420. .item-draggable {
  1421. cursor: move;
  1422. }
  1423. .universal-item {
  1424. display: flex;
  1425. flex-direction: row;
  1426. flex-grow: 1;
  1427. align-items: center;
  1428. justify-content: space-between;
  1429. padding: 7.5px;
  1430. border: 1px solid var(--light-grey-3);
  1431. border-radius: @border-radius;
  1432. overflow: hidden;
  1433. .item-thumbnail {
  1434. width: 65px;
  1435. height: 65px;
  1436. margin: -7.5px;
  1437. border-radius: @border-radius 0 0 @border-radius;
  1438. }
  1439. .item-title {
  1440. font-size: 20px;
  1441. overflow: hidden;
  1442. text-overflow: ellipsis;
  1443. white-space: nowrap;
  1444. }
  1445. .item-description {
  1446. font-size: 14px;
  1447. overflow: hidden;
  1448. text-overflow: ellipsis;
  1449. white-space: nowrap;
  1450. }
  1451. .universal-item-actions {
  1452. display: flex;
  1453. flex-direction: row;
  1454. margin-left: 10px;
  1455. justify-content: center;
  1456. @media screen and (max-width: 800px) {
  1457. flex-wrap: wrap;
  1458. }
  1459. .action-dropdown-icon {
  1460. display: flex;
  1461. color: var(--primary-color);
  1462. }
  1463. .icons-group {
  1464. display: flex;
  1465. align-items: center;
  1466. a {
  1467. padding: 0;
  1468. }
  1469. }
  1470. .button {
  1471. width: 146px;
  1472. }
  1473. i,
  1474. span {
  1475. cursor: pointer;
  1476. &:not(:first-child) {
  1477. margin-left: 5px;
  1478. }
  1479. }
  1480. .play-icon,
  1481. .added-to-playlist-icon {
  1482. color: var(--green);
  1483. }
  1484. .edit-icon,
  1485. .view-icon,
  1486. .add-to-playlist-icon,
  1487. .add-to-queue-icon {
  1488. color: var(--primary-color);
  1489. }
  1490. .hide-icon {
  1491. color: var(--light-grey-3);
  1492. }
  1493. .stop-icon,
  1494. .delete-icon {
  1495. color: var(--dark-red);
  1496. }
  1497. .report-icon {
  1498. color: var(--yellow);
  1499. }
  1500. }
  1501. }
  1502. .save-button-mixin {
  1503. min-width: 200px;
  1504. &:disabled {
  1505. background-color: var(--light-grey) !important;
  1506. color: var(--black);
  1507. }
  1508. }
  1509. .save-button-transition-enter-active {
  1510. transition: all 0.1s ease;
  1511. }
  1512. .save-button-transition-enter {
  1513. transform: translateX(20px);
  1514. opacity: 0;
  1515. }
  1516. .youtube-icon {
  1517. margin-right: 3px;
  1518. height: 20px;
  1519. width: 20px;
  1520. -webkit-mask: url("/assets/social/youtube.svg") no-repeat center;
  1521. mask: url("/assets/social/youtube.svg") no-repeat center;
  1522. background-color: var(--youtube);
  1523. }
  1524. #forgot-password {
  1525. justify-content: flex-start;
  1526. margin: 5px 0;
  1527. }
  1528. .steps-fade-leave-active {
  1529. display: none;
  1530. }
  1531. .steps-fade-enter-active,
  1532. .steps-fade-leave-active {
  1533. transition: all 0.3s ease;
  1534. }
  1535. .steps-fade-enter-from,
  1536. .steps-fade-leave-to {
  1537. opacity: 0;
  1538. }
  1539. .skip-step {
  1540. background-color: var(--grey-3);
  1541. color: var(--white);
  1542. }
  1543. #steps {
  1544. display: flex;
  1545. align-items: center;
  1546. justify-content: center;
  1547. height: 50px;
  1548. margin-top: 36px;
  1549. @media screen and (max-width: 300px) {
  1550. display: none;
  1551. }
  1552. .step {
  1553. display: flex;
  1554. align-items: center;
  1555. justify-content: center;
  1556. border-radius: 100%;
  1557. border: 1px solid var(--dark-grey);
  1558. min-width: 50px;
  1559. min-height: 50px;
  1560. background-color: var(--white);
  1561. font-size: 30px;
  1562. user-select: none;
  1563. &.selected {
  1564. background-color: var(--primary-color);
  1565. color: var(--white) !important;
  1566. border: 0;
  1567. }
  1568. }
  1569. .divider {
  1570. display: flex;
  1571. justify-content: center;
  1572. width: 180px;
  1573. height: 1px;
  1574. background-color: var(--dark-grey);
  1575. }
  1576. }
  1577. /* This class is used for content-box in ResetPassword, but not in RemoveAccount. This is because ResetPassword uses transitions and RemoveAccount does not */
  1578. .content-box-wrapper {
  1579. margin-top: 90px;
  1580. width: 100%;
  1581. display: flex;
  1582. align-items: center;
  1583. }
  1584. .content-box {
  1585. border-radius: @border-radius;
  1586. background-color: var(--white);
  1587. border: 1px solid var(--dark-grey);
  1588. max-width: 580px;
  1589. padding: 40px;
  1590. flex: 1;
  1591. @media screen and (max-width: 300px) {
  1592. margin-top: 30px;
  1593. padding: 30px 20px;
  1594. }
  1595. }
  1596. .content-box-optional-helper {
  1597. margin-top: 15px;
  1598. color: var(--primary-color);
  1599. font-size: 16px;
  1600. a {
  1601. color: var(--primary-color);
  1602. }
  1603. }
  1604. .content-box-title {
  1605. font-size: 25px;
  1606. color: var(--black);
  1607. }
  1608. .content-box-description {
  1609. font-size: 14px;
  1610. color: var(--dark-grey);
  1611. }
  1612. .content-box-inputs {
  1613. margin-top: 35px;
  1614. .input-with-button {
  1615. .button {
  1616. width: 105px;
  1617. }
  1618. @media screen and (max-width: 450px) {
  1619. flex-direction: column;
  1620. }
  1621. }
  1622. label {
  1623. font-size: 11px;
  1624. }
  1625. #change-password-button {
  1626. margin-top: 36px;
  1627. width: 175px;
  1628. }
  1629. }
  1630. #password-visibility-container {
  1631. display: flex;
  1632. align-items: center;
  1633. a {
  1634. width: 0;
  1635. margin-left: -30px;
  1636. z-index: 0;
  1637. top: 2px;
  1638. position: relative;
  1639. color: var(--light-grey-1);
  1640. }
  1641. }
  1642. .news-item {
  1643. font-family: "Karla";
  1644. border-radius: @border-radius;
  1645. padding: 20px;
  1646. border: unset !important;
  1647. box-shadow: @box-shadow;
  1648. * {
  1649. font-family: Karla, Arial, sans-serif;
  1650. font-size: 16px;
  1651. }
  1652. h1 {
  1653. font-size: 40px;
  1654. &:first-of-type {
  1655. margin-top: 0;
  1656. }
  1657. }
  1658. h2 {
  1659. font-size: 30px;
  1660. }
  1661. h3 {
  1662. font-size: 25px;
  1663. }
  1664. h4,
  1665. h5,
  1666. h6 {
  1667. font-size: 20px;
  1668. }
  1669. h1,
  1670. h2,
  1671. h3,
  1672. h4,
  1673. h5,
  1674. h6 {
  1675. margin: 10px 0;
  1676. }
  1677. ul {
  1678. list-style: unset;
  1679. }
  1680. li {
  1681. margin-left: 30px;
  1682. }
  1683. blockquote {
  1684. padding: 0px 15px;
  1685. color: var(--grey-2);
  1686. border-left: 0.25em solid var(--light-grey-2);
  1687. }
  1688. code {
  1689. font-style: italic;
  1690. }
  1691. hr {
  1692. margin: 10px 0;
  1693. }
  1694. }
  1695. .checkbox-control {
  1696. display: flex;
  1697. flex-direction: row;
  1698. align-items: center;
  1699. p {
  1700. margin-left: 10px;
  1701. }
  1702. .switch {
  1703. position: relative;
  1704. display: inline-block;
  1705. flex-shrink: 0;
  1706. width: 40px;
  1707. height: 24px;
  1708. }
  1709. .switch input {
  1710. opacity: 0;
  1711. width: 0;
  1712. height: 0;
  1713. }
  1714. .slider {
  1715. position: absolute;
  1716. cursor: pointer;
  1717. top: 0;
  1718. left: 0;
  1719. right: 0;
  1720. bottom: 0;
  1721. background-color: var(--light-grey-3);
  1722. transition: 0.2s;
  1723. border-radius: 34px;
  1724. }
  1725. .slider:before {
  1726. position: absolute;
  1727. content: "";
  1728. height: 16px;
  1729. width: 16px;
  1730. left: 4px;
  1731. bottom: 4px;
  1732. background-color: var(--white);
  1733. transition: 0.2s;
  1734. border-radius: 50%;
  1735. }
  1736. input:checked + .slider {
  1737. background-color: var(--primary-color);
  1738. }
  1739. input:focus + .slider {
  1740. box-shadow: 0 0 1px var(--primary-color);
  1741. }
  1742. input:checked + .slider:before {
  1743. transform: translateX(16px);
  1744. }
  1745. }
  1746. html {
  1747. &,
  1748. * {
  1749. scrollbar-color: var(--primary-color) transparent;
  1750. scrollbar-width: thin;
  1751. }
  1752. &.night-mode {
  1753. &,
  1754. * {
  1755. scrollbar-color: var(--light-grey) transparent !important;
  1756. }
  1757. &::-webkit-scrollbar-thumb,
  1758. ::-webkit-scrollbar-thumb {
  1759. background-color: var(--light-grey);
  1760. }
  1761. ::-webkit-scrollbar-track {
  1762. background-color: var(--dark-grey-3);
  1763. }
  1764. }
  1765. div {
  1766. ::-webkit-scrollbar-track {
  1767. background-color: transparent !important;
  1768. }
  1769. }
  1770. }
  1771. ::-webkit-scrollbar {
  1772. height: 10px;
  1773. width: 10px;
  1774. }
  1775. ::-webkit-scrollbar-track {
  1776. background-color: var(--light-grey-2);
  1777. }
  1778. ::-webkit-scrollbar-thumb {
  1779. background-color: var(--primary-color);
  1780. }
  1781. ::-webkit-scrollbar-corner {
  1782. background-color: transparent;
  1783. }
  1784. :disabled,
  1785. .disabled {
  1786. cursor: not-allowed;
  1787. }
  1788. .pill {
  1789. background-color: var(--light-grey);
  1790. color: var(--primary-color);
  1791. padding: 5px 10px;
  1792. border-radius: @border-radius;
  1793. font-size: 14px;
  1794. font-weight: 600;
  1795. white-space: nowrap;
  1796. margin-top: 5px;
  1797. box-shadow: @box-shadow;
  1798. transition: all 0.2s ease-in-out;
  1799. &:hover,
  1800. &:focus {
  1801. filter: brightness(95%);
  1802. }
  1803. &:not(:last-of-type) {
  1804. margin-right: 5px;
  1805. }
  1806. }
  1807. </style>