diff --git a/.eslintrc.json b/.eslintrc.json deleted file mode 100755 index d736fa7..0000000 --- a/.eslintrc.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "env": { - "node": true - }, - "parserOptions": { - "sourceType": "module" - }, - "extends": "eslint:recommended", - "rules": { - "comma-dangle": [ - "error", - "always-multiline" - ], - "indent": [ - "error", - 2 - ], - "quotes": [ - "error", - "single" - ], - "semi": [ - "error", - "always" - ] - } -} diff --git a/.gitignore b/.gitignore index cbc9626..db6c3d5 100755 --- a/.gitignore +++ b/.gitignore @@ -1,71 +1,83 @@ -# https://github.com/github/gitignore/blob/master/Node.gitignore -# Logs -logs -*.log -npm-debug.log* -yarn-debug.log* -yarn-error.log* - -# Runtime data -pids -*.pid -*.seed -*.pid.lock - -# Directory for instrumented libs generated by jscoverage/JSCover -lib-cov - -# Coverage directory used by tools like istanbul -coverage - -# nyc test coverage -.nyc_output - -# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) -.grunt - -# Bower dependency directory (https://bower.io/) -bower_components - -# node-waf configuration -.lock-wscript - -# Compiled binary addons (https://nodejs.org/api/addons.html) -build/Release - -# Dependency directories -node_modules/ -jspm_packages/ - -# TypeScript v1 declaration files -typings/ - -# Optional npm cache directory -.npm - -# Optional eslint cache -.eslintcache - -# Optional REPL history -.node_repl_history - -# Output of 'npm pack' -*.tgz - -# Yarn Integrity file -.yarn-integrity - -# dotenv environment variables file -.env - -# next.js build output -.next - -# vuepress build output -.vuepress/dist - -# Serverless directories -.serverless - -# Temporary css folder for development -temp +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* + +# Runtime data +pids +*.pid +*.seed +*.pid.lock + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# nyc test coverage +.nyc_output + +# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# Bower dependency directory (https://bower.io/) +bower_components + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (https://nodejs.org/api/addons.html) +build/Release + +# Dependency directories +node_modules/ +jspm_packages/ + +# TypeScript v1 declaration files +typings/ + +# Optional npm cache directory +.npm + +# Optional eslint cache +.eslintcache + +# Optional REPL history +.node_repl_history + +# Output of 'npm pack' +*.tgz + +# Yarn Integrity file +.yarn-integrity + +# dotenv environment variables file +.env +.env.test + +# parcel-bundler cache (https://parceljs.org/) +.cache + +# next.js build output +.next + +# nuxt.js build output +.nuxt + +# vuepress build output +.vuepress/dist + +# Serverless directories +.serverless/ + +# FuseBox cache +.fusebox/ + +# DynamoDB Local files +.dynamodb/ + +# CSS Development folder +temp/ diff --git a/.stylelintrc.json b/.stylelintrc.json index a468d70..b3c1c1b 100755 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -1,8 +1,11 @@ -{ - "extends": "stylelint-config-recommended", - "rules": { - "indentation": 2, - "string-quotes": "single", - "no-descending-specificity": null - } -} +{ + "extends": "stylelint-config-recommended", + "plugins": [ + "stylelint-scss" + ], + "rules": { + "indentation": 2, + "string-quotes": "single", + "no-descending-specificity": null + } +} diff --git a/README.md b/README.md index 224874c..cb26eec 100755 --- a/README.md +++ b/README.md @@ -1,22 +1,22 @@ -# Bauke's Styles - -> Collection of my user styles for various websites. - -## Collection - -| Name | Version | Applies To | User CSS | -|------|---------|------------|----------| -| Tildes Compact | 1.0.6 | [tildes.net](https://tildes.net) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/tildes-compact/tildes-compact.user.css) | -| Tildes Dracula | 2.1.4 | [tildes.net](https://tildes.net) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/tildes-dracula/tildes-dracula.user.css) | - -## Installing - -Refer to [the Wiki](https://gitlab.com/Bauke/styles/wikis/Installing-Styles) for installation guidelines. - -## Building - -If you'd like to build the CSS yourself, refer to [the Wiki](https://gitlab.com/Bauke/styles/wikis/Building-Styles) for building guidelines. - -## License - -Licensed under MIT. +# Bauke's Styles + +> Collection of my user styles for various websites. + +## Collection + +| Name | Version | Applies To | User CSS | +|------|---------|------------|----------| +| Tildes Compact | 1.0.7 | [tildes.net](https://tildes.net) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/tildes-compact/tildes-compact.user.css) | +| Tildes Dracula | 2.1.5 | [tildes.net](https://tildes.net) | [Click](https://gitlab.com/Bauke/styles/raw/master/css/tildes-dracula/tildes-dracula.user.css) | + +## Installing + +Refer to [the Wiki](https://gitlab.com/Bauke/styles/wikis/Installing-Styles) for installation guidelines. + +## Building + +If you'd like to build the CSS yourself, refer to [the Wiki](https://gitlab.com/Bauke/styles/wikis/Building-Styles) for building guidelines. + +## License + +Licensed under MIT. diff --git a/build.js b/build.js new file mode 100644 index 0000000..ca7253b --- /dev/null +++ b/build.js @@ -0,0 +1,88 @@ +// Builds all styles into `css` as `*.css` and `*.user.css` files. + +const { execSync } = require('child_process'); +const { join } = require('path'); +const { moveSync, mkdirpSync, readdirSync, readFileSync, removeSync, writeFileSync } = require('fs-extra'); +const { create } = require('usercss-creator'); + +if (!process.env.STYLE_ENV) { + throw new Error('Environment variable STYLE_ENV is not set.'); +} + +const tempPath = join(__dirname, 'temp'); +const logMeta = process.env.STYLE_ENV === 'dev' ? '[build]'.padEnd(10) : '[build] '; + +// If we're in prod then clear the temp folder to avoid unwanted files going into `css` +if (process.env.STYLE_ENV === 'prod') { + console.log(logMeta + 'building for production, see `css/` for output'); + removeSync(tempPath); +} + +console.log(`${logMeta}reading \`${join(__dirname, 'src')}\` files`); +let cssFiles = readdirSync(join(__dirname, 'src')); + +// Generate all the SCSS using the CLI +console.log(logMeta + 'generating SASS/SCSS -> CSS'); +for (const cssFile of cssFiles) { + execSync(`npx node-sass src/${cssFile}/ --output-style compressed -o ${tempPath}`); + console.log(`${logMeta}✔ ${cssFile}`); +} + +console.log(`${logMeta}reading \`${tempPath}\` files`); +cssFiles = readdirSync(tempPath); + +console.log(logMeta + 'generating CSS -> UserCSS'); +for (const cssFile of cssFiles) { + // Only generate non-usercss files + if (cssFile.endsWith('.user.css')) { + continue; + } + + const cssPath = join(tempPath, cssFile); + // This uses the css file's name to resolve the appropriate `package.json` + // All CSS files have the same name as their directory + const packagePath = join(__dirname, 'src', cssFile.substring(0, cssFile.indexOf('.')), 'package.json'); + const { usercss } = JSON.parse(readFileSync(packagePath, 'UTF8')); + // We don't specify an output path because we just want it generated next to the regular CSS file + create(cssPath, usercss); +} + +cssFiles = readdirSync(tempPath); +// Add `@-moz-document domain(...)` to all the `.user.css` files +for (const cssFile of cssFiles) { + if (!cssFile.endsWith('.user.css')) { + continue; + } + + const cssPath = join(tempPath, cssFile); + const packagePath = join(__dirname, 'src', cssFile.substring(0, cssFile.indexOf('.')), 'package.json'); + const { usercss } = JSON.parse(readFileSync(packagePath, 'UTF8')); + let css = readFileSync(cssPath, 'UTF8'); + const usercssIndex = css.indexOf('==/UserStyle== */'); + const usercssLength = '==/UserStyle== */'.length; + css = + css.substring(0, usercssIndex + usercssLength) + + `\n@-moz-document domain(${usercss.namespace}) {\n ` + + css.substring(usercssIndex + usercssLength + 1, css.length) + + '}\n'; + writeFileSync(cssPath, css); + console.log(`${logMeta}✔ ${cssFile} v${usercss.version}`); +} + +// If we're in prod, we now wanna move all the files into `css` +if (process.env.STYLE_ENV === 'prod') { + cssFiles = readdirSync(tempPath); + console.log(`${logMeta}moving ${cssFiles.length} generated files`); + for (const cssFile of cssFiles) { + const cssPath = join(tempPath, cssFile); + const prodPath = join(__dirname, 'css'); + const dirPath = join(prodPath, cssFile.substring(0, cssFile.indexOf('.'))); + // `mkdir -p ` to create any directories that don't exist yet + mkdirpSync(dirPath); + moveSync(cssPath, join(dirPath, cssFile), { overwrite: true }); + } + + removeSync(tempPath); +} + +console.log(logMeta + 'finished 😁'); diff --git a/bump.js b/bump.js deleted file mode 100644 index fa23884..0000000 --- a/bump.js +++ /dev/null @@ -1,53 +0,0 @@ -// Bumps a specified style's version - -const fs = require('fs'); -const path = require('path'); - -/** - * @function bump - * @param {string} jsonPath - Path to the .json file - * @param {string} incrementType - Which semver type to increment: "major", "minor" or "patch" - */ - -function bump(jsonPath, incrementType) { - if (!fs.existsSync(jsonPath)) - throw Error(`File ${jsonPath} does not exist.`); - if (path.extname(jsonPath) !== '.json') - throw Error(`File ${jsonPath} does not end in "json".`); - if (typeof incrementType === 'undefined') - throw Error('No valid increment type was included. Valid: "major", "minor" or "patch".'); - if (incrementType !== 'major' && incrementType !== 'minor' && incrementType !== 'patch') - throw Error(`Increment type ${incrementType} does not equal "major", "minor" or "patch".`); - - const jsonFile = require(jsonPath); - - if (typeof jsonFile.options.version === 'undefined') - throw Error(`${jsonFile} does not include a "version" property.`); - - const incrementTypes = { - 'major': 0, - 'minor': 1, - 'patch': 2, - }; - - const oldVersion = jsonFile.options.version.split('.'); - let bumped = parseInt(oldVersion[incrementTypes[incrementType]]) + 1; - let newVersion; - switch (incrementType) { - case 'major': - newVersion = `${bumped}.0.0`; - break; - case 'minor': - newVersion = `${oldVersion[0]}.${bumped}.0`; - break; - case 'patch': - newVersion = `${oldVersion[0]}.${oldVersion[1]}.${bumped}`; - break; - } - - jsonFile.options.version = newVersion; - - fs.writeFileSync(jsonPath, JSON.stringify(jsonFile, null, 2)); -} - -exports.bump = bump; diff --git a/css/tildes-compact/tildes-compact.css b/css/tildes-compact/tildes-compact.css index 20b654e..1c18db0 100644 --- a/css/tildes-compact/tildes-compact.css +++ b/css/tildes-compact/tildes-compact.css @@ -1,35 +1 @@ -.topic-listing .topic-text-excerpt,.post-listing .topic-text-excerpt { - display: none !important; -} - -.topic-listing .topic-metadata,.post-listing .topic-metadata { - display: inline-flex !important; - height: 1.3em !important; - max-width: 200px !important; - overflow: hidden !important; - white-space: nowrap !important; -} - -.topic-listing .topic-metadata .topic-tags li,.post-listing .topic-metadata .topic-tags li { - display: none !important; -} - -.topic-listing .topic-metadata .topic-tags li:nth-child(-n+3),.post-listing .topic-metadata .topic-tags li:nth-child(-n+3) { - display: inherit !important; -} - -.topic-listing .topic-info,.post-listing .topic-info { - width: 500px !important; -} - -.topic-listing .topic-info .user-label,.post-listing .topic-info .user-label { - display: none !important; -} - -.post-listing .btn-post,.post-listing .comment-votes { - display: none !important; -} - -.post-listing>li { - margin-bottom: unset !important; -} +.topic-listing .topic-text-excerpt,.post-listing .topic-text-excerpt{display:none !important}.topic-listing .topic-metadata,.post-listing .topic-metadata{display:inline-flex !important;height:1.3em !important;max-width:200px !important;overflow:hidden !important;white-space:nowrap !important}.topic-listing .topic-metadata .topic-tags li,.post-listing .topic-metadata .topic-tags li{display:none !important}.topic-listing .topic-metadata .topic-tags li:nth-child(-n+3),.post-listing .topic-metadata .topic-tags li:nth-child(-n+3){display:inherit !important}.topic-listing .topic-info,.post-listing .topic-info{width:500px !important}.topic-listing .topic-info .user-label,.post-listing .topic-info .user-label{display:none !important}.post-listing .btn-post,.post-listing .comment-votes{display:none !important}.post-listing>li{margin-bottom:unset !important} diff --git a/css/tildes-compact/tildes-compact.user.css b/css/tildes-compact/tildes-compact.user.css old mode 100755 new mode 100644 index df3547b..5ef7ba5 --- a/css/tildes-compact/tildes-compact.user.css +++ b/css/tildes-compact/tildes-compact.user.css @@ -1,47 +1,13 @@ /* ==UserStyle== @name Tildes Compact @namespace tildes.net -@version 1.0.6 +@version 1.0.7 @author Bauke @description Removes some elements and changes some sizes to make the Tildes.net layout a little more compact. @homepageURL https://gitlab.com/Bauke/styles @supportURL https://gitlab.com/Bauke/styles/issues @license MIT ==/UserStyle== */ -@-moz-document domain('tildes.net') { -.topic-listing .topic-text-excerpt,.post-listing .topic-text-excerpt { - display: none !important; +@-moz-document domain(tildes.net) { + .topic-listing .topic-text-excerpt,.post-listing .topic-text-excerpt{display:none !important}.topic-listing .topic-metadata,.post-listing .topic-metadata{display:inline-flex !important;height:1.3em !important;max-width:200px !important;overflow:hidden !important;white-space:nowrap !important}.topic-listing .topic-metadata .topic-tags li,.post-listing .topic-metadata .topic-tags li{display:none !important}.topic-listing .topic-metadata .topic-tags li:nth-child(-n+3),.post-listing .topic-metadata .topic-tags li:nth-child(-n+3){display:inherit !important}.topic-listing .topic-info,.post-listing .topic-info{width:500px !important}.topic-listing .topic-info .user-label,.post-listing .topic-info .user-label{display:none !important}.post-listing .btn-post,.post-listing .comment-votes{display:none !important}.post-listing>li{margin-bottom:unset !important} } - -.topic-listing .topic-metadata,.post-listing .topic-metadata { - display: inline-flex !important; - height: 1.3em !important; - max-width: 200px !important; - overflow: hidden !important; - white-space: nowrap !important; -} - -.topic-listing .topic-metadata .topic-tags li,.post-listing .topic-metadata .topic-tags li { - display: none !important; -} - -.topic-listing .topic-metadata .topic-tags li:nth-child(-n+3),.post-listing .topic-metadata .topic-tags li:nth-child(-n+3) { - display: inherit !important; -} - -.topic-listing .topic-info,.post-listing .topic-info { - width: 500px !important; -} - -.topic-listing .topic-info .user-label,.post-listing .topic-info .user-label { - display: none !important; -} - -.post-listing .btn-post,.post-listing .comment-votes { - display: none !important; -} - -.post-listing>li { - margin-bottom: unset !important; -} -} \ No newline at end of file diff --git a/css/tildes-dracula/tildes-dracula.css b/css/tildes-dracula/tildes-dracula.css index 4ece4aa..d0a02d6 100644 --- a/css/tildes-dracula/tildes-dracula.css +++ b/css/tildes-dracula/tildes-dracula.css @@ -1,1100 +1 @@ -body:not(.theme) .highlight .syntax-c,body.theme-light .highlight .syntax-c,body.theme-dark .highlight .syntax-c,body.theme-black .highlight .syntax-c { - color: #8be9fd; -} - -body:not(.theme) .highlight .syntax-err,body.theme-light .highlight .syntax-err,body.theme-dark .highlight .syntax-err,body.theme-black .highlight .syntax-err { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-g,body.theme-light .highlight .syntax-g,body.theme-dark .highlight .syntax-g,body.theme-black .highlight .syntax-g { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-k,body.theme-light .highlight .syntax-k,body.theme-dark .highlight .syntax-k,body.theme-black .highlight .syntax-k { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-l,body.theme-light .highlight .syntax-l,body.theme-dark .highlight .syntax-l,body.theme-black .highlight .syntax-l { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-n,body.theme-light .highlight .syntax-n,body.theme-dark .highlight .syntax-n,body.theme-black .highlight .syntax-n { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-o,body.theme-light .highlight .syntax-o,body.theme-dark .highlight .syntax-o,body.theme-black .highlight .syntax-o { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-x,body.theme-light .highlight .syntax-x,body.theme-dark .highlight .syntax-x,body.theme-black .highlight .syntax-x { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-p,body.theme-light .highlight .syntax-p,body.theme-dark .highlight .syntax-p,body.theme-black .highlight .syntax-p { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-cm,body.theme-light .highlight .syntax-cm,body.theme-dark .highlight .syntax-cm,body.theme-black .highlight .syntax-cm { - color: #8be9fd; -} - -body:not(.theme) .highlight .syntax-cp,body.theme-light .highlight .syntax-cp,body.theme-dark .highlight .syntax-cp,body.theme-black .highlight .syntax-cp { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-c1,body.theme-light .highlight .syntax-c1,body.theme-dark .highlight .syntax-c1,body.theme-black .highlight .syntax-c1 { - color: #8be9fd; -} - -body:not(.theme) .highlight .syntax-cs,body.theme-light .highlight .syntax-cs,body.theme-dark .highlight .syntax-cs,body.theme-black .highlight .syntax-cs { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-gd,body.theme-light .highlight .syntax-gd,body.theme-dark .highlight .syntax-gd,body.theme-black .highlight .syntax-gd { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-ge,body.theme-light .highlight .syntax-ge,body.theme-dark .highlight .syntax-ge,body.theme-black .highlight .syntax-ge { - color: #f8f8f2; - font-style: italic; -} - -body:not(.theme) .highlight .syntax-gr,body.theme-light .highlight .syntax-gr,body.theme-dark .highlight .syntax-gr,body.theme-black .highlight .syntax-gr { - color: #f55; -} - -body:not(.theme) .highlight .syntax-gh,body.theme-light .highlight .syntax-gh,body.theme-dark .highlight .syntax-gh,body.theme-black .highlight .syntax-gh { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-gi,body.theme-light .highlight .syntax-gi,body.theme-dark .highlight .syntax-gi,body.theme-black .highlight .syntax-gi { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-go,body.theme-light .highlight .syntax-go,body.theme-dark .highlight .syntax-go,body.theme-black .highlight .syntax-go { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-gp,body.theme-light .highlight .syntax-gp,body.theme-dark .highlight .syntax-gp,body.theme-black .highlight .syntax-gp { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-gs,body.theme-light .highlight .syntax-gs,body.theme-dark .highlight .syntax-gs,body.theme-black .highlight .syntax-gs { - color: #f8f8f2; - font-weight: bold; -} - -body:not(.theme) .highlight .syntax-gu,body.theme-light .highlight .syntax-gu,body.theme-dark .highlight .syntax-gu,body.theme-black .highlight .syntax-gu { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-gt,body.theme-light .highlight .syntax-gt,body.theme-dark .highlight .syntax-gt,body.theme-black .highlight .syntax-gt { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-kc,body.theme-light .highlight .syntax-kc,body.theme-dark .highlight .syntax-kc,body.theme-black .highlight .syntax-kc { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-kd,body.theme-light .highlight .syntax-kd,body.theme-dark .highlight .syntax-kd,body.theme-black .highlight .syntax-kd { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-kn,body.theme-light .highlight .syntax-kn,body.theme-dark .highlight .syntax-kn,body.theme-black .highlight .syntax-kn { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-kp,body.theme-light .highlight .syntax-kp,body.theme-dark .highlight .syntax-kp,body.theme-black .highlight .syntax-kp { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-kr,body.theme-light .highlight .syntax-kr,body.theme-dark .highlight .syntax-kr,body.theme-black .highlight .syntax-kr { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-kt,body.theme-light .highlight .syntax-kt,body.theme-dark .highlight .syntax-kt,body.theme-black .highlight .syntax-kt { - color: #f55; -} - -body:not(.theme) .highlight .syntax-ld,body.theme-light .highlight .syntax-ld,body.theme-dark .highlight .syntax-ld,body.theme-black .highlight .syntax-ld { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-m,body.theme-light .highlight .syntax-m,body.theme-dark .highlight .syntax-m,body.theme-black .highlight .syntax-m { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-s,body.theme-light .highlight .syntax-s,body.theme-dark .highlight .syntax-s,body.theme-black .highlight .syntax-s { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-na,body.theme-light .highlight .syntax-na,body.theme-dark .highlight .syntax-na,body.theme-black .highlight .syntax-na { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-nb,body.theme-light .highlight .syntax-nb,body.theme-dark .highlight .syntax-nb,body.theme-black .highlight .syntax-nb { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-nc,body.theme-light .highlight .syntax-nc,body.theme-dark .highlight .syntax-nc,body.theme-black .highlight .syntax-nc { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-no,body.theme-light .highlight .syntax-no,body.theme-dark .highlight .syntax-no,body.theme-black .highlight .syntax-no { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-nd,body.theme-light .highlight .syntax-nd,body.theme-dark .highlight .syntax-nd,body.theme-black .highlight .syntax-nd { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-ni,body.theme-light .highlight .syntax-ni,body.theme-dark .highlight .syntax-ni,body.theme-black .highlight .syntax-ni { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-ne,body.theme-light .highlight .syntax-ne,body.theme-dark .highlight .syntax-ne,body.theme-black .highlight .syntax-ne { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-nf,body.theme-light .highlight .syntax-nf,body.theme-dark .highlight .syntax-nf,body.theme-black .highlight .syntax-nf { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-nl,body.theme-light .highlight .syntax-nl,body.theme-dark .highlight .syntax-nl,body.theme-black .highlight .syntax-nl { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-nn,body.theme-light .highlight .syntax-nn,body.theme-dark .highlight .syntax-nn,body.theme-black .highlight .syntax-nn { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-nx,body.theme-light .highlight .syntax-nx,body.theme-dark .highlight .syntax-nx,body.theme-black .highlight .syntax-nx { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-py,body.theme-light .highlight .syntax-py,body.theme-dark .highlight .syntax-py,body.theme-black .highlight .syntax-py { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-nt,body.theme-light .highlight .syntax-nt,body.theme-dark .highlight .syntax-nt,body.theme-black .highlight .syntax-nt { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-nv,body.theme-light .highlight .syntax-nv,body.theme-dark .highlight .syntax-nv,body.theme-black .highlight .syntax-nv { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-ow,body.theme-light .highlight .syntax-ow,body.theme-dark .highlight .syntax-ow,body.theme-black .highlight .syntax-ow { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-w,body.theme-light .highlight .syntax-w,body.theme-dark .highlight .syntax-w,body.theme-black .highlight .syntax-w { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-mf,body.theme-light .highlight .syntax-mf,body.theme-dark .highlight .syntax-mf,body.theme-black .highlight .syntax-mf { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-mh,body.theme-light .highlight .syntax-mh,body.theme-dark .highlight .syntax-mh,body.theme-black .highlight .syntax-mh { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-mi,body.theme-light .highlight .syntax-mi,body.theme-dark .highlight .syntax-mi,body.theme-black .highlight .syntax-mi { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-mo,body.theme-light .highlight .syntax-mo,body.theme-dark .highlight .syntax-mo,body.theme-black .highlight .syntax-mo { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-sb,body.theme-light .highlight .syntax-sb,body.theme-dark .highlight .syntax-sb,body.theme-black .highlight .syntax-sb { - color: #8be9fd; -} - -body:not(.theme) .highlight .syntax-sc,body.theme-light .highlight .syntax-sc,body.theme-dark .highlight .syntax-sc,body.theme-black .highlight .syntax-sc { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-sd,body.theme-light .highlight .syntax-sd,body.theme-dark .highlight .syntax-sd,body.theme-black .highlight .syntax-sd { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-s2,body.theme-light .highlight .syntax-s2,body.theme-dark .highlight .syntax-s2,body.theme-black .highlight .syntax-s2 { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-se,body.theme-light .highlight .syntax-se,body.theme-dark .highlight .syntax-se,body.theme-black .highlight .syntax-se { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-sh,body.theme-light .highlight .syntax-sh,body.theme-dark .highlight .syntax-sh,body.theme-black .highlight .syntax-sh { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-si,body.theme-light .highlight .syntax-si,body.theme-dark .highlight .syntax-si,body.theme-black .highlight .syntax-si { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-sx,body.theme-light .highlight .syntax-sx,body.theme-dark .highlight .syntax-sx,body.theme-black .highlight .syntax-sx { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-sr,body.theme-light .highlight .syntax-sr,body.theme-dark .highlight .syntax-sr,body.theme-black .highlight .syntax-sr { - color: #f55; -} - -body:not(.theme) .highlight .syntax-s1,body.theme-light .highlight .syntax-s1,body.theme-dark .highlight .syntax-s1,body.theme-black .highlight .syntax-s1 { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-ss,body.theme-light .highlight .syntax-ss,body.theme-dark .highlight .syntax-ss,body.theme-black .highlight .syntax-ss { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-bp,body.theme-light .highlight .syntax-bp,body.theme-dark .highlight .syntax-bp,body.theme-black .highlight .syntax-bp { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-vc,body.theme-light .highlight .syntax-vc,body.theme-dark .highlight .syntax-vc,body.theme-black .highlight .syntax-vc { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-vg,body.theme-light .highlight .syntax-vg,body.theme-dark .highlight .syntax-vg,body.theme-black .highlight .syntax-vg { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-vi,body.theme-light .highlight .syntax-vi,body.theme-dark .highlight .syntax-vi,body.theme-black .highlight .syntax-vi { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-il,body.theme-light .highlight .syntax-il,body.theme-dark .highlight .syntax-il,body.theme-black .highlight .syntax-il { - color: #bd93f9; -} - -body:not(.theme) .btn-comment-collapse,body.theme-light .btn-comment-collapse,body.theme-dark .btn-comment-collapse,body.theme-black .btn-comment-collapse { - color: #8be9fd; - border-color: #8be9fd; - background: transparent; -} - -body:not(.theme) .btn-comment-collapse:hover,body:not(.theme) .btn-comment-collapse:active,body:not(.theme) .btn-comment-collapse:focus,body.theme-light .btn-comment-collapse:hover,body.theme-light .btn-comment-collapse:active,body.theme-light .btn-comment-collapse:focus,body.theme-dark .btn-comment-collapse:hover,body.theme-dark .btn-comment-collapse:active,body.theme-dark .btn-comment-collapse:focus,body.theme-black .btn-comment-collapse:hover,body.theme-black .btn-comment-collapse:active,body.theme-black .btn-comment-collapse:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .comment,body.theme-light .comment,body.theme-dark .comment,body.theme-black .comment { - border-color: #282a36; -} - -body:not(.theme) .comment:target>.comment-itself,body.theme-light .comment:target>.comment-itself,body.theme-dark .comment:target>.comment-itself,body.theme-black .comment:target>.comment-itself { - border-left: 3px solid #50fa7b !important; -} - -body:not(.theme) .comment .comment-itself header,body.theme-light .comment .comment-itself header,body.theme-dark .comment .comment-itself header,body.theme-black .comment .comment-itself header { - background-color: #282a36; -} - -body:not(.theme) .comment .comment-nav-link,body.theme-light .comment .comment-nav-link,body.theme-dark .comment .comment-nav-link,body.theme-black .comment .comment-nav-link { - color: #8be9fd; -} - -body:not(.theme) .comment .comment-nav-link:hover,body:not(.theme) .comment .comment-nav-link:active,body:not(.theme) .comment .comment-nav-link:focus,body.theme-light .comment .comment-nav-link:hover,body.theme-light .comment .comment-nav-link:active,body.theme-light .comment .comment-nav-link:focus,body.theme-dark .comment .comment-nav-link:hover,body.theme-dark .comment .comment-nav-link:active,body.theme-dark .comment .comment-nav-link:focus,body.theme-black .comment .comment-nav-link:hover,body.theme-black .comment .comment-nav-link:active,body.theme-black .comment .comment-nav-link:focus { - color: #ff79c6; -} - -body:not(.theme) .comment .comment-nav-link:visited,body.theme-light .comment .comment-nav-link:visited,body.theme-dark .comment .comment-nav-link:visited,body.theme-black .comment .comment-nav-link:visited { - color: #8be9fd; -} - -body:not(.theme) .comment .comment-nav-link:visited:hover,body:not(.theme) .comment .comment-nav-link:visited:active,body:not(.theme) .comment .comment-nav-link:visited:focus,body.theme-light .comment .comment-nav-link:visited:hover,body.theme-light .comment .comment-nav-link:visited:active,body.theme-light .comment .comment-nav-link:visited:focus,body.theme-dark .comment .comment-nav-link:visited:hover,body.theme-dark .comment .comment-nav-link:visited:active,body.theme-dark .comment .comment-nav-link:visited:focus,body.theme-black .comment .comment-nav-link:visited:hover,body.theme-black .comment .comment-nav-link:visited:active,body.theme-black .comment .comment-nav-link:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .comment .comment-user-info,body.theme-light .comment .comment-user-info,body.theme-dark .comment .comment-user-info,body.theme-black .comment .comment-user-info { - color: #f1fa8c; -} - -body:not(.theme) .comment .time-responsive-full,body.theme-light .comment .time-responsive-full,body.theme-dark .comment .time-responsive-full,body.theme-black .comment .time-responsive-full { - color: #f8f8f2; -} - -body:not(.theme) .comment-exemplary-reasons,body.theme-light .comment-exemplary-reasons,body.theme-dark .comment-exemplary-reasons,body.theme-black .comment-exemplary-reasons { - background-color: #282a36; - padding: 5px; -} - -body:not(.theme) .comment-exemplary-reasons[open],body.theme-light .comment-exemplary-reasons[open],body.theme-dark .comment-exemplary-reasons[open],body.theme-black .comment-exemplary-reasons[open] { - border-bottom: 1px solid #8be9fd; -} - -body:not(.theme) .comment-exemplary-reasons ul,body.theme-light .comment-exemplary-reasons ul,body.theme-dark .comment-exemplary-reasons ul,body.theme-black .comment-exemplary-reasons ul { - margin-left: 1.3rem; - margin-bottom: 0; -} - -body:not(.theme) .comment-votes,body.theme-light .comment-votes,body.theme-dark .comment-votes,body.theme-black .comment-votes { - color: #f8f8f2; -} - -body:not(.theme) .comment[data-comment-depth='0'],body.theme-light .comment[data-comment-depth='0'],body.theme-dark .comment[data-comment-depth='0'],body.theme-black .comment[data-comment-depth='0'] { - border-color: #282a36; -} - -body:not(.theme) .is-comment-collapsed header .link-user,body.theme-light .is-comment-collapsed header .link-user,body.theme-dark .is-comment-collapsed header .link-user,body.theme-black .is-comment-collapsed header .link-user { - color: #50fa7b; -} - -body:not(.theme) .label-comment-exemplary,body.theme-light .label-comment-exemplary,body.theme-dark .label-comment-exemplary,body.theme-black .label-comment-exemplary { - color: #282a36; - border-color: #8be9fd; - background-color: #8be9fd; -} - -body:not(.theme) .btn-post,body.theme-light .btn-post,body.theme-dark .btn-post,body.theme-black .btn-post { - padding: 0; -} - -body:not(.theme) .btn-post-action,body.theme-light .btn-post-action,body.theme-dark .btn-post-action,body.theme-black .btn-post-action { - color: #8be9fd; - padding: 6px 8px; - margin: 6px; - margin-bottom: 0px; -} - -body:not(.theme) .btn-post-action:hover,body:not(.theme) .btn-post-action:active,body:not(.theme) .btn-post-action:focus,body.theme-light .btn-post-action:hover,body.theme-light .btn-post-action:active,body.theme-light .btn-post-action:focus,body.theme-dark .btn-post-action:hover,body.theme-dark .btn-post-action:active,body.theme-dark .btn-post-action:focus,body.theme-black .btn-post-action:hover,body.theme-black .btn-post-action:active,body.theme-black .btn-post-action:focus { - color: #ff79c6; - text-decoration: none; -} - -body:not(.theme) .btn-post-action-used,body.theme-light .btn-post-action-used,body.theme-dark .btn-post-action-used,body.theme-black .btn-post-action-used { - color: #ff79c6; - text-decoration: underline; -} - -body:not(.theme) .btn-post-action-used:hover,body:not(.theme) .btn-post-action-used:active,body:not(.theme) .btn-post-action-used:focus,body.theme-light .btn-post-action-used:hover,body.theme-light .btn-post-action-used:active,body.theme-light .btn-post-action-used:focus,body.theme-dark .btn-post-action-used:hover,body.theme-dark .btn-post-action-used:active,body.theme-dark .btn-post-action-used:focus,body.theme-black .btn-post-action-used:hover,body.theme-black .btn-post-action-used:active,body.theme-black .btn-post-action-used:focus { - color: #8be9fd; - text-decoration: underline; -} - -.btn-comment-label-exemplary { - color: #8be9fd; - border-color: #8be9fd; -} - -.btn-comment-label-exemplary:hover { - color: #8be9fd; -} - -.btn-comment-label-exemplary.btn-used:hover { - color: #282a36; - background-color: #8be9fd; -} - -.btn-comment-label-offtopic { - color: #50fa7b; - border-color: #50fa7b; -} - -.btn-comment-label-offtopic:hover { - color: #50fa7b; -} - -.btn-comment-label-offtopic.btn-used:hover { - color: #282a36; - background-color: #50fa7b; -} - -.btn-comment-label-joke { - color: #f1fa8c; - border-color: #f1fa8c; -} - -.btn-comment-label-joke:hover { - color: #f1fa8c; -} - -.btn-comment-label-joke.btn-used:hover { - color: #282a36; - background-color: #f1fa8c; -} - -.btn-comment-label-noise { - color: #ffb86c; - border-color: #ffb86c; -} - -.btn-comment-label-noise:hover { - color: #ffb86c; -} - -.btn-comment-label-noise.btn-used:hover { - color: #282a36; - background-color: #ffb86c; -} - -.btn-comment-label-malice { - color: #f55; - border-color: #f55; -} - -.btn-comment-label-malice:hover { - color: #f55; -} - -.btn-comment-label-malice.btn-used:hover { - color: #282a36; - background-color: #f55; -} - -.btn-comment-label.btn-used { - border: none; -} - -body:not(.theme) #page-list,body.theme-light #page-list,body.theme-dark #page-list,body.theme-black #page-list { - background-color: #44475a; -} - -body:not(.theme) .toc,body.theme-light .toc,body.theme-dark .toc,body.theme-black .toc { - background-color: #282a36; -} - -body:not(.theme) .highlight:not(code),body.theme-light .highlight:not(code),body.theme-dark .highlight:not(code),body.theme-black .highlight:not(code) { - color: #f8f8f2; - background-color: #6272a4; -} - -body:not(.theme) .conspicuous,body.theme-light .conspicuous,body.theme-dark .conspicuous,body.theme-black .conspicuous { - color: #f55; - font-family: sans-serif; -} - -body:not(.theme) .date-info,body.theme-light .date-info,body.theme-dark .date-info,body.theme-black .date-info { - color: #f8f8f2; -} - -body:not(.theme) .article-summary,body.theme-light .article-summary,body.theme-dark .article-summary,body.theme-black .article-summary { - border-color: #f8f8f2; -} - -body:not(.theme) .article-summary h2 a,body.theme-light .article-summary h2 a,body.theme-dark .article-summary h2 a,body.theme-black .article-summary h2 a { - color: #f8f8f2; -} - -body>footer,#site-footer { - color: #f8f8f2; - background-color: #282a36; - padding: 0.5rem; - font-style: normal; - font-weight: bold; -} - -body>footer a,#site-footer a { - color: #8be9fd; -} - -body>footer a:hover,body>footer a:active,body>footer a:focus,#site-footer a:hover,#site-footer a:active,#site-footer a:focus { - color: #ff79c6; -} - -body>footer a:visited,#site-footer a:visited { - color: #8be9fd; -} - -body>footer a:visited:hover,body>footer a:visited:active,body>footer a:visited:focus,#site-footer a:visited:hover,#site-footer a:visited:active,#site-footer a:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .group-list tbody tr:nth-of-type(n),body.theme-light .group-list tbody tr:nth-of-type(n),body.theme-dark .group-list tbody tr:nth-of-type(n),body.Theme-black .group-list tbody tr:nth-of-type(n) { - background-color: #282a36; -} - -body:not(.theme) .group-list tbody tr:nth-of-type(n) td,body.theme-light .group-list tbody tr:nth-of-type(n) td,body.theme-dark .group-list tbody tr:nth-of-type(n) td,body.Theme-black .group-list tbody tr:nth-of-type(n) td { - border-color: #44475a; -} - -body:not(.theme) .group-list .group-list-description,body.theme-light .group-list .group-list-description,body.theme-dark .group-list .group-list-description,body.Theme-black .group-list .group-list-description { - font-style: normal; -} - -body:not(.theme) .table th,body.theme-light .table th,body.theme-dark .table th,body.Theme-black .table th { - border-bottom-color: #6272a4; -} - -body:not(.theme),body.theme-light,body.theme-dark,body.theme-black { - color: #f8f8f2; - background-color: #282a36; -} - -body:not(.theme) a,body.theme-light a,body.theme-dark a,body.theme-black a { - color: #8be9fd; -} - -body:not(.theme) a:hover,body:not(.theme) a:active,body:not(.theme) a:focus,body.theme-light a:hover,body.theme-light a:active,body.theme-light a:focus,body.theme-dark a:hover,body.theme-dark a:active,body.theme-dark a:focus,body.theme-black a:hover,body.theme-black a:active,body.theme-black a:focus { - color: #ff79c6; -} - -body:not(.theme) a:visited,body.theme-light a:visited,body.theme-dark a:visited,body.theme-black a:visited { - color: #ff79c6; -} - -body:not(.theme) hr,body.theme-light hr,body.theme-dark hr,body.theme-black hr { - border-color: #f8f8f2; -} - -body:not(.theme) main,body:not(.theme) #sidebar,body.theme-light main,body.theme-light #sidebar,body.theme-dark main,body.theme-dark #sidebar,body.theme-black main,body.theme-black #sidebar { - color: #f8f8f2; - background-color: #44475a; -} - -body:not(.theme) fieldset,body.theme-light fieldset,body.theme-dark fieldset,body.theme-black fieldset { - border-color: #6272a4; -} - -body:not(.theme) pre,body:not(.theme) code,body.theme-light pre,body.theme-light code,body.theme-dark pre,body.theme-dark code,body.theme-black pre,body.theme-black code { - color: #f8f8f2; - background-color: #282a36; - border: none; - font-family: 'Space Mono', 'Iosevka', 'Fira Code', 'Consolas', monospace; -} - -body:not(.theme) blockquote,body.theme-light blockquote,body.theme-dark blockquote,body.theme-black blockquote { - color: #f8f8f2; - background-color: #282a36; - border-color: #f8f8f2; -} - -body:not(.theme) figure,body:not(.theme) section,body.theme-light figure,body.theme-light section,body.theme-dark figure,body.theme-dark section,body.theme-black figure,body.theme-black section { - border-color: #f8f8f2; -} - -body:not(.theme) input,body:not(.theme) textarea,body:not(.theme) .form-input,body:not(.theme) .form-input:not(:focus),body.theme-light input,body.theme-light textarea,body.theme-light .form-input,body.theme-light .form-input:not(:focus),body.theme-dark input,body.theme-dark textarea,body.theme-dark .form-input,body.theme-dark .form-input:not(:focus),body.theme-black input,body.theme-black textarea,body.theme-black .form-input,body.theme-black .form-input:not(:focus) { - color: #f8f8f2; - border-color: #6272a4; - background-color: #282a36; -} - -body:not(.theme) th,body.theme-light th,body.theme-dark th,body.theme-black th { - border-color: #6272a4; -} - -body:not(.theme) td,body.theme-light td,body.theme-dark td,body.theme-black td { - border-color: #44475a; -} - -body:not(.theme) tbody tr:nth-of-type(n),body.theme-light tbody tr:nth-of-type(n),body.theme-dark tbody tr:nth-of-type(n),body.theme-black tbody tr:nth-of-type(n) { - background-color: #282a36; -} - -body:not(.theme) .listing-options button,body.theme-light .listing-options button,body.theme-black .listing-options button,body.theme-dark .listing-options button { - border: none; -} - -body:not(.theme) .listing-options button:hover,body:not(.theme) .listing-options button:active,body:not(.theme) .listing-options button:focus,body.theme-light .listing-options button:hover,body.theme-light .listing-options button:active,body.theme-light .listing-options button:focus,body.theme-black .listing-options button:hover,body.theme-black .listing-options button:active,body.theme-black .listing-options button:focus,body.theme-dark .listing-options button:hover,body.theme-dark .listing-options button:active,body.theme-dark .listing-options button:focus { - color: #ff79c6; - background-color: transparent; - text-decoration: underline; -} - -body:not(.theme) .tab.tab-listing-order,body.theme-light .tab.tab-listing-order,body.theme-black .tab.tab-listing-order,body.theme-dark .tab.tab-listing-order { - border-color: #282a36; -} - -body:not(.theme) .tab.tab-listing-order .tab-item,body.theme-light .tab.tab-listing-order .tab-item,body.theme-black .tab.tab-listing-order .tab-item,body.theme-dark .tab.tab-listing-order .tab-item { - margin: 4px; - padding: 0; - background-color: #282a36; -} - -body:not(.theme) .tab.tab-listing-order .tab-item:first-child,body.theme-light .tab.tab-listing-order .tab-item:first-child,body.theme-black .tab.tab-listing-order .tab-item:first-child,body.theme-dark .tab.tab-listing-order .tab-item:first-child { - margin-left: 0; -} - -body:not(.theme) .tab.tab-listing-order .tab-item:last-child,body.theme-light .tab.tab-listing-order .tab-item:last-child,body.theme-black .tab.tab-listing-order .tab-item:last-child,body.theme-dark .tab.tab-listing-order .tab-item:last-child { - margin-right: 0; -} - -body:not(.theme) .tab.tab-listing-order .tab-item a,body.theme-light .tab.tab-listing-order .tab-item a,body.theme-black .tab.tab-listing-order .tab-item a,body.theme-dark .tab.tab-listing-order .tab-item a { - color: #8be9fd; - margin: 0; - padding: 4px 8px; -} - -body:not(.theme) .tab.tab-listing-order .tab-item a:hover,body:not(.theme) .tab.tab-listing-order .tab-item a:active,body:not(.theme) .tab.tab-listing-order .tab-item a:focus,body.theme-light .tab.tab-listing-order .tab-item a:hover,body.theme-light .tab.tab-listing-order .tab-item a:active,body.theme-light .tab.tab-listing-order .tab-item a:focus,body.theme-black .tab.tab-listing-order .tab-item a:hover,body.theme-black .tab.tab-listing-order .tab-item a:active,body.theme-black .tab.tab-listing-order .tab-item a:focus,body.theme-dark .tab.tab-listing-order .tab-item a:hover,body.theme-dark .tab.tab-listing-order .tab-item a:active,body.theme-dark .tab.tab-listing-order .tab-item a:focus { - color: #8be9fd; -} - -body:not(.theme) .tab.tab-listing-order .tab-item.active a,body.theme-light .tab.tab-listing-order .tab-item.active a,body.theme-black .tab.tab-listing-order .tab-item.active a,body.theme-dark .tab.tab-listing-order .tab-item.active a { - color: #ff79c6; - border-color: #ff79c6; -} - -body:not(.theme) .form-select:not([multiple]):not([size]),body.theme-light .form-select:not([multiple]):not([size]),body.theme-black .form-select:not([multiple]):not([size]),body.theme-dark .form-select:not([multiple]):not([size]) { - border: 1px solid #6272a4; - background-color: #282a36; - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23f8f8f2'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E"); -} - -body:not(.theme) .message-list thead th,body.theme-light .message-list thead th,body.theme-dark .message-list thead th,body.theme-black .message-list thead th { - border-color: #6272a4; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n),body.theme-light .message-list tbody tr:nth-of-type(n),body.theme-dark .message-list tbody tr:nth-of-type(n),body.theme-black .message-list tbody tr:nth-of-type(n) { - background-color: #282a36; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n) td,body.theme-light .message-list tbody tr:nth-of-type(n) td,body.theme-dark .message-list tbody tr:nth-of-type(n) td,body.theme-black .message-list tbody tr:nth-of-type(n) td { - border-color: #44475a; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a { - color: #8be9fd; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus { - color: #ff79c6; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited { - color: #8be9fd; -} - -body:not(.theme) .message,body.theme-light .message,body.theme-dark .message,body.theme-black .message { - border-color: #282a36; -} - -body:not(.theme) .message header,body.theme-light .message header,body.theme-dark .message header,body.theme-black .message header { - color: #f8f8f2; - background-color: #282a36; -} - -body:not(.theme) .toast,body.theme-light .toast,body.theme-dark .toast,body.theme-black .toast { - color: #f8f8f2; - border-color: #6272a4; - background-color: #282a36; -} - -body:not(.theme) .divider,body.theme-light .divider,body.theme-dark .divider,body.theme-black .divider { - border-color: #282a36; -} - -body:not(.theme) .empty-subtitle,body.theme-light .empty-subtitle,body.theme-dark .empty-subtitle,body.theme-black .empty-subtitle { - color: #f8f8f2; -} - -body:not(.theme) .post-listing .topic,body.theme-light .post-listing .topic,body.theme-dark .post-listing .topic,body.theme-black .post-listing .topic { - background-color: #282a36; -} - -body:not(.theme) .post-listing .label-topic-tag,body.theme-light .post-listing .label-topic-tag,body.theme-dark .post-listing .label-topic-tag,body.theme-black .post-listing .label-topic-tag { - color: #6272a4; -} - -body:not(.theme) .link-user,body.theme-light .link-user,body.theme-dark .link-user,body.theme-black .link-user { - color: #50fa7b; -} - -body:not(.theme) .link-user:hover,body:not(.theme) .link-user:active,body:not(.theme) .link-user:focus,body.theme-light .link-user:hover,body.theme-light .link-user:active,body.theme-light .link-user:focus,body.theme-dark .link-user:hover,body.theme-dark .link-user:active,body.theme-dark .link-user:focus,body.theme-black .link-user:hover,body.theme-black .link-user:active,body.theme-black .link-user:focus { - color: #ff79c6; -} - -body:not(.theme) .link-user:visited,body.theme-light .link-user:visited,body.theme-dark .link-user:visited,body.theme-black .link-user:visited { - color: #50fa7b; -} - -body:not(.theme) .link-user:visited:hover,body:not(.theme) .link-user:visited:active,body:not(.theme) .link-user:visited:focus,body.theme-light .link-user:visited:hover,body.theme-light .link-user:visited:active,body.theme-light .link-user:visited:focus,body.theme-dark .link-user:visited:hover,body.theme-dark .link-user:visited:active,body.theme-dark .link-user:visited:focus,body.theme-black .link-user:visited:hover,body.theme-black .link-user:visited:active,body.theme-black .link-user:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .label-topic-tag a,body.theme-light .label-topic-tag a,body.theme-dark .label-topic-tag a,body.theme-black .label-topic-tag a { - color: #6272a4; -} - -body:not(.theme) .label-topic-tag a:hover,body:not(.theme) .label-topic-tag a:active,body:not(.theme) .label-topic-tag a:focus,body.theme-light .label-topic-tag a:hover,body.theme-light .label-topic-tag a:active,body.theme-light .label-topic-tag a:focus,body.theme-dark .label-topic-tag a:hover,body.theme-dark .label-topic-tag a:active,body.theme-dark .label-topic-tag a:focus,body.theme-black .label-topic-tag a:hover,body.theme-black .label-topic-tag a:active,body.theme-black .label-topic-tag a:focus { - color: #ff79c6; -} - -body:not(.theme) .text-secondary,body.theme-light .text-secondary,body.theme-dark .text-secondary,body.theme-black .text-secondary { - font-style: normal; - font-weight: bold; - color: #6272a4; -} - -body:not(.theme) .text-warning,body.theme-light .text-warning,body.theme-dark .text-warning,body.theme-black .text-warning { - color: #282a36; - background-color: #ffb86c; - padding: 10px; -} - -body:not(.theme) blockquote.text-warning,body.theme-light blockquote.text-warning,body.theme-dark blockquote.text-warning,body.theme-black blockquote.text-warning { - color: #f8f8f2; - background-color: #282a36; -} - -body:not(.theme) .form-status-success,body.theme-light .form-status-success,body.theme-dark .form-status-success,body.theme-black .form-status-success { - color: #50fa7b; -} - -body:not(.theme) .form-status-error,body.theme-light .form-status-error,body.theme-dark .form-status-error,body.theme-black .form-status-error { - color: #f55; -} - -body:not(.theme) .is-comment-new .comment-text,body.theme-light .is-comment-new .comment-text,body.theme-dark .is-comment-new .comment-text,body.theme-black .is-comment-new .comment-text { - color: #f8f8f2; -} - -body:not(.theme) .is-topic-official h1 a:visited,body.theme-light .is-topic-official h1 a:visited,body.theme-dark .is-topic-official h1 a:visited,body.theme-black .is-topic-official h1 a:visited { - color: #f55; -} - -body:not(.theme) .label-topic-tag-spoiler,body.theme-light .label-topic-tag-spoiler,body.theme-dark .label-topic-tag-spoiler,body.theme-black .label-topic-tag-spoiler { - background-color: #f1fa8c; -} - -body:not(.theme) .label-topic-tag-spoiler a,body.theme-light .label-topic-tag-spoiler a,body.theme-dark .label-topic-tag-spoiler a,body.theme-black .label-topic-tag-spoiler a { - color: #282a36; -} - -body:not(.theme) .label-topic-tag-nsfw,body.theme-light .label-topic-tag-nsfw,body.theme-dark .label-topic-tag-nsfw,body.theme-black .label-topic-tag-nsfw { - background-color: #f55; -} - -body:not(.theme) .label-topic-tag-nsfw a,body.theme-light .label-topic-tag-nsfw a,body.theme-dark .label-topic-tag-nsfw a,body.theme-black .label-topic-tag-nsfw a { - color: #282a36; -} - -body:not(.theme) .topic-voting.btn,body.theme-light .topic-voting.btn,body.theme-dark .topic-voting.btn,body.theme-black .topic-voting.btn { - border-style: solid; -} - -body:not(.theme) .btn,body:not(.theme) .btn.btn-link,body.theme-light .btn,body.theme-light .btn.btn-link,body.theme-dark .btn,body.theme-dark .btn.btn-link,body.theme-black .btn,body.theme-black .btn.btn-link { - color: #8be9fd; - border-color: #8be9fd; - background: transparent; -} - -body:not(.theme) .btn:hover,body:not(.theme) .btn:active,body:not(.theme) .btn:focus,body:not(.theme) .btn.btn-link:hover,body:not(.theme) .btn.btn-link:active,body:not(.theme) .btn.btn-link:focus,body.theme-light .btn:hover,body.theme-light .btn:active,body.theme-light .btn:focus,body.theme-light .btn.btn-link:hover,body.theme-light .btn.btn-link:active,body.theme-light .btn.btn-link:focus,body.theme-dark .btn:hover,body.theme-dark .btn:active,body.theme-dark .btn:focus,body.theme-dark .btn.btn-link:hover,body.theme-dark .btn.btn-link:active,body.theme-dark .btn.btn-link:focus,body.theme-black .btn:hover,body.theme-black .btn:active,body.theme-black .btn:focus,body.theme-black .btn.btn-link:hover,body.theme-black .btn.btn-link:active,body.theme-black .btn.btn-link:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .btn:visited,body:not(.theme) .btn.btn-link:visited,body.theme-light .btn:visited,body.theme-light .btn.btn-link:visited,body.theme-dark .btn:visited,body.theme-dark .btn.btn-link:visited,body.theme-black .btn:visited,body.theme-black .btn.btn-link:visited { - color: #8be9fd; - border-color: #8be9fd; - background: transparent; -} - -body:not(.theme) .btn:visited:hover,body:not(.theme) .btn:visited:active,body:not(.theme) .btn:visited:focus,body:not(.theme) .btn.btn-link:visited:hover,body:not(.theme) .btn.btn-link:visited:active,body:not(.theme) .btn.btn-link:visited:focus,body.theme-light .btn:visited:hover,body.theme-light .btn:visited:active,body.theme-light .btn:visited:focus,body.theme-light .btn.btn-link:visited:hover,body.theme-light .btn.btn-link:visited:active,body.theme-light .btn.btn-link:visited:focus,body.theme-dark .btn:visited:hover,body.theme-dark .btn:visited:active,body.theme-dark .btn:visited:focus,body.theme-dark .btn.btn-link:visited:hover,body.theme-dark .btn.btn-link:visited:active,body.theme-dark .btn.btn-link:visited:focus,body.theme-black .btn:visited:hover,body.theme-black .btn:visited:active,body.theme-black .btn:visited:focus,body.theme-black .btn.btn-link:visited:hover,body.theme-black .btn.btn-link:visited:active,body.theme-black .btn.btn-link:visited:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .btn-used,body:not(.theme) .topic-voting.btn-used,body.theme-light .btn-used,body.theme-light .topic-voting.btn-used,body.theme-dark .btn-used,body.theme-dark .topic-voting.btn-used,body.theme-black .btn-used,body.theme-black .topic-voting.btn-used { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .btn-used:hover,body:not(.theme) .btn-used:active,body:not(.theme) .btn-used:focus,body:not(.theme) .topic-voting.btn-used:hover,body:not(.theme) .topic-voting.btn-used:active,body:not(.theme) .topic-voting.btn-used:focus,body.theme-light .btn-used:hover,body.theme-light .btn-used:active,body.theme-light .btn-used:focus,body.theme-light .topic-voting.btn-used:hover,body.theme-light .topic-voting.btn-used:active,body.theme-light .topic-voting.btn-used:focus,body.theme-dark .btn-used:hover,body.theme-dark .btn-used:active,body.theme-dark .btn-used:focus,body.theme-dark .topic-voting.btn-used:hover,body.theme-dark .topic-voting.btn-used:active,body.theme-dark .topic-voting.btn-used:focus,body.theme-black .btn-used:hover,body.theme-black .btn-used:active,body.theme-black .btn-used:focus,body.theme-black .topic-voting.btn-used:hover,body.theme-black .topic-voting.btn-used:active,body.theme-black .topic-voting.btn-used:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .btn.btn-primary,body.theme-light .btn.btn-primary,body.theme-dark .btn.btn-primary,body.theme-black .btn.btn-primary { - color: #282a36; - background: #8be9fd; - border-color: #8be9fd; -} - -body:not(.theme) .btn.btn-primary:hover,body:not(.theme) .btn.btn-primary:active,body:not(.theme) .btn.btn-primary:focus,body.theme-light .btn.btn-primary:hover,body.theme-light .btn.btn-primary:active,body.theme-light .btn.btn-primary:focus,body.theme-dark .btn.btn-primary:hover,body.theme-dark .btn.btn-primary:active,body.theme-dark .btn.btn-primary:focus,body.theme-black .btn.btn-primary:hover,body.theme-black .btn.btn-primary:active,body.theme-black .btn.btn-primary:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -.is-topic-official { - border-left-color: #f55 !important; -} - -.is-topic-official h1 a { - color: #f55; -} - -.is-topic-mine { - border-left-color: #bd93f9 !important; -} - -.is-topic-mine h1 a { - color: #bd93f9; -} - -.is-topic-mine .topic-voting { - color: #f8f8f2; -} - -.is-topic-mine h1 a:visited { - color: #bd93f9; -} - -.topic-icon { - border-color: #8be9fd; -} - -.is-comment-by-op>.comment-itself { - border-color: #f1fa8c !important; -} - -.is-comment-mine>.comment-itself { - border-color: #bd93f9 !important; -} - -.is-comment-exemplary>.comment-itself { - border-color: #8be9fd !important; -} - -.is-comment-new>.comment-itself { - border-color: #ffb86c !important; -} - -.is-message-mine { - border-left-color: #bd93f9 !important; -} - -body:not(.theme) .settings-list,body.theme-light .settings-list,body.theme-dark .settings-list,body.theme-black .settings-list { - margin-left: 0px; -} - -body:not(.theme) .settings-list li,body.theme-light .settings-list li,body.theme-dark .settings-list li,body.theme-black .settings-list li { - background-color: #282a36; - border: 1px solid #6272a4; - padding: 15px; - margin-top: 15px; - margin-bottom: 15px; -} - -body:not(.theme) .settings-list a,body.theme-light .settings-list a,body.theme-dark .settings-list a,body.theme-black .settings-list a { - color: #8be9fd; -} - -body:not(.theme) .settings-list a:hover,body:not(.theme) .settings-list a:active,body:not(.theme) .settings-list a:focus,body.theme-light .settings-list a:hover,body.theme-light .settings-list a:active,body.theme-light .settings-list a:focus,body.theme-dark .settings-list a:hover,body.theme-dark .settings-list a:active,body.theme-dark .settings-list a:focus,body.theme-black .settings-list a:hover,body.theme-black .settings-list a:active,body.theme-black .settings-list a:focus { - color: #ff79c6; -} - -body:not(.theme) .settings-list a:visited,body.theme-light .settings-list a:visited,body.theme-dark .settings-list a:visited,body.theme-black .settings-list a:visited { - color: #8be9fd; -} - -body:not(.theme) .settings-list a:visited:hover,body:not(.theme) .settings-list a:visited:active,body:not(.theme) .settings-list a:visited:focus,body.theme-light .settings-list a:visited:hover,body.theme-light .settings-list a:visited:active,body.theme-light .settings-list a:visited:focus,body.theme-dark .settings-list a:visited:hover,body.theme-dark .settings-list a:visited:active,body.theme-dark .settings-list a:visited:focus,body.theme-black .settings-list a:visited:hover,body.theme-black .settings-list a:visited:active,body.theme-black .settings-list a:visited:focus { - color: #ff79c6; -} - -#sidebar form[action='/logout']>button:hover,#sidebar form[action='/logout']>button:active,#sidebar form[action='/logout']>button:focus { - border-color: transparent; - background-color: transparent; -} - -#sidebar .nav .nav-item a,#sidebar form[action='/logout']>button { - color: #ffb86c; -} - -#sidebar .nav .nav-item a:hover,#sidebar .nav .nav-item a:active,#sidebar .nav .nav-item a:focus,#sidebar form[action='/logout']>button:hover,#sidebar form[action='/logout']>button:active,#sidebar form[action='/logout']>button:focus { - color: #f1fa8c; -} - -#sidebar .nav .nav-item a:visited,#sidebar form[action='/logout']>button:visited { - color: #ffb86c; -} - -#sidebar .nav .nav-item a:visited:hover,#sidebar .nav .nav-item a:visited:active,#sidebar .nav .nav-item a:visited:focus,#sidebar form[action='/logout']>button:visited:hover,#sidebar form[action='/logout']>button:visited:active,#sidebar form[action='/logout']>button:visited:focus { - color: #f1fa8c; -} - -#sidebar .topic-tags { - margin-bottom: 0.5rem; -} - -#sidebar .label-topic-tag { - color: #6272a4; -} - -#sidebar .label-topic-tag:hover { - color: #f8f8f2; - cursor: default; -} - -body:not(.theme) .site-header-logo,body.theme-light .site-header-logo,body.theme-black .site-header-logo,body.theme-dark .site-header-logo { - color: #f8f8f2; -} - -body:not(.theme) .site-header-context,body.theme-light .site-header-context,body.theme-black .site-header-context,body.theme-dark .site-header-context { - color: #ffb86c; -} - -body:not(.theme) .site-header-context:hover,body:not(.theme) .site-header-context:active,body:not(.theme) .site-header-context:focus,body.theme-light .site-header-context:hover,body.theme-light .site-header-context:active,body.theme-light .site-header-context:focus,body.theme-black .site-header-context:hover,body.theme-black .site-header-context:active,body.theme-black .site-header-context:focus,body.theme-dark .site-header-context:hover,body.theme-dark .site-header-context:active,body.theme-dark .site-header-context:focus { - color: #f1fa8c; -} - -body:not(.theme) .logged-in-user-username,body.theme-light .logged-in-user-username,body.theme-black .logged-in-user-username,body.theme-dark .logged-in-user-username { - color: #50fa7b; -} - -body:not(.theme) .logged-in-user-username:hover,body:not(.theme) .logged-in-user-username:active,body:not(.theme) .logged-in-user-username:focus,body.theme-light .logged-in-user-username:hover,body.theme-light .logged-in-user-username:active,body.theme-light .logged-in-user-username:focus,body.theme-black .logged-in-user-username:hover,body.theme-black .logged-in-user-username:active,body.theme-black .logged-in-user-username:focus,body.theme-dark .logged-in-user-username:hover,body.theme-dark .logged-in-user-username:active,body.theme-dark .logged-in-user-username:focus { - color: #ff79c6; -} - -body:not(.theme) .logged-in-user-alert,body.theme-light .logged-in-user-alert,body.theme-black .logged-in-user-alert,body.theme-dark .logged-in-user-alert { - color: #282a36; - background-color: #ffb86c; - padding: 0.1rem 0.3rem; - margin-top: 0.2rem; - justify-content: left; -} - -body:not(.theme) .logged-in-user-alert:hover,body:not(.theme) .logged-in-user-alert:active,body:not(.theme) .logged-in-user-alert:focus,body.theme-light .logged-in-user-alert:hover,body.theme-light .logged-in-user-alert:active,body.theme-light .logged-in-user-alert:focus,body.theme-black .logged-in-user-alert:hover,body.theme-black .logged-in-user-alert:active,body.theme-black .logged-in-user-alert:focus,body.theme-dark .logged-in-user-alert:hover,body.theme-dark .logged-in-user-alert:active,body.theme-dark .logged-in-user-alert:focus { - background-color: #f1fa8c; -} - -body>header>a:nth-child(1):not(.no-header-logo) { - color: #f8f8f2; - background-size: 32px 32px; - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAMAAADQmBKKAAAAHlBMVEUoKjZQ+nticqSL6f29k/nx+oz/VVX/ecb/uGz///+3yBn7AAAAaklEQVR42u3Oxw2AQAADsNDZf2IGyO8kioQ9gQMAAAAAcLelCAkJCQkJCQkJ/Tk0lZS5ZMhZhISEhISEhISEvhbaSoasJWUvKUJCQkJCQkJCQu+GnnSUFCEhISEhISEhoXdDAAAAAAA3uwDrCC2R1NNC7QAAAABJRU5ErkJggg=="); -} - -.user-label { - border-radius: 0 !important; - padding: 3px 5px !important; -} - -.label-edit-box { - color: #f8f8f2 !important; - background-color: #282a36 !important; -} - -.label-edit-box input { - border: 1px solid #6272a4 !important; - background-color: #44475a !important; -} - -.label-light,.label-dark { - color: transparent !important; -} - -.bg-none { - color: #f8f8f2 !important; - border-color: #6272a4 !important; -} - -.bg-red { - color: #282a36 !important; - background-color: #f55 !important; -} - -.bg-orangered { - color: #282a36 !important; - background-color: #ffb86c !important; -} - -.bg-orange { - color: #282a36 !important; - background-color: #f1fa8c !important; -} - -.bg-dodgerblue { - color: #282a36 !important; - background-color: #8be9fd !important; -} - -.bg-forestgreen { - color: #282a36 !important; - background-color: #50fa7b !important; -} - -.bg-slategray { - color: #f8f8f2 !important; - background-color: #44475a !important; -} - -body:not(.theme) .topic-full .topic-full-byline,body.theme-light .topic-full .topic-full-byline,body.theme-dark .topic-full .topic-full-byline,body.theme-black .topic-full .topic-full-byline { - color: #f8f8f2; -} - -body:not(.theme) .topic-full .topic-full-text a,body.theme-light .topic-full .topic-full-text a,body.theme-dark .topic-full .topic-full-text a,body.theme-black .topic-full .topic-full-text a { - color: #8be9fd; -} - -body:not(.theme) .topic-full .topic-full-text a:hover,body:not(.theme) .topic-full .topic-full-text a:active,body:not(.theme) .topic-full .topic-full-text a:focus,body.theme-light .topic-full .topic-full-text a:hover,body.theme-light .topic-full .topic-full-text a:active,body.theme-light .topic-full .topic-full-text a:focus,body.theme-dark .topic-full .topic-full-text a:hover,body.theme-dark .topic-full .topic-full-text a:active,body.theme-dark .topic-full .topic-full-text a:focus,body.theme-black .topic-full .topic-full-text a:hover,body.theme-black .topic-full .topic-full-text a:active,body.theme-black .topic-full .topic-full-text a:focus { - color: #ff79c6; -} - -body:not(.theme) .topic-full .topic-full-text a:visited,body.theme-light .topic-full .topic-full-text a:visited,body.theme-dark .topic-full .topic-full-text a:visited,body.theme-black .topic-full .topic-full-text a:visited { - color: #8be9fd; -} - -body:not(.theme) .topic-full .topic-full-text a:visited:hover,body:not(.theme) .topic-full .topic-full-text a:visited:active,body:not(.theme) .topic-full .topic-full-text a:visited:focus,body.theme-light .topic-full .topic-full-text a:visited:hover,body.theme-light .topic-full .topic-full-text a:visited:active,body.theme-light .topic-full .topic-full-text a:visited:focus,body.theme-dark .topic-full .topic-full-text a:visited:hover,body.theme-dark .topic-full .topic-full-text a:visited:active,body.theme-dark .topic-full .topic-full-text a:visited:focus,body.theme-black .topic-full .topic-full-text a:visited:hover,body.theme-black .topic-full .topic-full-text a:visited:active,body.theme-black .topic-full .topic-full-text a:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .topic-listing>li:nth-of-type(n),body.theme-light .topic-listing>li:nth-of-type(n),body.theme-dark .topic-listing>li:nth-of-type(n),body.theme-black .topic-listing>li:nth-of-type(n) { - background-color: #282a36; -} - -body:not(.theme) .topic-info,body.theme-light .topic-info,body.theme-dark .topic-info,body.theme-black .topic-info { - color: #f8f8f2; - background-color: #282a36; -} - -body:not(.theme) .time-responsive-full,body.theme-light .time-responsive-full,body.theme-dark .time-responsive-full,body.theme-black .time-responsive-full { - color: #f8f8f2; -} - -body:not(.theme) .topic-content-metadata,body.theme-light .topic-content-metadata,body.theme-dark .topic-content-metadata,body.theme-black .topic-content-metadata { - color: #f8f8f2; -} - -body:not(.theme) .topic-text-excerpt,body.theme-light .topic-text-excerpt,body.theme-dark .topic-text-excerpt,body.theme-black .topic-text-excerpt { - color: #6272a4; -} - -body:not(.theme) .topic-text-excerpt[open],body.theme-light .topic-text-excerpt[open],body.theme-dark .topic-text-excerpt[open],body.theme-black .topic-text-excerpt[open] { - color: #f8f8f2; -} - -body:not(.theme) .topic-text-excerpt summary,body:not(.theme) .topic-text-excerpt summary::after,body.theme-light .topic-text-excerpt summary,body.theme-light .topic-text-excerpt summary::after,body.theme-dark .topic-text-excerpt summary,body.theme-dark .topic-text-excerpt summary::after,body.theme-black .topic-text-excerpt summary,body.theme-black .topic-text-excerpt summary::after { - color: #6272a4; -} - -body:not(.theme) .link-group,body.theme-light .link-group,body.theme-dark .link-group,body.theme-black .link-group { - color: #ffb86c; -} - -body:not(.theme) .link-group:hover,body:not(.theme) .link-group:active,body:not(.theme) .link-group:focus,body.theme-light .link-group:hover,body.theme-light .link-group:active,body.theme-light .link-group:focus,body.theme-dark .link-group:hover,body.theme-dark .link-group:active,body.theme-dark .link-group:focus,body.theme-black .link-group:hover,body.theme-black .link-group:active,body.theme-black .link-group:focus { - color: #f1fa8c; -} - -body:not(.theme) .topic-info-comments a .topic-info-comments-new,body.theme-light .topic-info-comments a .topic-info-comments-new,body.theme-dark .topic-info-comments a .topic-info-comments-new,body.theme-black .topic-info-comments a .topic-info-comments-new { - color: #ffb86c; -} - -body:not(.theme) .topic-info-comments a:hover,body:not(.theme) .topic-info-comments a:active,body:not(.theme) .topic-info-comments a:focus,body.theme-light .topic-info-comments a:hover,body.theme-light .topic-info-comments a:active,body.theme-light .topic-info-comments a:focus,body.theme-dark .topic-info-comments a:hover,body.theme-dark .topic-info-comments a:active,body.theme-dark .topic-info-comments a:focus,body.theme-black .topic-info-comments a:hover,body.theme-black .topic-info-comments a:active,body.theme-black .topic-info-comments a:focus { - color: #ff79c6; -} - -body:not(.theme) .topic-info-comments a:hover .topic-info-comments-new,body:not(.theme) .topic-info-comments a:active .topic-info-comments-new,body:not(.theme) .topic-info-comments a:focus .topic-info-comments-new,body.theme-light .topic-info-comments a:hover .topic-info-comments-new,body.theme-light .topic-info-comments a:active .topic-info-comments-new,body.theme-light .topic-info-comments a:focus .topic-info-comments-new,body.theme-dark .topic-info-comments a:hover .topic-info-comments-new,body.theme-dark .topic-info-comments a:active .topic-info-comments-new,body.theme-dark .topic-info-comments a:focus .topic-info-comments-new,body.theme-black .topic-info-comments a:hover .topic-info-comments-new,body.theme-black .topic-info-comments a:active .topic-info-comments-new,body.theme-black .topic-info-comments a:focus .topic-info-comments-new { - color: #f1fa8c; -} - -body:not(.theme) .topic-info-comments a:visited,body.theme-light .topic-info-comments a:visited,body.theme-dark .topic-info-comments a:visited,body.theme-black .topic-info-comments a:visited { - color: #8be9fd; -} - -body:not(.theme) .topic-info-comments a:visited:hover,body:not(.theme) .topic-info-comments a:visited:active,body:not(.theme) .topic-info-comments a:visited:focus,body.theme-light .topic-info-comments a:visited:hover,body.theme-light .topic-info-comments a:visited:active,body.theme-light .topic-info-comments a:visited:focus,body.theme-dark .topic-info-comments a:visited:hover,body.theme-dark .topic-info-comments a:visited:active,body.theme-dark .topic-info-comments a:visited:focus,body.theme-black .topic-info-comments a:visited:hover,body.theme-black .topic-info-comments a:visited:active,body.theme-black .topic-info-comments a:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .topic-info-comments a:visited:hover .topic-info-comments-new,body:not(.theme) .topic-info-comments a:visited:active .topic-info-comments-new,body:not(.theme) .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:focus .topic-info-comments-new { - color: #f1fa8c; -} +body:not(.theme) .highlight .syntax-c,body.theme-light .highlight .syntax-c,body.theme-dark .highlight .syntax-c,body.theme-black .highlight .syntax-c{color:#8be9fd}body:not(.theme) .highlight .syntax-err,body.theme-light .highlight .syntax-err,body.theme-dark .highlight .syntax-err,body.theme-black .highlight .syntax-err{color:#f8f8f2}body:not(.theme) .highlight .syntax-g,body.theme-light .highlight .syntax-g,body.theme-dark .highlight .syntax-g,body.theme-black .highlight .syntax-g{color:#f8f8f2}body:not(.theme) .highlight .syntax-k,body.theme-light .highlight .syntax-k,body.theme-dark .highlight .syntax-k,body.theme-black .highlight .syntax-k{color:#50fa7b}body:not(.theme) .highlight .syntax-l,body.theme-light .highlight .syntax-l,body.theme-dark .highlight .syntax-l,body.theme-black .highlight .syntax-l{color:#f8f8f2}body:not(.theme) .highlight .syntax-n,body.theme-light .highlight .syntax-n,body.theme-dark .highlight .syntax-n,body.theme-black .highlight .syntax-n{color:#f8f8f2}body:not(.theme) .highlight .syntax-o,body.theme-light .highlight .syntax-o,body.theme-dark .highlight .syntax-o,body.theme-black .highlight .syntax-o{color:#50fa7b}body:not(.theme) .highlight .syntax-x,body.theme-light .highlight .syntax-x,body.theme-dark .highlight .syntax-x,body.theme-black .highlight .syntax-x{color:#ffb86c}body:not(.theme) .highlight .syntax-p,body.theme-light .highlight .syntax-p,body.theme-dark .highlight .syntax-p,body.theme-black .highlight .syntax-p{color:#f8f8f2}body:not(.theme) .highlight .syntax-cm,body.theme-light .highlight .syntax-cm,body.theme-dark .highlight .syntax-cm,body.theme-black .highlight .syntax-cm{color:#8be9fd}body:not(.theme) .highlight .syntax-cp,body.theme-light .highlight .syntax-cp,body.theme-dark .highlight .syntax-cp,body.theme-black .highlight .syntax-cp{color:#50fa7b}body:not(.theme) .highlight .syntax-c1,body.theme-light .highlight .syntax-c1,body.theme-dark .highlight .syntax-c1,body.theme-black .highlight .syntax-c1{color:#8be9fd}body:not(.theme) .highlight .syntax-cs,body.theme-light .highlight .syntax-cs,body.theme-dark .highlight .syntax-cs,body.theme-black .highlight .syntax-cs{color:#50fa7b}body:not(.theme) .highlight .syntax-gd,body.theme-light .highlight .syntax-gd,body.theme-dark .highlight .syntax-gd,body.theme-black .highlight .syntax-gd{color:#bd93f9}body:not(.theme) .highlight .syntax-ge,body.theme-light .highlight .syntax-ge,body.theme-dark .highlight .syntax-ge,body.theme-black .highlight .syntax-ge{color:#f8f8f2;font-style:italic}body:not(.theme) .highlight .syntax-gr,body.theme-light .highlight .syntax-gr,body.theme-dark .highlight .syntax-gr,body.theme-black .highlight .syntax-gr{color:#f55}body:not(.theme) .highlight .syntax-gh,body.theme-light .highlight .syntax-gh,body.theme-dark .highlight .syntax-gh,body.theme-black .highlight .syntax-gh{color:#ffb86c}body:not(.theme) .highlight .syntax-gi,body.theme-light .highlight .syntax-gi,body.theme-dark .highlight .syntax-gi,body.theme-black .highlight .syntax-gi{color:#50fa7b}body:not(.theme) .highlight .syntax-go,body.theme-light .highlight .syntax-go,body.theme-dark .highlight .syntax-go,body.theme-black .highlight .syntax-go{color:#f8f8f2}body:not(.theme) .highlight .syntax-gp,body.theme-light .highlight .syntax-gp,body.theme-dark .highlight .syntax-gp,body.theme-black .highlight .syntax-gp{color:#f8f8f2}body:not(.theme) .highlight .syntax-gs,body.theme-light .highlight .syntax-gs,body.theme-dark .highlight .syntax-gs,body.theme-black .highlight .syntax-gs{color:#f8f8f2;font-weight:bold}body:not(.theme) .highlight .syntax-gu,body.theme-light .highlight .syntax-gu,body.theme-dark .highlight .syntax-gu,body.theme-black .highlight .syntax-gu{color:#ffb86c}body:not(.theme) .highlight .syntax-gt,body.theme-light .highlight .syntax-gt,body.theme-dark .highlight .syntax-gt,body.theme-black .highlight .syntax-gt{color:#f8f8f2}body:not(.theme) .highlight .syntax-kc,body.theme-light .highlight .syntax-kc,body.theme-dark .highlight .syntax-kc,body.theme-black .highlight .syntax-kc{color:#ffb86c}body:not(.theme) .highlight .syntax-kd,body.theme-light .highlight .syntax-kd,body.theme-dark .highlight .syntax-kd,body.theme-black .highlight .syntax-kd{color:#ff79c6}body:not(.theme) .highlight .syntax-kn,body.theme-light .highlight .syntax-kn,body.theme-dark .highlight .syntax-kn,body.theme-black .highlight .syntax-kn{color:#50fa7b}body:not(.theme) .highlight .syntax-kp,body.theme-light .highlight .syntax-kp,body.theme-dark .highlight .syntax-kp,body.theme-black .highlight .syntax-kp{color:#50fa7b}body:not(.theme) .highlight .syntax-kr,body.theme-light .highlight .syntax-kr,body.theme-dark .highlight .syntax-kr,body.theme-black .highlight .syntax-kr{color:#ff79c6}body:not(.theme) .highlight .syntax-kt,body.theme-light .highlight .syntax-kt,body.theme-dark .highlight .syntax-kt,body.theme-black .highlight .syntax-kt{color:#f55}body:not(.theme) .highlight .syntax-ld,body.theme-light .highlight .syntax-ld,body.theme-dark .highlight .syntax-ld,body.theme-black .highlight .syntax-ld{color:#f8f8f2}body:not(.theme) .highlight .syntax-m,body.theme-light .highlight .syntax-m,body.theme-dark .highlight .syntax-m,body.theme-black .highlight .syntax-m{color:#bd93f9}body:not(.theme) .highlight .syntax-s,body.theme-light .highlight .syntax-s,body.theme-dark .highlight .syntax-s,body.theme-black .highlight .syntax-s{color:#bd93f9}body:not(.theme) .highlight .syntax-na,body.theme-light .highlight .syntax-na,body.theme-dark .highlight .syntax-na,body.theme-black .highlight .syntax-na{color:#f8f8f2}body:not(.theme) .highlight .syntax-nb,body.theme-light .highlight .syntax-nb,body.theme-dark .highlight .syntax-nb,body.theme-black .highlight .syntax-nb{color:#ffb86c}body:not(.theme) .highlight .syntax-nc,body.theme-light .highlight .syntax-nc,body.theme-dark .highlight .syntax-nc,body.theme-black .highlight .syntax-nc{color:#ff79c6}body:not(.theme) .highlight .syntax-no,body.theme-light .highlight .syntax-no,body.theme-dark .highlight .syntax-no,body.theme-black .highlight .syntax-no{color:#ffb86c}body:not(.theme) .highlight .syntax-nd,body.theme-light .highlight .syntax-nd,body.theme-dark .highlight .syntax-nd,body.theme-black .highlight .syntax-nd{color:#ff79c6}body:not(.theme) .highlight .syntax-ni,body.theme-light .highlight .syntax-ni,body.theme-dark .highlight .syntax-ni,body.theme-black .highlight .syntax-ni{color:#ffb86c}body:not(.theme) .highlight .syntax-ne,body.theme-light .highlight .syntax-ne,body.theme-dark .highlight .syntax-ne,body.theme-black .highlight .syntax-ne{color:#ffb86c}body:not(.theme) .highlight .syntax-nf,body.theme-light .highlight .syntax-nf,body.theme-dark .highlight .syntax-nf,body.theme-black .highlight .syntax-nf{color:#ff79c6}body:not(.theme) .highlight .syntax-nl,body.theme-light .highlight .syntax-nl,body.theme-dark .highlight .syntax-nl,body.theme-black .highlight .syntax-nl{color:#f8f8f2}body:not(.theme) .highlight .syntax-nn,body.theme-light .highlight .syntax-nn,body.theme-dark .highlight .syntax-nn,body.theme-black .highlight .syntax-nn{color:#f8f8f2}body:not(.theme) .highlight .syntax-nx,body.theme-light .highlight .syntax-nx,body.theme-dark .highlight .syntax-nx,body.theme-black .highlight .syntax-nx{color:#f8f8f2}body:not(.theme) .highlight .syntax-py,body.theme-light .highlight .syntax-py,body.theme-dark .highlight .syntax-py,body.theme-black .highlight .syntax-py{color:#f8f8f2}body:not(.theme) .highlight .syntax-nt,body.theme-light .highlight .syntax-nt,body.theme-dark .highlight .syntax-nt,body.theme-black .highlight .syntax-nt{color:#ff79c6}body:not(.theme) .highlight .syntax-nv,body.theme-light .highlight .syntax-nv,body.theme-dark .highlight .syntax-nv,body.theme-black .highlight .syntax-nv{color:#ff79c6}body:not(.theme) .highlight .syntax-ow,body.theme-light .highlight .syntax-ow,body.theme-dark .highlight .syntax-ow,body.theme-black .highlight .syntax-ow{color:#50fa7b}body:not(.theme) .highlight .syntax-w,body.theme-light .highlight .syntax-w,body.theme-dark .highlight .syntax-w,body.theme-black .highlight .syntax-w{color:#f8f8f2}body:not(.theme) .highlight .syntax-mf,body.theme-light .highlight .syntax-mf,body.theme-dark .highlight .syntax-mf,body.theme-black .highlight .syntax-mf{color:#bd93f9}body:not(.theme) .highlight .syntax-mh,body.theme-light .highlight .syntax-mh,body.theme-dark .highlight .syntax-mh,body.theme-black .highlight .syntax-mh{color:#bd93f9}body:not(.theme) .highlight .syntax-mi,body.theme-light .highlight .syntax-mi,body.theme-dark .highlight .syntax-mi,body.theme-black .highlight .syntax-mi{color:#bd93f9}body:not(.theme) .highlight .syntax-mo,body.theme-light .highlight .syntax-mo,body.theme-dark .highlight .syntax-mo,body.theme-black .highlight .syntax-mo{color:#bd93f9}body:not(.theme) .highlight .syntax-sb,body.theme-light .highlight .syntax-sb,body.theme-dark .highlight .syntax-sb,body.theme-black .highlight .syntax-sb{color:#8be9fd}body:not(.theme) .highlight .syntax-sc,body.theme-light .highlight .syntax-sc,body.theme-dark .highlight .syntax-sc,body.theme-black .highlight .syntax-sc{color:#bd93f9}body:not(.theme) .highlight .syntax-sd,body.theme-light .highlight .syntax-sd,body.theme-dark .highlight .syntax-sd,body.theme-black .highlight .syntax-sd{color:#f8f8f2}body:not(.theme) .highlight .syntax-s2,body.theme-light .highlight .syntax-s2,body.theme-dark .highlight .syntax-s2,body.theme-black .highlight .syntax-s2{color:#bd93f9}body:not(.theme) .highlight .syntax-se,body.theme-light .highlight .syntax-se,body.theme-dark .highlight .syntax-se,body.theme-black .highlight .syntax-se{color:#ffb86c}body:not(.theme) .highlight .syntax-sh,body.theme-light .highlight .syntax-sh,body.theme-dark .highlight .syntax-sh,body.theme-black .highlight .syntax-sh{color:#f8f8f2}body:not(.theme) .highlight .syntax-si,body.theme-light .highlight .syntax-si,body.theme-dark .highlight .syntax-si,body.theme-black .highlight .syntax-si{color:#bd93f9}body:not(.theme) .highlight .syntax-sx,body.theme-light .highlight .syntax-sx,body.theme-dark .highlight .syntax-sx,body.theme-black .highlight .syntax-sx{color:#bd93f9}body:not(.theme) .highlight .syntax-sr,body.theme-light .highlight .syntax-sr,body.theme-dark .highlight .syntax-sr,body.theme-black .highlight .syntax-sr{color:#f55}body:not(.theme) .highlight .syntax-s1,body.theme-light .highlight .syntax-s1,body.theme-dark .highlight .syntax-s1,body.theme-black .highlight .syntax-s1{color:#bd93f9}body:not(.theme) .highlight .syntax-ss,body.theme-light .highlight .syntax-ss,body.theme-dark .highlight .syntax-ss,body.theme-black .highlight .syntax-ss{color:#bd93f9}body:not(.theme) .highlight .syntax-bp,body.theme-light .highlight .syntax-bp,body.theme-dark .highlight .syntax-bp,body.theme-black .highlight .syntax-bp{color:#ff79c6}body:not(.theme) .highlight .syntax-vc,body.theme-light .highlight .syntax-vc,body.theme-dark .highlight .syntax-vc,body.theme-black .highlight .syntax-vc{color:#ff79c6}body:not(.theme) .highlight .syntax-vg,body.theme-light .highlight .syntax-vg,body.theme-dark .highlight .syntax-vg,body.theme-black .highlight .syntax-vg{color:#ff79c6}body:not(.theme) .highlight .syntax-vi,body.theme-light .highlight .syntax-vi,body.theme-dark .highlight .syntax-vi,body.theme-black .highlight .syntax-vi{color:#ff79c6}body:not(.theme) .highlight .syntax-il,body.theme-light .highlight .syntax-il,body.theme-dark .highlight .syntax-il,body.theme-black .highlight .syntax-il{color:#bd93f9}body:not(.theme) .btn-comment-collapse,body.theme-light .btn-comment-collapse,body.theme-dark .btn-comment-collapse,body.theme-black .btn-comment-collapse{color:#8be9fd;border-color:#8be9fd;background:transparent}body:not(.theme) .btn-comment-collapse:hover,body:not(.theme) .btn-comment-collapse:active,body:not(.theme) .btn-comment-collapse:focus,body.theme-light .btn-comment-collapse:hover,body.theme-light .btn-comment-collapse:active,body.theme-light .btn-comment-collapse:focus,body.theme-dark .btn-comment-collapse:hover,body.theme-dark .btn-comment-collapse:active,body.theme-dark .btn-comment-collapse:focus,body.theme-black .btn-comment-collapse:hover,body.theme-black .btn-comment-collapse:active,body.theme-black .btn-comment-collapse:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .comment,body.theme-light .comment,body.theme-dark .comment,body.theme-black .comment{border-color:#282a36}body:not(.theme) .comment:target>.comment-itself,body.theme-light .comment:target>.comment-itself,body.theme-dark .comment:target>.comment-itself,body.theme-black .comment:target>.comment-itself{border-left:3px solid #50fa7b !important}body:not(.theme) .comment .comment-itself header,body.theme-light .comment .comment-itself header,body.theme-dark .comment .comment-itself header,body.theme-black .comment .comment-itself header{background-color:#282a36}body:not(.theme) .comment .comment-nav-link,body.theme-light .comment .comment-nav-link,body.theme-dark .comment .comment-nav-link,body.theme-black .comment .comment-nav-link{color:#8be9fd}body:not(.theme) .comment .comment-nav-link:hover,body:not(.theme) .comment .comment-nav-link:active,body:not(.theme) .comment .comment-nav-link:focus,body.theme-light .comment .comment-nav-link:hover,body.theme-light .comment .comment-nav-link:active,body.theme-light .comment .comment-nav-link:focus,body.theme-dark .comment .comment-nav-link:hover,body.theme-dark .comment .comment-nav-link:active,body.theme-dark .comment .comment-nav-link:focus,body.theme-black .comment .comment-nav-link:hover,body.theme-black .comment .comment-nav-link:active,body.theme-black .comment .comment-nav-link:focus{color:#ff79c6}body:not(.theme) .comment .comment-nav-link:visited,body.theme-light .comment .comment-nav-link:visited,body.theme-dark .comment .comment-nav-link:visited,body.theme-black .comment .comment-nav-link:visited{color:#8be9fd}body:not(.theme) .comment .comment-nav-link:visited:hover,body:not(.theme) .comment .comment-nav-link:visited:active,body:not(.theme) .comment .comment-nav-link:visited:focus,body.theme-light .comment .comment-nav-link:visited:hover,body.theme-light .comment .comment-nav-link:visited:active,body.theme-light .comment .comment-nav-link:visited:focus,body.theme-dark .comment .comment-nav-link:visited:hover,body.theme-dark .comment .comment-nav-link:visited:active,body.theme-dark .comment .comment-nav-link:visited:focus,body.theme-black .comment .comment-nav-link:visited:hover,body.theme-black .comment .comment-nav-link:visited:active,body.theme-black .comment .comment-nav-link:visited:focus{color:#ff79c6}body:not(.theme) .comment .comment-user-info,body.theme-light .comment .comment-user-info,body.theme-dark .comment .comment-user-info,body.theme-black .comment .comment-user-info{color:#f1fa8c}body:not(.theme) .comment .time-responsive-full,body.theme-light .comment .time-responsive-full,body.theme-dark .comment .time-responsive-full,body.theme-black .comment .time-responsive-full{color:#f8f8f2}body:not(.theme) .comment-exemplary-reasons,body.theme-light .comment-exemplary-reasons,body.theme-dark .comment-exemplary-reasons,body.theme-black .comment-exemplary-reasons{background-color:#282a36;padding:5px}body:not(.theme) .comment-exemplary-reasons[open],body.theme-light .comment-exemplary-reasons[open],body.theme-dark .comment-exemplary-reasons[open],body.theme-black .comment-exemplary-reasons[open]{border-bottom:1px solid #8be9fd}body:not(.theme) .comment-exemplary-reasons ul,body.theme-light .comment-exemplary-reasons ul,body.theme-dark .comment-exemplary-reasons ul,body.theme-black .comment-exemplary-reasons ul{margin-left:1.3rem;margin-bottom:0}body:not(.theme) .comment-votes,body.theme-light .comment-votes,body.theme-dark .comment-votes,body.theme-black .comment-votes{color:#f8f8f2}body:not(.theme) .comment[data-comment-depth='0'],body.theme-light .comment[data-comment-depth='0'],body.theme-dark .comment[data-comment-depth='0'],body.theme-black .comment[data-comment-depth='0']{border-color:#282a36}body:not(.theme) .is-comment-collapsed header .link-user,body.theme-light .is-comment-collapsed header .link-user,body.theme-dark .is-comment-collapsed header .link-user,body.theme-black .is-comment-collapsed header .link-user{color:#50fa7b}body:not(.theme) .label-comment-exemplary,body.theme-light .label-comment-exemplary,body.theme-dark .label-comment-exemplary,body.theme-black .label-comment-exemplary{color:#282a36;border-color:#8be9fd;background-color:#8be9fd}body:not(.theme) .btn-post,body.theme-light .btn-post,body.theme-dark .btn-post,body.theme-black .btn-post{padding:0}body:not(.theme) .btn-post-action,body.theme-light .btn-post-action,body.theme-dark .btn-post-action,body.theme-black .btn-post-action{color:#8be9fd;padding:6px 8px;margin:6px;margin-bottom:0px}body:not(.theme) .btn-post-action:hover,body:not(.theme) .btn-post-action:active,body:not(.theme) .btn-post-action:focus,body.theme-light .btn-post-action:hover,body.theme-light .btn-post-action:active,body.theme-light .btn-post-action:focus,body.theme-dark .btn-post-action:hover,body.theme-dark .btn-post-action:active,body.theme-dark .btn-post-action:focus,body.theme-black .btn-post-action:hover,body.theme-black .btn-post-action:active,body.theme-black .btn-post-action:focus{color:#ff79c6;text-decoration:none}body:not(.theme) .btn-post-action-used,body.theme-light .btn-post-action-used,body.theme-dark .btn-post-action-used,body.theme-black .btn-post-action-used{color:#ff79c6;text-decoration:underline}body:not(.theme) .btn-post-action-used:hover,body:not(.theme) .btn-post-action-used:active,body:not(.theme) .btn-post-action-used:focus,body.theme-light .btn-post-action-used:hover,body.theme-light .btn-post-action-used:active,body.theme-light .btn-post-action-used:focus,body.theme-dark .btn-post-action-used:hover,body.theme-dark .btn-post-action-used:active,body.theme-dark .btn-post-action-used:focus,body.theme-black .btn-post-action-used:hover,body.theme-black .btn-post-action-used:active,body.theme-black .btn-post-action-used:focus{color:#8be9fd;text-decoration:underline}.btn-comment-label-exemplary{color:#8be9fd;border-color:#8be9fd}.btn-comment-label-exemplary:hover{color:#8be9fd}.btn-comment-label-exemplary.btn-used:hover{color:#282a36;background-color:#8be9fd}.btn-comment-label-offtopic{color:#50fa7b;border-color:#50fa7b}.btn-comment-label-offtopic:hover{color:#50fa7b}.btn-comment-label-offtopic.btn-used:hover{color:#282a36;background-color:#50fa7b}.btn-comment-label-joke{color:#f1fa8c;border-color:#f1fa8c}.btn-comment-label-joke:hover{color:#f1fa8c}.btn-comment-label-joke.btn-used:hover{color:#282a36;background-color:#f1fa8c}.btn-comment-label-noise{color:#ffb86c;border-color:#ffb86c}.btn-comment-label-noise:hover{color:#ffb86c}.btn-comment-label-noise.btn-used:hover{color:#282a36;background-color:#ffb86c}.btn-comment-label-malice{color:#f55;border-color:#f55}.btn-comment-label-malice:hover{color:#f55}.btn-comment-label-malice.btn-used:hover{color:#282a36;background-color:#f55}.btn-comment-label.btn-used{border:none}body:not(.theme) #page-list,body.theme-light #page-list,body.theme-dark #page-list,body.theme-black #page-list{background-color:#44475a}body:not(.theme) .toc,body.theme-light .toc,body.theme-dark .toc,body.theme-black .toc{background-color:#282a36}body:not(.theme) .highlight:not(code),body.theme-light .highlight:not(code),body.theme-dark .highlight:not(code),body.theme-black .highlight:not(code){color:#f8f8f2;background-color:#6272a4}body:not(.theme) .conspicuous,body.theme-light .conspicuous,body.theme-dark .conspicuous,body.theme-black .conspicuous{color:#f55;font-family:sans-serif}body:not(.theme) .date-info,body.theme-light .date-info,body.theme-dark .date-info,body.theme-black .date-info{color:#f8f8f2}body:not(.theme) .article-summary,body.theme-light .article-summary,body.theme-dark .article-summary,body.theme-black .article-summary{border-color:#f8f8f2}body:not(.theme) .article-summary h2 a,body.theme-light .article-summary h2 a,body.theme-dark .article-summary h2 a,body.theme-black .article-summary h2 a{color:#f8f8f2}body>footer,#site-footer{color:#f8f8f2;background-color:#282a36;padding:0.5rem;font-style:normal;font-weight:bold}body>footer a,#site-footer a{color:#8be9fd}body>footer a:hover,body>footer a:active,body>footer a:focus,#site-footer a:hover,#site-footer a:active,#site-footer a:focus{color:#ff79c6}body>footer a:visited,#site-footer a:visited{color:#8be9fd}body>footer a:visited:hover,body>footer a:visited:active,body>footer a:visited:focus,#site-footer a:visited:hover,#site-footer a:visited:active,#site-footer a:visited:focus{color:#ff79c6}body:not(.theme) .group-list tbody tr:nth-of-type(n),body.theme-light .group-list tbody tr:nth-of-type(n),body.theme-dark .group-list tbody tr:nth-of-type(n),body.Theme-black .group-list tbody tr:nth-of-type(n){background-color:#282a36}body:not(.theme) .group-list tbody tr:nth-of-type(n) td,body.theme-light .group-list tbody tr:nth-of-type(n) td,body.theme-dark .group-list tbody tr:nth-of-type(n) td,body.Theme-black .group-list tbody tr:nth-of-type(n) td{border-color:#44475a}body:not(.theme) .group-list .group-list-description,body.theme-light .group-list .group-list-description,body.theme-dark .group-list .group-list-description,body.Theme-black .group-list .group-list-description{font-style:normal}body:not(.theme) .table th,body.theme-light .table th,body.theme-dark .table th,body.Theme-black .table th{border-bottom-color:#6272a4}body:not(.theme),body.theme-light,body.theme-dark,body.theme-black{color:#f8f8f2;background-color:#282a36}body:not(.theme) a,body.theme-light a,body.theme-dark a,body.theme-black a{color:#8be9fd}body:not(.theme) a:hover,body:not(.theme) a:active,body:not(.theme) a:focus,body.theme-light a:hover,body.theme-light a:active,body.theme-light a:focus,body.theme-dark a:hover,body.theme-dark a:active,body.theme-dark a:focus,body.theme-black a:hover,body.theme-black a:active,body.theme-black a:focus{color:#ff79c6}body:not(.theme) a:visited,body.theme-light a:visited,body.theme-dark a:visited,body.theme-black a:visited{color:#ff79c6}body:not(.theme) hr,body.theme-light hr,body.theme-dark hr,body.theme-black hr{border-color:#f8f8f2}body:not(.theme) main,body:not(.theme) #sidebar,body.theme-light main,body.theme-light #sidebar,body.theme-dark main,body.theme-dark #sidebar,body.theme-black main,body.theme-black #sidebar{color:#f8f8f2;background-color:#44475a}body:not(.theme) fieldset,body.theme-light fieldset,body.theme-dark fieldset,body.theme-black fieldset{border-color:#6272a4}body:not(.theme) pre,body:not(.theme) code,body.theme-light pre,body.theme-light code,body.theme-dark pre,body.theme-dark code,body.theme-black pre,body.theme-black code{color:#f8f8f2;background-color:#282a36;border:none;font-family:'Space Mono', 'Iosevka', 'Fira Code', 'Consolas', monospace}body:not(.theme) blockquote,body.theme-light blockquote,body.theme-dark blockquote,body.theme-black blockquote{color:#f8f8f2;background-color:#282a36;border-color:#f8f8f2}body:not(.theme) figure,body:not(.theme) section,body.theme-light figure,body.theme-light section,body.theme-dark figure,body.theme-dark section,body.theme-black figure,body.theme-black section{border-color:#f8f8f2}body:not(.theme) input,body:not(.theme) textarea,body:not(.theme) .form-input,body:not(.theme) .form-input:not(:focus),body.theme-light input,body.theme-light textarea,body.theme-light .form-input,body.theme-light .form-input:not(:focus),body.theme-dark input,body.theme-dark textarea,body.theme-dark .form-input,body.theme-dark .form-input:not(:focus),body.theme-black input,body.theme-black textarea,body.theme-black .form-input,body.theme-black .form-input:not(:focus){color:#f8f8f2;border-color:#6272a4;background-color:#282a36}body:not(.theme) th,body.theme-light th,body.theme-dark th,body.theme-black th{border-color:#6272a4}body:not(.theme) td,body.theme-light td,body.theme-dark td,body.theme-black td{border-color:#44475a}body:not(.theme) tbody tr:nth-of-type(n),body.theme-light tbody tr:nth-of-type(n),body.theme-dark tbody tr:nth-of-type(n),body.theme-black tbody tr:nth-of-type(n){background-color:#282a36}body:not(.theme) .listing-options button,body.theme-light .listing-options button,body.theme-black .listing-options button,body.theme-dark .listing-options button{border:none}body:not(.theme) .listing-options button:hover,body:not(.theme) .listing-options button:active,body:not(.theme) .listing-options button:focus,body.theme-light .listing-options button:hover,body.theme-light .listing-options button:active,body.theme-light .listing-options button:focus,body.theme-black .listing-options button:hover,body.theme-black .listing-options button:active,body.theme-black .listing-options button:focus,body.theme-dark .listing-options button:hover,body.theme-dark .listing-options button:active,body.theme-dark .listing-options button:focus{color:#ff79c6;background-color:transparent;text-decoration:underline}body:not(.theme) .tab.tab-listing-order,body.theme-light .tab.tab-listing-order,body.theme-black .tab.tab-listing-order,body.theme-dark .tab.tab-listing-order{border-color:#282a36}body:not(.theme) .tab.tab-listing-order .tab-item,body.theme-light .tab.tab-listing-order .tab-item,body.theme-black .tab.tab-listing-order .tab-item,body.theme-dark .tab.tab-listing-order .tab-item{margin:4px;padding:0;background-color:#282a36}body:not(.theme) .tab.tab-listing-order .tab-item:first-child,body.theme-light .tab.tab-listing-order .tab-item:first-child,body.theme-black .tab.tab-listing-order .tab-item:first-child,body.theme-dark .tab.tab-listing-order .tab-item:first-child{margin-left:0}body:not(.theme) .tab.tab-listing-order .tab-item:last-child,body.theme-light .tab.tab-listing-order .tab-item:last-child,body.theme-black .tab.tab-listing-order .tab-item:last-child,body.theme-dark .tab.tab-listing-order .tab-item:last-child{margin-right:0}body:not(.theme) .tab.tab-listing-order .tab-item a,body.theme-light .tab.tab-listing-order .tab-item a,body.theme-black .tab.tab-listing-order .tab-item a,body.theme-dark .tab.tab-listing-order .tab-item a{color:#8be9fd;margin:0;padding:4px 8px}body:not(.theme) .tab.tab-listing-order .tab-item a:hover,body:not(.theme) .tab.tab-listing-order .tab-item a:active,body:not(.theme) .tab.tab-listing-order .tab-item a:focus,body.theme-light .tab.tab-listing-order .tab-item a:hover,body.theme-light .tab.tab-listing-order .tab-item a:active,body.theme-light .tab.tab-listing-order .tab-item a:focus,body.theme-black .tab.tab-listing-order .tab-item a:hover,body.theme-black .tab.tab-listing-order .tab-item a:active,body.theme-black .tab.tab-listing-order .tab-item a:focus,body.theme-dark .tab.tab-listing-order .tab-item a:hover,body.theme-dark .tab.tab-listing-order .tab-item a:active,body.theme-dark .tab.tab-listing-order .tab-item a:focus{color:#8be9fd}body:not(.theme) .tab.tab-listing-order .tab-item.active a,body.theme-light .tab.tab-listing-order .tab-item.active a,body.theme-black .tab.tab-listing-order .tab-item.active a,body.theme-dark .tab.tab-listing-order .tab-item.active a{color:#ff79c6;border-color:#ff79c6}body:not(.theme) .form-select:not([multiple]):not([size]),body.theme-light .form-select:not([multiple]):not([size]),body.theme-black .form-select:not([multiple]):not([size]),body.theme-dark .form-select:not([multiple]):not([size]){border:1px solid #6272a4;background-color:#282a36;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23f8f8f2'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E")}body:not(.theme) .message-list thead th,body.theme-light .message-list thead th,body.theme-dark .message-list thead th,body.theme-black .message-list thead th{border-color:#6272a4}body:not(.theme) .message-list tbody tr:nth-of-type(n),body.theme-light .message-list tbody tr:nth-of-type(n),body.theme-dark .message-list tbody tr:nth-of-type(n),body.theme-black .message-list tbody tr:nth-of-type(n){background-color:#282a36}body:not(.theme) .message-list tbody tr:nth-of-type(n) td,body.theme-light .message-list tbody tr:nth-of-type(n) td,body.theme-dark .message-list tbody tr:nth-of-type(n) td,body.theme-black .message-list tbody tr:nth-of-type(n) td{border-color:#44475a}body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a{color:#8be9fd}body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus{color:#ff79c6}body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited{color:#8be9fd}body:not(.theme) .message,body.theme-light .message,body.theme-dark .message,body.theme-black .message{border-color:#282a36}body:not(.theme) .message header,body.theme-light .message header,body.theme-dark .message header,body.theme-black .message header{color:#f8f8f2;background-color:#282a36}body:not(.theme) .toast,body.theme-light .toast,body.theme-dark .toast,body.theme-black .toast{color:#f8f8f2;border-color:#6272a4;background-color:#282a36}body:not(.theme) .divider,body.theme-light .divider,body.theme-dark .divider,body.theme-black .divider{border-color:#282a36}body:not(.theme) .empty-subtitle,body.theme-light .empty-subtitle,body.theme-dark .empty-subtitle,body.theme-black .empty-subtitle{color:#f8f8f2}body:not(.theme) .post-listing .topic,body.theme-light .post-listing .topic,body.theme-dark .post-listing .topic,body.theme-black .post-listing .topic{background-color:#282a36}body:not(.theme) .post-listing .label-topic-tag,body.theme-light .post-listing .label-topic-tag,body.theme-dark .post-listing .label-topic-tag,body.theme-black .post-listing .label-topic-tag{color:#6272a4}body:not(.theme) .link-user,body.theme-light .link-user,body.theme-dark .link-user,body.theme-black .link-user{color:#50fa7b}body:not(.theme) .link-user:hover,body:not(.theme) .link-user:active,body:not(.theme) .link-user:focus,body.theme-light .link-user:hover,body.theme-light .link-user:active,body.theme-light .link-user:focus,body.theme-dark .link-user:hover,body.theme-dark .link-user:active,body.theme-dark .link-user:focus,body.theme-black .link-user:hover,body.theme-black .link-user:active,body.theme-black .link-user:focus{color:#ff79c6}body:not(.theme) .link-user:visited,body.theme-light .link-user:visited,body.theme-dark .link-user:visited,body.theme-black .link-user:visited{color:#50fa7b}body:not(.theme) .link-user:visited:hover,body:not(.theme) .link-user:visited:active,body:not(.theme) .link-user:visited:focus,body.theme-light .link-user:visited:hover,body.theme-light .link-user:visited:active,body.theme-light .link-user:visited:focus,body.theme-dark .link-user:visited:hover,body.theme-dark .link-user:visited:active,body.theme-dark .link-user:visited:focus,body.theme-black .link-user:visited:hover,body.theme-black .link-user:visited:active,body.theme-black .link-user:visited:focus{color:#ff79c6}body:not(.theme) .label-topic-tag a,body.theme-light .label-topic-tag a,body.theme-dark .label-topic-tag a,body.theme-black .label-topic-tag a{color:#6272a4}body:not(.theme) .label-topic-tag a:hover,body:not(.theme) .label-topic-tag a:active,body:not(.theme) .label-topic-tag a:focus,body.theme-light .label-topic-tag a:hover,body.theme-light .label-topic-tag a:active,body.theme-light .label-topic-tag a:focus,body.theme-dark .label-topic-tag a:hover,body.theme-dark .label-topic-tag a:active,body.theme-dark .label-topic-tag a:focus,body.theme-black .label-topic-tag a:hover,body.theme-black .label-topic-tag a:active,body.theme-black .label-topic-tag a:focus{color:#ff79c6}body:not(.theme) .text-secondary,body.theme-light .text-secondary,body.theme-dark .text-secondary,body.theme-black .text-secondary{font-style:normal;font-weight:bold;color:#6272a4}body:not(.theme) .text-warning,body.theme-light .text-warning,body.theme-dark .text-warning,body.theme-black .text-warning{color:#282a36;background-color:#ffb86c;padding:10px}body:not(.theme) blockquote.text-warning,body.theme-light blockquote.text-warning,body.theme-dark blockquote.text-warning,body.theme-black blockquote.text-warning{color:#f8f8f2;background-color:#282a36}body:not(.theme) .form-status-success,body.theme-light .form-status-success,body.theme-dark .form-status-success,body.theme-black .form-status-success{color:#50fa7b}body:not(.theme) .form-status-error,body.theme-light .form-status-error,body.theme-dark .form-status-error,body.theme-black .form-status-error{color:#f55}body:not(.theme) .is-comment-new .comment-text,body.theme-light .is-comment-new .comment-text,body.theme-dark .is-comment-new .comment-text,body.theme-black .is-comment-new .comment-text{color:#f8f8f2}body:not(.theme) .is-topic-official h1 a:visited,body.theme-light .is-topic-official h1 a:visited,body.theme-dark .is-topic-official h1 a:visited,body.theme-black .is-topic-official h1 a:visited{color:#f55}body:not(.theme) .label-topic-tag-spoiler,body.theme-light .label-topic-tag-spoiler,body.theme-dark .label-topic-tag-spoiler,body.theme-black .label-topic-tag-spoiler{background-color:#f1fa8c}body:not(.theme) .label-topic-tag-spoiler a,body.theme-light .label-topic-tag-spoiler a,body.theme-dark .label-topic-tag-spoiler a,body.theme-black .label-topic-tag-spoiler a{color:#282a36}body:not(.theme) .label-topic-tag-nsfw,body.theme-light .label-topic-tag-nsfw,body.theme-dark .label-topic-tag-nsfw,body.theme-black .label-topic-tag-nsfw{background-color:#f55}body:not(.theme) .label-topic-tag-nsfw a,body.theme-light .label-topic-tag-nsfw a,body.theme-dark .label-topic-tag-nsfw a,body.theme-black .label-topic-tag-nsfw a{color:#282a36}body:not(.theme) .topic-voting.btn,body.theme-light .topic-voting.btn,body.theme-dark .topic-voting.btn,body.theme-black .topic-voting.btn{border-style:solid}body:not(.theme) .btn,body:not(.theme) .btn.btn-link,body.theme-light .btn,body.theme-light .btn.btn-link,body.theme-dark .btn,body.theme-dark .btn.btn-link,body.theme-black .btn,body.theme-black .btn.btn-link{color:#8be9fd;border-color:#8be9fd;background:transparent}body:not(.theme) .btn:hover,body:not(.theme) .btn:active,body:not(.theme) .btn:focus,body:not(.theme) .btn.btn-link:hover,body:not(.theme) .btn.btn-link:active,body:not(.theme) .btn.btn-link:focus,body.theme-light .btn:hover,body.theme-light .btn:active,body.theme-light .btn:focus,body.theme-light .btn.btn-link:hover,body.theme-light .btn.btn-link:active,body.theme-light .btn.btn-link:focus,body.theme-dark .btn:hover,body.theme-dark .btn:active,body.theme-dark .btn:focus,body.theme-dark .btn.btn-link:hover,body.theme-dark .btn.btn-link:active,body.theme-dark .btn.btn-link:focus,body.theme-black .btn:hover,body.theme-black .btn:active,body.theme-black .btn:focus,body.theme-black .btn.btn-link:hover,body.theme-black .btn.btn-link:active,body.theme-black .btn.btn-link:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .btn:visited,body:not(.theme) .btn.btn-link:visited,body.theme-light .btn:visited,body.theme-light .btn.btn-link:visited,body.theme-dark .btn:visited,body.theme-dark .btn.btn-link:visited,body.theme-black .btn:visited,body.theme-black .btn.btn-link:visited{color:#8be9fd;border-color:#8be9fd;background:transparent}body:not(.theme) .btn:visited:hover,body:not(.theme) .btn:visited:active,body:not(.theme) .btn:visited:focus,body:not(.theme) .btn.btn-link:visited:hover,body:not(.theme) .btn.btn-link:visited:active,body:not(.theme) .btn.btn-link:visited:focus,body.theme-light .btn:visited:hover,body.theme-light .btn:visited:active,body.theme-light .btn:visited:focus,body.theme-light .btn.btn-link:visited:hover,body.theme-light .btn.btn-link:visited:active,body.theme-light .btn.btn-link:visited:focus,body.theme-dark .btn:visited:hover,body.theme-dark .btn:visited:active,body.theme-dark .btn:visited:focus,body.theme-dark .btn.btn-link:visited:hover,body.theme-dark .btn.btn-link:visited:active,body.theme-dark .btn.btn-link:visited:focus,body.theme-black .btn:visited:hover,body.theme-black .btn:visited:active,body.theme-black .btn:visited:focus,body.theme-black .btn.btn-link:visited:hover,body.theme-black .btn.btn-link:visited:active,body.theme-black .btn.btn-link:visited:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .btn-used,body:not(.theme) .topic-voting.btn-used,body.theme-light .btn-used,body.theme-light .topic-voting.btn-used,body.theme-dark .btn-used,body.theme-dark .topic-voting.btn-used,body.theme-black .btn-used,body.theme-black .topic-voting.btn-used{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .btn-used:hover,body:not(.theme) .btn-used:active,body:not(.theme) .btn-used:focus,body:not(.theme) .topic-voting.btn-used:hover,body:not(.theme) .topic-voting.btn-used:active,body:not(.theme) .topic-voting.btn-used:focus,body.theme-light .btn-used:hover,body.theme-light .btn-used:active,body.theme-light .btn-used:focus,body.theme-light .topic-voting.btn-used:hover,body.theme-light .topic-voting.btn-used:active,body.theme-light .topic-voting.btn-used:focus,body.theme-dark .btn-used:hover,body.theme-dark .btn-used:active,body.theme-dark .btn-used:focus,body.theme-dark .topic-voting.btn-used:hover,body.theme-dark .topic-voting.btn-used:active,body.theme-dark .topic-voting.btn-used:focus,body.theme-black .btn-used:hover,body.theme-black .btn-used:active,body.theme-black .btn-used:focus,body.theme-black .topic-voting.btn-used:hover,body.theme-black .topic-voting.btn-used:active,body.theme-black .topic-voting.btn-used:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .btn.btn-primary,body.theme-light .btn.btn-primary,body.theme-dark .btn.btn-primary,body.theme-black .btn.btn-primary{color:#282a36;background:#8be9fd;border-color:#8be9fd}body:not(.theme) .btn.btn-primary:hover,body:not(.theme) .btn.btn-primary:active,body:not(.theme) .btn.btn-primary:focus,body.theme-light .btn.btn-primary:hover,body.theme-light .btn.btn-primary:active,body.theme-light .btn.btn-primary:focus,body.theme-dark .btn.btn-primary:hover,body.theme-dark .btn.btn-primary:active,body.theme-dark .btn.btn-primary:focus,body.theme-black .btn.btn-primary:hover,body.theme-black .btn.btn-primary:active,body.theme-black .btn.btn-primary:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}.is-topic-official{border-left-color:#f55 !important}.is-topic-official h1 a{color:#f55}.is-topic-mine{border-left-color:#bd93f9 !important}.is-topic-mine h1 a{color:#bd93f9}.is-topic-mine .topic-voting{color:#f8f8f2}.is-topic-mine h1 a:visited{color:#bd93f9}.topic-icon{border-color:#8be9fd}.is-comment-by-op>.comment-itself{border-color:#f1fa8c !important}.is-comment-mine>.comment-itself{border-color:#bd93f9 !important}.is-comment-exemplary>.comment-itself{border-color:#8be9fd !important}.is-comment-new>.comment-itself{border-color:#ffb86c !important}.is-message-mine{border-left-color:#bd93f9 !important}body:not(.theme) .settings-list,body.theme-light .settings-list,body.theme-dark .settings-list,body.theme-black .settings-list{margin-left:0px}body:not(.theme) .settings-list li,body.theme-light .settings-list li,body.theme-dark .settings-list li,body.theme-black .settings-list li{background-color:#282a36;border:1px solid #6272a4;padding:15px;margin-top:15px;margin-bottom:15px}body:not(.theme) .settings-list a,body.theme-light .settings-list a,body.theme-dark .settings-list a,body.theme-black .settings-list a{color:#8be9fd}body:not(.theme) .settings-list a:hover,body:not(.theme) .settings-list a:active,body:not(.theme) .settings-list a:focus,body.theme-light .settings-list a:hover,body.theme-light .settings-list a:active,body.theme-light .settings-list a:focus,body.theme-dark .settings-list a:hover,body.theme-dark .settings-list a:active,body.theme-dark .settings-list a:focus,body.theme-black .settings-list a:hover,body.theme-black .settings-list a:active,body.theme-black .settings-list a:focus{color:#ff79c6}body:not(.theme) .settings-list a:visited,body.theme-light .settings-list a:visited,body.theme-dark .settings-list a:visited,body.theme-black .settings-list a:visited{color:#8be9fd}body:not(.theme) .settings-list a:visited:hover,body:not(.theme) .settings-list a:visited:active,body:not(.theme) .settings-list a:visited:focus,body.theme-light .settings-list a:visited:hover,body.theme-light .settings-list a:visited:active,body.theme-light .settings-list a:visited:focus,body.theme-dark .settings-list a:visited:hover,body.theme-dark .settings-list a:visited:active,body.theme-dark .settings-list a:visited:focus,body.theme-black .settings-list a:visited:hover,body.theme-black .settings-list a:visited:active,body.theme-black .settings-list a:visited:focus{color:#ff79c6}#sidebar form[action='/logout']>button:hover,#sidebar form[action='/logout']>button:active,#sidebar form[action='/logout']>button:focus{border-color:transparent;background-color:transparent}#sidebar .nav .nav-item a,#sidebar form[action='/logout']>button{color:#ffb86c}#sidebar .nav .nav-item a:hover,#sidebar .nav .nav-item a:active,#sidebar .nav .nav-item a:focus,#sidebar form[action='/logout']>button:hover,#sidebar form[action='/logout']>button:active,#sidebar form[action='/logout']>button:focus{color:#f1fa8c}#sidebar .nav .nav-item a:visited,#sidebar form[action='/logout']>button:visited{color:#ffb86c}#sidebar .nav .nav-item a:visited:hover,#sidebar .nav .nav-item a:visited:active,#sidebar .nav .nav-item a:visited:focus,#sidebar form[action='/logout']>button:visited:hover,#sidebar form[action='/logout']>button:visited:active,#sidebar form[action='/logout']>button:visited:focus{color:#f1fa8c}#sidebar .topic-tags{margin-bottom:0.5rem}#sidebar .label-topic-tag{color:#6272a4}#sidebar .label-topic-tag:hover{color:#f8f8f2;cursor:default}body:not(.theme) .site-header-logo,body.theme-light .site-header-logo,body.theme-black .site-header-logo,body.theme-dark .site-header-logo{color:#f8f8f2}body:not(.theme) .site-header-context,body.theme-light .site-header-context,body.theme-black .site-header-context,body.theme-dark .site-header-context{color:#ffb86c}body:not(.theme) .site-header-context:hover,body:not(.theme) .site-header-context:active,body:not(.theme) .site-header-context:focus,body.theme-light .site-header-context:hover,body.theme-light .site-header-context:active,body.theme-light .site-header-context:focus,body.theme-black .site-header-context:hover,body.theme-black .site-header-context:active,body.theme-black .site-header-context:focus,body.theme-dark .site-header-context:hover,body.theme-dark .site-header-context:active,body.theme-dark .site-header-context:focus{color:#f1fa8c}body:not(.theme) .logged-in-user-username,body.theme-light .logged-in-user-username,body.theme-black .logged-in-user-username,body.theme-dark .logged-in-user-username{color:#50fa7b}body:not(.theme) .logged-in-user-username:hover,body:not(.theme) .logged-in-user-username:active,body:not(.theme) .logged-in-user-username:focus,body.theme-light .logged-in-user-username:hover,body.theme-light .logged-in-user-username:active,body.theme-light .logged-in-user-username:focus,body.theme-black .logged-in-user-username:hover,body.theme-black .logged-in-user-username:active,body.theme-black .logged-in-user-username:focus,body.theme-dark .logged-in-user-username:hover,body.theme-dark .logged-in-user-username:active,body.theme-dark .logged-in-user-username:focus{color:#ff79c6}body:not(.theme) .logged-in-user-alert,body.theme-light .logged-in-user-alert,body.theme-black .logged-in-user-alert,body.theme-dark .logged-in-user-alert{color:#282a36;background-color:#ffb86c;padding:0.1rem 0.3rem;margin-top:0.2rem;justify-content:left}body:not(.theme) .logged-in-user-alert:hover,body:not(.theme) .logged-in-user-alert:active,body:not(.theme) .logged-in-user-alert:focus,body.theme-light .logged-in-user-alert:hover,body.theme-light .logged-in-user-alert:active,body.theme-light .logged-in-user-alert:focus,body.theme-black .logged-in-user-alert:hover,body.theme-black .logged-in-user-alert:active,body.theme-black .logged-in-user-alert:focus,body.theme-dark .logged-in-user-alert:hover,body.theme-dark .logged-in-user-alert:active,body.theme-dark .logged-in-user-alert:focus{background-color:#f1fa8c}body>header>a:nth-child(1):not(.no-header-logo){color:#f8f8f2;background-size:32px 32px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAMAAADQmBKKAAAAHlBMVEUoKjZQ+nticqSL6f29k/nx+oz/VVX/ecb/uGz///+3yBn7AAAAaklEQVR42u3Oxw2AQAADsNDZf2IGyO8kioQ9gQMAAAAAcLelCAkJCQkJCQkJ/Tk0lZS5ZMhZhISEhISEhISEvhbaSoasJWUvKUJCQkJCQkJCQu+GnnSUFCEhISEhISEhoXdDAAAAAAA3uwDrCC2R1NNC7QAAAABJRU5ErkJggg==")}.user-label{border-radius:0 !important;padding:3px 5px !important}.label-edit-box{color:#f8f8f2 !important;background-color:#282a36 !important}.label-edit-box input{border:1px solid #6272a4 !important;background-color:#44475a !important}.label-light,.label-dark{color:transparent !important}.bg-none{color:#f8f8f2 !important;border-color:#6272a4 !important}.bg-red{color:#282a36 !important;background-color:#f55 !important}.bg-orangered{color:#282a36 !important;background-color:#ffb86c !important}.bg-orange{color:#282a36 !important;background-color:#f1fa8c !important}.bg-dodgerblue{color:#282a36 !important;background-color:#8be9fd !important}.bg-forestgreen{color:#282a36 !important;background-color:#50fa7b !important}.bg-slategray{color:#f8f8f2 !important;background-color:#44475a !important}body:not(.theme) .topic-full .topic-full-byline,body.theme-light .topic-full .topic-full-byline,body.theme-dark .topic-full .topic-full-byline,body.theme-black .topic-full .topic-full-byline{color:#f8f8f2}body:not(.theme) .topic-full .topic-full-text a,body.theme-light .topic-full .topic-full-text a,body.theme-dark .topic-full .topic-full-text a,body.theme-black .topic-full .topic-full-text a{color:#8be9fd}body:not(.theme) .topic-full .topic-full-text a:hover,body:not(.theme) .topic-full .topic-full-text a:active,body:not(.theme) .topic-full .topic-full-text a:focus,body.theme-light .topic-full .topic-full-text a:hover,body.theme-light .topic-full .topic-full-text a:active,body.theme-light .topic-full .topic-full-text a:focus,body.theme-dark .topic-full .topic-full-text a:hover,body.theme-dark .topic-full .topic-full-text a:active,body.theme-dark .topic-full .topic-full-text a:focus,body.theme-black .topic-full .topic-full-text a:hover,body.theme-black .topic-full .topic-full-text a:active,body.theme-black .topic-full .topic-full-text a:focus{color:#ff79c6}body:not(.theme) .topic-full .topic-full-text a:visited,body.theme-light .topic-full .topic-full-text a:visited,body.theme-dark .topic-full .topic-full-text a:visited,body.theme-black .topic-full .topic-full-text a:visited{color:#8be9fd}body:not(.theme) .topic-full .topic-full-text a:visited:hover,body:not(.theme) .topic-full .topic-full-text a:visited:active,body:not(.theme) .topic-full .topic-full-text a:visited:focus,body.theme-light .topic-full .topic-full-text a:visited:hover,body.theme-light .topic-full .topic-full-text a:visited:active,body.theme-light .topic-full .topic-full-text a:visited:focus,body.theme-dark .topic-full .topic-full-text a:visited:hover,body.theme-dark .topic-full .topic-full-text a:visited:active,body.theme-dark .topic-full .topic-full-text a:visited:focus,body.theme-black .topic-full .topic-full-text a:visited:hover,body.theme-black .topic-full .topic-full-text a:visited:active,body.theme-black .topic-full .topic-full-text a:visited:focus{color:#ff79c6}body:not(.theme) .topic-listing>li:nth-of-type(n),body.theme-light .topic-listing>li:nth-of-type(n),body.theme-dark .topic-listing>li:nth-of-type(n),body.theme-black .topic-listing>li:nth-of-type(n){background-color:#282a36}body:not(.theme) .topic-info,body.theme-light .topic-info,body.theme-dark .topic-info,body.theme-black .topic-info{color:#f8f8f2;background-color:#282a36}body:not(.theme) .time-responsive-full,body.theme-light .time-responsive-full,body.theme-dark .time-responsive-full,body.theme-black .time-responsive-full{color:#f8f8f2}body:not(.theme) .topic-content-metadata,body.theme-light .topic-content-metadata,body.theme-dark .topic-content-metadata,body.theme-black .topic-content-metadata{color:#f8f8f2}body:not(.theme) .topic-text-excerpt,body.theme-light .topic-text-excerpt,body.theme-dark .topic-text-excerpt,body.theme-black .topic-text-excerpt{color:#6272a4}body:not(.theme) .topic-text-excerpt[open],body.theme-light .topic-text-excerpt[open],body.theme-dark .topic-text-excerpt[open],body.theme-black .topic-text-excerpt[open]{color:#f8f8f2}body:not(.theme) .topic-text-excerpt summary,body:not(.theme) .topic-text-excerpt summary::after,body.theme-light .topic-text-excerpt summary,body.theme-light .topic-text-excerpt summary::after,body.theme-dark .topic-text-excerpt summary,body.theme-dark .topic-text-excerpt summary::after,body.theme-black .topic-text-excerpt summary,body.theme-black .topic-text-excerpt summary::after{color:#6272a4}body:not(.theme) .link-group,body.theme-light .link-group,body.theme-dark .link-group,body.theme-black .link-group{color:#ffb86c}body:not(.theme) .link-group:hover,body:not(.theme) .link-group:active,body:not(.theme) .link-group:focus,body.theme-light .link-group:hover,body.theme-light .link-group:active,body.theme-light .link-group:focus,body.theme-dark .link-group:hover,body.theme-dark .link-group:active,body.theme-dark .link-group:focus,body.theme-black .link-group:hover,body.theme-black .link-group:active,body.theme-black .link-group:focus{color:#f1fa8c}body:not(.theme) .topic-info-comments a .topic-info-comments-new,body.theme-light .topic-info-comments a .topic-info-comments-new,body.theme-dark .topic-info-comments a .topic-info-comments-new,body.theme-black .topic-info-comments a .topic-info-comments-new{color:#ffb86c}body:not(.theme) .topic-info-comments a:hover,body:not(.theme) .topic-info-comments a:active,body:not(.theme) .topic-info-comments a:focus,body.theme-light .topic-info-comments a:hover,body.theme-light .topic-info-comments a:active,body.theme-light .topic-info-comments a:focus,body.theme-dark .topic-info-comments a:hover,body.theme-dark .topic-info-comments a:active,body.theme-dark .topic-info-comments a:focus,body.theme-black .topic-info-comments a:hover,body.theme-black .topic-info-comments a:active,body.theme-black .topic-info-comments a:focus{color:#ff79c6}body:not(.theme) .topic-info-comments a:hover .topic-info-comments-new,body:not(.theme) .topic-info-comments a:active .topic-info-comments-new,body:not(.theme) .topic-info-comments a:focus .topic-info-comments-new,body.theme-light .topic-info-comments a:hover .topic-info-comments-new,body.theme-light .topic-info-comments a:active .topic-info-comments-new,body.theme-light .topic-info-comments a:focus .topic-info-comments-new,body.theme-dark .topic-info-comments a:hover .topic-info-comments-new,body.theme-dark .topic-info-comments a:active .topic-info-comments-new,body.theme-dark .topic-info-comments a:focus .topic-info-comments-new,body.theme-black .topic-info-comments a:hover .topic-info-comments-new,body.theme-black .topic-info-comments a:active .topic-info-comments-new,body.theme-black .topic-info-comments a:focus .topic-info-comments-new{color:#f1fa8c}body:not(.theme) .topic-info-comments a:visited,body.theme-light .topic-info-comments a:visited,body.theme-dark .topic-info-comments a:visited,body.theme-black .topic-info-comments a:visited{color:#8be9fd}body:not(.theme) .topic-info-comments a:visited:hover,body:not(.theme) .topic-info-comments a:visited:active,body:not(.theme) .topic-info-comments a:visited:focus,body.theme-light .topic-info-comments a:visited:hover,body.theme-light .topic-info-comments a:visited:active,body.theme-light .topic-info-comments a:visited:focus,body.theme-dark .topic-info-comments a:visited:hover,body.theme-dark .topic-info-comments a:visited:active,body.theme-dark .topic-info-comments a:visited:focus,body.theme-black .topic-info-comments a:visited:hover,body.theme-black .topic-info-comments a:visited:active,body.theme-black .topic-info-comments a:visited:focus{color:#ff79c6}body:not(.theme) .topic-info-comments a:visited:hover .topic-info-comments-new,body:not(.theme) .topic-info-comments a:visited:active .topic-info-comments-new,body:not(.theme) .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:focus .topic-info-comments-new{color:#f1fa8c} diff --git a/css/tildes-dracula/tildes-dracula.user.css b/css/tildes-dracula/tildes-dracula.user.css old mode 100755 new mode 100644 index 1ae634d..d9f3aa3 --- a/css/tildes-dracula/tildes-dracula.user.css +++ b/css/tildes-dracula/tildes-dracula.user.css @@ -1,1112 +1,13 @@ /* ==UserStyle== @name Tildes Dracula @namespace tildes.net -@version 2.1.4 +@version 2.1.5 @author Bauke @description Dracula theme for Tildes.net @homepageURL https://gitlab.com/Bauke/styles @supportURL https://gitlab.com/Bauke/styles/issues @license MIT ==/UserStyle== */ -@-moz-document domain('tildes.net') { -body:not(.theme) .highlight .syntax-c,body.theme-light .highlight .syntax-c,body.theme-dark .highlight .syntax-c,body.theme-black .highlight .syntax-c { - color: #8be9fd; +@-moz-document domain(tildes.net) { + body:not(.theme) .highlight .syntax-c,body.theme-light .highlight .syntax-c,body.theme-dark .highlight .syntax-c,body.theme-black .highlight .syntax-c{color:#8be9fd}body:not(.theme) .highlight .syntax-err,body.theme-light .highlight .syntax-err,body.theme-dark .highlight .syntax-err,body.theme-black .highlight .syntax-err{color:#f8f8f2}body:not(.theme) .highlight .syntax-g,body.theme-light .highlight .syntax-g,body.theme-dark .highlight .syntax-g,body.theme-black .highlight .syntax-g{color:#f8f8f2}body:not(.theme) .highlight .syntax-k,body.theme-light .highlight .syntax-k,body.theme-dark .highlight .syntax-k,body.theme-black .highlight .syntax-k{color:#50fa7b}body:not(.theme) .highlight .syntax-l,body.theme-light .highlight .syntax-l,body.theme-dark .highlight .syntax-l,body.theme-black .highlight .syntax-l{color:#f8f8f2}body:not(.theme) .highlight .syntax-n,body.theme-light .highlight .syntax-n,body.theme-dark .highlight .syntax-n,body.theme-black .highlight .syntax-n{color:#f8f8f2}body:not(.theme) .highlight .syntax-o,body.theme-light .highlight .syntax-o,body.theme-dark .highlight .syntax-o,body.theme-black .highlight .syntax-o{color:#50fa7b}body:not(.theme) .highlight .syntax-x,body.theme-light .highlight .syntax-x,body.theme-dark .highlight .syntax-x,body.theme-black .highlight .syntax-x{color:#ffb86c}body:not(.theme) .highlight .syntax-p,body.theme-light .highlight .syntax-p,body.theme-dark .highlight .syntax-p,body.theme-black .highlight .syntax-p{color:#f8f8f2}body:not(.theme) .highlight .syntax-cm,body.theme-light .highlight .syntax-cm,body.theme-dark .highlight .syntax-cm,body.theme-black .highlight .syntax-cm{color:#8be9fd}body:not(.theme) .highlight .syntax-cp,body.theme-light .highlight .syntax-cp,body.theme-dark .highlight .syntax-cp,body.theme-black .highlight .syntax-cp{color:#50fa7b}body:not(.theme) .highlight .syntax-c1,body.theme-light .highlight .syntax-c1,body.theme-dark .highlight .syntax-c1,body.theme-black .highlight .syntax-c1{color:#8be9fd}body:not(.theme) .highlight .syntax-cs,body.theme-light .highlight .syntax-cs,body.theme-dark .highlight .syntax-cs,body.theme-black .highlight .syntax-cs{color:#50fa7b}body:not(.theme) .highlight .syntax-gd,body.theme-light .highlight .syntax-gd,body.theme-dark .highlight .syntax-gd,body.theme-black .highlight .syntax-gd{color:#bd93f9}body:not(.theme) .highlight .syntax-ge,body.theme-light .highlight .syntax-ge,body.theme-dark .highlight .syntax-ge,body.theme-black .highlight .syntax-ge{color:#f8f8f2;font-style:italic}body:not(.theme) .highlight .syntax-gr,body.theme-light .highlight .syntax-gr,body.theme-dark .highlight .syntax-gr,body.theme-black .highlight .syntax-gr{color:#f55}body:not(.theme) .highlight .syntax-gh,body.theme-light .highlight .syntax-gh,body.theme-dark .highlight .syntax-gh,body.theme-black .highlight .syntax-gh{color:#ffb86c}body:not(.theme) .highlight .syntax-gi,body.theme-light .highlight .syntax-gi,body.theme-dark .highlight .syntax-gi,body.theme-black .highlight .syntax-gi{color:#50fa7b}body:not(.theme) .highlight .syntax-go,body.theme-light .highlight .syntax-go,body.theme-dark .highlight .syntax-go,body.theme-black .highlight .syntax-go{color:#f8f8f2}body:not(.theme) .highlight .syntax-gp,body.theme-light .highlight .syntax-gp,body.theme-dark .highlight .syntax-gp,body.theme-black .highlight .syntax-gp{color:#f8f8f2}body:not(.theme) .highlight .syntax-gs,body.theme-light .highlight .syntax-gs,body.theme-dark .highlight .syntax-gs,body.theme-black .highlight .syntax-gs{color:#f8f8f2;font-weight:bold}body:not(.theme) .highlight .syntax-gu,body.theme-light .highlight .syntax-gu,body.theme-dark .highlight .syntax-gu,body.theme-black .highlight .syntax-gu{color:#ffb86c}body:not(.theme) .highlight .syntax-gt,body.theme-light .highlight .syntax-gt,body.theme-dark .highlight .syntax-gt,body.theme-black .highlight .syntax-gt{color:#f8f8f2}body:not(.theme) .highlight .syntax-kc,body.theme-light .highlight .syntax-kc,body.theme-dark .highlight .syntax-kc,body.theme-black .highlight .syntax-kc{color:#ffb86c}body:not(.theme) .highlight .syntax-kd,body.theme-light .highlight .syntax-kd,body.theme-dark .highlight .syntax-kd,body.theme-black .highlight .syntax-kd{color:#ff79c6}body:not(.theme) .highlight .syntax-kn,body.theme-light .highlight .syntax-kn,body.theme-dark .highlight .syntax-kn,body.theme-black .highlight .syntax-kn{color:#50fa7b}body:not(.theme) .highlight .syntax-kp,body.theme-light .highlight .syntax-kp,body.theme-dark .highlight .syntax-kp,body.theme-black .highlight .syntax-kp{color:#50fa7b}body:not(.theme) .highlight .syntax-kr,body.theme-light .highlight .syntax-kr,body.theme-dark .highlight .syntax-kr,body.theme-black .highlight .syntax-kr{color:#ff79c6}body:not(.theme) .highlight .syntax-kt,body.theme-light .highlight .syntax-kt,body.theme-dark .highlight .syntax-kt,body.theme-black .highlight .syntax-kt{color:#f55}body:not(.theme) .highlight .syntax-ld,body.theme-light .highlight .syntax-ld,body.theme-dark .highlight .syntax-ld,body.theme-black .highlight .syntax-ld{color:#f8f8f2}body:not(.theme) .highlight .syntax-m,body.theme-light .highlight .syntax-m,body.theme-dark .highlight .syntax-m,body.theme-black .highlight .syntax-m{color:#bd93f9}body:not(.theme) .highlight .syntax-s,body.theme-light .highlight .syntax-s,body.theme-dark .highlight .syntax-s,body.theme-black .highlight .syntax-s{color:#bd93f9}body:not(.theme) .highlight .syntax-na,body.theme-light .highlight .syntax-na,body.theme-dark .highlight .syntax-na,body.theme-black .highlight .syntax-na{color:#f8f8f2}body:not(.theme) .highlight .syntax-nb,body.theme-light .highlight .syntax-nb,body.theme-dark .highlight .syntax-nb,body.theme-black .highlight .syntax-nb{color:#ffb86c}body:not(.theme) .highlight .syntax-nc,body.theme-light .highlight .syntax-nc,body.theme-dark .highlight .syntax-nc,body.theme-black .highlight .syntax-nc{color:#ff79c6}body:not(.theme) .highlight .syntax-no,body.theme-light .highlight .syntax-no,body.theme-dark .highlight .syntax-no,body.theme-black .highlight .syntax-no{color:#ffb86c}body:not(.theme) .highlight .syntax-nd,body.theme-light .highlight .syntax-nd,body.theme-dark .highlight .syntax-nd,body.theme-black .highlight .syntax-nd{color:#ff79c6}body:not(.theme) .highlight .syntax-ni,body.theme-light .highlight .syntax-ni,body.theme-dark .highlight .syntax-ni,body.theme-black .highlight .syntax-ni{color:#ffb86c}body:not(.theme) .highlight .syntax-ne,body.theme-light .highlight .syntax-ne,body.theme-dark .highlight .syntax-ne,body.theme-black .highlight .syntax-ne{color:#ffb86c}body:not(.theme) .highlight .syntax-nf,body.theme-light .highlight .syntax-nf,body.theme-dark .highlight .syntax-nf,body.theme-black .highlight .syntax-nf{color:#ff79c6}body:not(.theme) .highlight .syntax-nl,body.theme-light .highlight .syntax-nl,body.theme-dark .highlight .syntax-nl,body.theme-black .highlight .syntax-nl{color:#f8f8f2}body:not(.theme) .highlight .syntax-nn,body.theme-light .highlight .syntax-nn,body.theme-dark .highlight .syntax-nn,body.theme-black .highlight .syntax-nn{color:#f8f8f2}body:not(.theme) .highlight .syntax-nx,body.theme-light .highlight .syntax-nx,body.theme-dark .highlight .syntax-nx,body.theme-black .highlight .syntax-nx{color:#f8f8f2}body:not(.theme) .highlight .syntax-py,body.theme-light .highlight .syntax-py,body.theme-dark .highlight .syntax-py,body.theme-black .highlight .syntax-py{color:#f8f8f2}body:not(.theme) .highlight .syntax-nt,body.theme-light .highlight .syntax-nt,body.theme-dark .highlight .syntax-nt,body.theme-black .highlight .syntax-nt{color:#ff79c6}body:not(.theme) .highlight .syntax-nv,body.theme-light .highlight .syntax-nv,body.theme-dark .highlight .syntax-nv,body.theme-black .highlight .syntax-nv{color:#ff79c6}body:not(.theme) .highlight .syntax-ow,body.theme-light .highlight .syntax-ow,body.theme-dark .highlight .syntax-ow,body.theme-black .highlight .syntax-ow{color:#50fa7b}body:not(.theme) .highlight .syntax-w,body.theme-light .highlight .syntax-w,body.theme-dark .highlight .syntax-w,body.theme-black .highlight .syntax-w{color:#f8f8f2}body:not(.theme) .highlight .syntax-mf,body.theme-light .highlight .syntax-mf,body.theme-dark .highlight .syntax-mf,body.theme-black .highlight .syntax-mf{color:#bd93f9}body:not(.theme) .highlight .syntax-mh,body.theme-light .highlight .syntax-mh,body.theme-dark .highlight .syntax-mh,body.theme-black .highlight .syntax-mh{color:#bd93f9}body:not(.theme) .highlight .syntax-mi,body.theme-light .highlight .syntax-mi,body.theme-dark .highlight .syntax-mi,body.theme-black .highlight .syntax-mi{color:#bd93f9}body:not(.theme) .highlight .syntax-mo,body.theme-light .highlight .syntax-mo,body.theme-dark .highlight .syntax-mo,body.theme-black .highlight .syntax-mo{color:#bd93f9}body:not(.theme) .highlight .syntax-sb,body.theme-light .highlight .syntax-sb,body.theme-dark .highlight .syntax-sb,body.theme-black .highlight .syntax-sb{color:#8be9fd}body:not(.theme) .highlight .syntax-sc,body.theme-light .highlight .syntax-sc,body.theme-dark .highlight .syntax-sc,body.theme-black .highlight .syntax-sc{color:#bd93f9}body:not(.theme) .highlight .syntax-sd,body.theme-light .highlight .syntax-sd,body.theme-dark .highlight .syntax-sd,body.theme-black .highlight .syntax-sd{color:#f8f8f2}body:not(.theme) .highlight .syntax-s2,body.theme-light .highlight .syntax-s2,body.theme-dark .highlight .syntax-s2,body.theme-black .highlight .syntax-s2{color:#bd93f9}body:not(.theme) .highlight .syntax-se,body.theme-light .highlight .syntax-se,body.theme-dark .highlight .syntax-se,body.theme-black .highlight .syntax-se{color:#ffb86c}body:not(.theme) .highlight .syntax-sh,body.theme-light .highlight .syntax-sh,body.theme-dark .highlight .syntax-sh,body.theme-black .highlight .syntax-sh{color:#f8f8f2}body:not(.theme) .highlight .syntax-si,body.theme-light .highlight .syntax-si,body.theme-dark .highlight .syntax-si,body.theme-black .highlight .syntax-si{color:#bd93f9}body:not(.theme) .highlight .syntax-sx,body.theme-light .highlight .syntax-sx,body.theme-dark .highlight .syntax-sx,body.theme-black .highlight .syntax-sx{color:#bd93f9}body:not(.theme) .highlight .syntax-sr,body.theme-light .highlight .syntax-sr,body.theme-dark .highlight .syntax-sr,body.theme-black .highlight .syntax-sr{color:#f55}body:not(.theme) .highlight .syntax-s1,body.theme-light .highlight .syntax-s1,body.theme-dark .highlight .syntax-s1,body.theme-black .highlight .syntax-s1{color:#bd93f9}body:not(.theme) .highlight .syntax-ss,body.theme-light .highlight .syntax-ss,body.theme-dark .highlight .syntax-ss,body.theme-black .highlight .syntax-ss{color:#bd93f9}body:not(.theme) .highlight .syntax-bp,body.theme-light .highlight .syntax-bp,body.theme-dark .highlight .syntax-bp,body.theme-black .highlight .syntax-bp{color:#ff79c6}body:not(.theme) .highlight .syntax-vc,body.theme-light .highlight .syntax-vc,body.theme-dark .highlight .syntax-vc,body.theme-black .highlight .syntax-vc{color:#ff79c6}body:not(.theme) .highlight .syntax-vg,body.theme-light .highlight .syntax-vg,body.theme-dark .highlight .syntax-vg,body.theme-black .highlight .syntax-vg{color:#ff79c6}body:not(.theme) .highlight .syntax-vi,body.theme-light .highlight .syntax-vi,body.theme-dark .highlight .syntax-vi,body.theme-black .highlight .syntax-vi{color:#ff79c6}body:not(.theme) .highlight .syntax-il,body.theme-light .highlight .syntax-il,body.theme-dark .highlight .syntax-il,body.theme-black .highlight .syntax-il{color:#bd93f9}body:not(.theme) .btn-comment-collapse,body.theme-light .btn-comment-collapse,body.theme-dark .btn-comment-collapse,body.theme-black .btn-comment-collapse{color:#8be9fd;border-color:#8be9fd;background:transparent}body:not(.theme) .btn-comment-collapse:hover,body:not(.theme) .btn-comment-collapse:active,body:not(.theme) .btn-comment-collapse:focus,body.theme-light .btn-comment-collapse:hover,body.theme-light .btn-comment-collapse:active,body.theme-light .btn-comment-collapse:focus,body.theme-dark .btn-comment-collapse:hover,body.theme-dark .btn-comment-collapse:active,body.theme-dark .btn-comment-collapse:focus,body.theme-black .btn-comment-collapse:hover,body.theme-black .btn-comment-collapse:active,body.theme-black .btn-comment-collapse:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .comment,body.theme-light .comment,body.theme-dark .comment,body.theme-black .comment{border-color:#282a36}body:not(.theme) .comment:target>.comment-itself,body.theme-light .comment:target>.comment-itself,body.theme-dark .comment:target>.comment-itself,body.theme-black .comment:target>.comment-itself{border-left:3px solid #50fa7b !important}body:not(.theme) .comment .comment-itself header,body.theme-light .comment .comment-itself header,body.theme-dark .comment .comment-itself header,body.theme-black .comment .comment-itself header{background-color:#282a36}body:not(.theme) .comment .comment-nav-link,body.theme-light .comment .comment-nav-link,body.theme-dark .comment .comment-nav-link,body.theme-black .comment .comment-nav-link{color:#8be9fd}body:not(.theme) .comment .comment-nav-link:hover,body:not(.theme) .comment .comment-nav-link:active,body:not(.theme) .comment .comment-nav-link:focus,body.theme-light .comment .comment-nav-link:hover,body.theme-light .comment .comment-nav-link:active,body.theme-light .comment .comment-nav-link:focus,body.theme-dark .comment .comment-nav-link:hover,body.theme-dark .comment .comment-nav-link:active,body.theme-dark .comment .comment-nav-link:focus,body.theme-black .comment .comment-nav-link:hover,body.theme-black .comment .comment-nav-link:active,body.theme-black .comment .comment-nav-link:focus{color:#ff79c6}body:not(.theme) .comment .comment-nav-link:visited,body.theme-light .comment .comment-nav-link:visited,body.theme-dark .comment .comment-nav-link:visited,body.theme-black .comment .comment-nav-link:visited{color:#8be9fd}body:not(.theme) .comment .comment-nav-link:visited:hover,body:not(.theme) .comment .comment-nav-link:visited:active,body:not(.theme) .comment .comment-nav-link:visited:focus,body.theme-light .comment .comment-nav-link:visited:hover,body.theme-light .comment .comment-nav-link:visited:active,body.theme-light .comment .comment-nav-link:visited:focus,body.theme-dark .comment .comment-nav-link:visited:hover,body.theme-dark .comment .comment-nav-link:visited:active,body.theme-dark .comment .comment-nav-link:visited:focus,body.theme-black .comment .comment-nav-link:visited:hover,body.theme-black .comment .comment-nav-link:visited:active,body.theme-black .comment .comment-nav-link:visited:focus{color:#ff79c6}body:not(.theme) .comment .comment-user-info,body.theme-light .comment .comment-user-info,body.theme-dark .comment .comment-user-info,body.theme-black .comment .comment-user-info{color:#f1fa8c}body:not(.theme) .comment .time-responsive-full,body.theme-light .comment .time-responsive-full,body.theme-dark .comment .time-responsive-full,body.theme-black .comment .time-responsive-full{color:#f8f8f2}body:not(.theme) .comment-exemplary-reasons,body.theme-light .comment-exemplary-reasons,body.theme-dark .comment-exemplary-reasons,body.theme-black .comment-exemplary-reasons{background-color:#282a36;padding:5px}body:not(.theme) .comment-exemplary-reasons[open],body.theme-light .comment-exemplary-reasons[open],body.theme-dark .comment-exemplary-reasons[open],body.theme-black .comment-exemplary-reasons[open]{border-bottom:1px solid #8be9fd}body:not(.theme) .comment-exemplary-reasons ul,body.theme-light .comment-exemplary-reasons ul,body.theme-dark .comment-exemplary-reasons ul,body.theme-black .comment-exemplary-reasons ul{margin-left:1.3rem;margin-bottom:0}body:not(.theme) .comment-votes,body.theme-light .comment-votes,body.theme-dark .comment-votes,body.theme-black .comment-votes{color:#f8f8f2}body:not(.theme) .comment[data-comment-depth='0'],body.theme-light .comment[data-comment-depth='0'],body.theme-dark .comment[data-comment-depth='0'],body.theme-black .comment[data-comment-depth='0']{border-color:#282a36}body:not(.theme) .is-comment-collapsed header .link-user,body.theme-light .is-comment-collapsed header .link-user,body.theme-dark .is-comment-collapsed header .link-user,body.theme-black .is-comment-collapsed header .link-user{color:#50fa7b}body:not(.theme) .label-comment-exemplary,body.theme-light .label-comment-exemplary,body.theme-dark .label-comment-exemplary,body.theme-black .label-comment-exemplary{color:#282a36;border-color:#8be9fd;background-color:#8be9fd}body:not(.theme) .btn-post,body.theme-light .btn-post,body.theme-dark .btn-post,body.theme-black .btn-post{padding:0}body:not(.theme) .btn-post-action,body.theme-light .btn-post-action,body.theme-dark .btn-post-action,body.theme-black .btn-post-action{color:#8be9fd;padding:6px 8px;margin:6px;margin-bottom:0px}body:not(.theme) .btn-post-action:hover,body:not(.theme) .btn-post-action:active,body:not(.theme) .btn-post-action:focus,body.theme-light .btn-post-action:hover,body.theme-light .btn-post-action:active,body.theme-light .btn-post-action:focus,body.theme-dark .btn-post-action:hover,body.theme-dark .btn-post-action:active,body.theme-dark .btn-post-action:focus,body.theme-black .btn-post-action:hover,body.theme-black .btn-post-action:active,body.theme-black .btn-post-action:focus{color:#ff79c6;text-decoration:none}body:not(.theme) .btn-post-action-used,body.theme-light .btn-post-action-used,body.theme-dark .btn-post-action-used,body.theme-black .btn-post-action-used{color:#ff79c6;text-decoration:underline}body:not(.theme) .btn-post-action-used:hover,body:not(.theme) .btn-post-action-used:active,body:not(.theme) .btn-post-action-used:focus,body.theme-light .btn-post-action-used:hover,body.theme-light .btn-post-action-used:active,body.theme-light .btn-post-action-used:focus,body.theme-dark .btn-post-action-used:hover,body.theme-dark .btn-post-action-used:active,body.theme-dark .btn-post-action-used:focus,body.theme-black .btn-post-action-used:hover,body.theme-black .btn-post-action-used:active,body.theme-black .btn-post-action-used:focus{color:#8be9fd;text-decoration:underline}.btn-comment-label-exemplary{color:#8be9fd;border-color:#8be9fd}.btn-comment-label-exemplary:hover{color:#8be9fd}.btn-comment-label-exemplary.btn-used:hover{color:#282a36;background-color:#8be9fd}.btn-comment-label-offtopic{color:#50fa7b;border-color:#50fa7b}.btn-comment-label-offtopic:hover{color:#50fa7b}.btn-comment-label-offtopic.btn-used:hover{color:#282a36;background-color:#50fa7b}.btn-comment-label-joke{color:#f1fa8c;border-color:#f1fa8c}.btn-comment-label-joke:hover{color:#f1fa8c}.btn-comment-label-joke.btn-used:hover{color:#282a36;background-color:#f1fa8c}.btn-comment-label-noise{color:#ffb86c;border-color:#ffb86c}.btn-comment-label-noise:hover{color:#ffb86c}.btn-comment-label-noise.btn-used:hover{color:#282a36;background-color:#ffb86c}.btn-comment-label-malice{color:#f55;border-color:#f55}.btn-comment-label-malice:hover{color:#f55}.btn-comment-label-malice.btn-used:hover{color:#282a36;background-color:#f55}.btn-comment-label.btn-used{border:none}body:not(.theme) #page-list,body.theme-light #page-list,body.theme-dark #page-list,body.theme-black #page-list{background-color:#44475a}body:not(.theme) .toc,body.theme-light .toc,body.theme-dark .toc,body.theme-black .toc{background-color:#282a36}body:not(.theme) .highlight:not(code),body.theme-light .highlight:not(code),body.theme-dark .highlight:not(code),body.theme-black .highlight:not(code){color:#f8f8f2;background-color:#6272a4}body:not(.theme) .conspicuous,body.theme-light .conspicuous,body.theme-dark .conspicuous,body.theme-black .conspicuous{color:#f55;font-family:sans-serif}body:not(.theme) .date-info,body.theme-light .date-info,body.theme-dark .date-info,body.theme-black .date-info{color:#f8f8f2}body:not(.theme) .article-summary,body.theme-light .article-summary,body.theme-dark .article-summary,body.theme-black .article-summary{border-color:#f8f8f2}body:not(.theme) .article-summary h2 a,body.theme-light .article-summary h2 a,body.theme-dark .article-summary h2 a,body.theme-black .article-summary h2 a{color:#f8f8f2}body>footer,#site-footer{color:#f8f8f2;background-color:#282a36;padding:0.5rem;font-style:normal;font-weight:bold}body>footer a,#site-footer a{color:#8be9fd}body>footer a:hover,body>footer a:active,body>footer a:focus,#site-footer a:hover,#site-footer a:active,#site-footer a:focus{color:#ff79c6}body>footer a:visited,#site-footer a:visited{color:#8be9fd}body>footer a:visited:hover,body>footer a:visited:active,body>footer a:visited:focus,#site-footer a:visited:hover,#site-footer a:visited:active,#site-footer a:visited:focus{color:#ff79c6}body:not(.theme) .group-list tbody tr:nth-of-type(n),body.theme-light .group-list tbody tr:nth-of-type(n),body.theme-dark .group-list tbody tr:nth-of-type(n),body.Theme-black .group-list tbody tr:nth-of-type(n){background-color:#282a36}body:not(.theme) .group-list tbody tr:nth-of-type(n) td,body.theme-light .group-list tbody tr:nth-of-type(n) td,body.theme-dark .group-list tbody tr:nth-of-type(n) td,body.Theme-black .group-list tbody tr:nth-of-type(n) td{border-color:#44475a}body:not(.theme) .group-list .group-list-description,body.theme-light .group-list .group-list-description,body.theme-dark .group-list .group-list-description,body.Theme-black .group-list .group-list-description{font-style:normal}body:not(.theme) .table th,body.theme-light .table th,body.theme-dark .table th,body.Theme-black .table th{border-bottom-color:#6272a4}body:not(.theme),body.theme-light,body.theme-dark,body.theme-black{color:#f8f8f2;background-color:#282a36}body:not(.theme) a,body.theme-light a,body.theme-dark a,body.theme-black a{color:#8be9fd}body:not(.theme) a:hover,body:not(.theme) a:active,body:not(.theme) a:focus,body.theme-light a:hover,body.theme-light a:active,body.theme-light a:focus,body.theme-dark a:hover,body.theme-dark a:active,body.theme-dark a:focus,body.theme-black a:hover,body.theme-black a:active,body.theme-black a:focus{color:#ff79c6}body:not(.theme) a:visited,body.theme-light a:visited,body.theme-dark a:visited,body.theme-black a:visited{color:#ff79c6}body:not(.theme) hr,body.theme-light hr,body.theme-dark hr,body.theme-black hr{border-color:#f8f8f2}body:not(.theme) main,body:not(.theme) #sidebar,body.theme-light main,body.theme-light #sidebar,body.theme-dark main,body.theme-dark #sidebar,body.theme-black main,body.theme-black #sidebar{color:#f8f8f2;background-color:#44475a}body:not(.theme) fieldset,body.theme-light fieldset,body.theme-dark fieldset,body.theme-black fieldset{border-color:#6272a4}body:not(.theme) pre,body:not(.theme) code,body.theme-light pre,body.theme-light code,body.theme-dark pre,body.theme-dark code,body.theme-black pre,body.theme-black code{color:#f8f8f2;background-color:#282a36;border:none;font-family:'Space Mono', 'Iosevka', 'Fira Code', 'Consolas', monospace}body:not(.theme) blockquote,body.theme-light blockquote,body.theme-dark blockquote,body.theme-black blockquote{color:#f8f8f2;background-color:#282a36;border-color:#f8f8f2}body:not(.theme) figure,body:not(.theme) section,body.theme-light figure,body.theme-light section,body.theme-dark figure,body.theme-dark section,body.theme-black figure,body.theme-black section{border-color:#f8f8f2}body:not(.theme) input,body:not(.theme) textarea,body:not(.theme) .form-input,body:not(.theme) .form-input:not(:focus),body.theme-light input,body.theme-light textarea,body.theme-light .form-input,body.theme-light .form-input:not(:focus),body.theme-dark input,body.theme-dark textarea,body.theme-dark .form-input,body.theme-dark .form-input:not(:focus),body.theme-black input,body.theme-black textarea,body.theme-black .form-input,body.theme-black .form-input:not(:focus){color:#f8f8f2;border-color:#6272a4;background-color:#282a36}body:not(.theme) th,body.theme-light th,body.theme-dark th,body.theme-black th{border-color:#6272a4}body:not(.theme) td,body.theme-light td,body.theme-dark td,body.theme-black td{border-color:#44475a}body:not(.theme) tbody tr:nth-of-type(n),body.theme-light tbody tr:nth-of-type(n),body.theme-dark tbody tr:nth-of-type(n),body.theme-black tbody tr:nth-of-type(n){background-color:#282a36}body:not(.theme) .listing-options button,body.theme-light .listing-options button,body.theme-black .listing-options button,body.theme-dark .listing-options button{border:none}body:not(.theme) .listing-options button:hover,body:not(.theme) .listing-options button:active,body:not(.theme) .listing-options button:focus,body.theme-light .listing-options button:hover,body.theme-light .listing-options button:active,body.theme-light .listing-options button:focus,body.theme-black .listing-options button:hover,body.theme-black .listing-options button:active,body.theme-black .listing-options button:focus,body.theme-dark .listing-options button:hover,body.theme-dark .listing-options button:active,body.theme-dark .listing-options button:focus{color:#ff79c6;background-color:transparent;text-decoration:underline}body:not(.theme) .tab.tab-listing-order,body.theme-light .tab.tab-listing-order,body.theme-black .tab.tab-listing-order,body.theme-dark .tab.tab-listing-order{border-color:#282a36}body:not(.theme) .tab.tab-listing-order .tab-item,body.theme-light .tab.tab-listing-order .tab-item,body.theme-black .tab.tab-listing-order .tab-item,body.theme-dark .tab.tab-listing-order .tab-item{margin:4px;padding:0;background-color:#282a36}body:not(.theme) .tab.tab-listing-order .tab-item:first-child,body.theme-light .tab.tab-listing-order .tab-item:first-child,body.theme-black .tab.tab-listing-order .tab-item:first-child,body.theme-dark .tab.tab-listing-order .tab-item:first-child{margin-left:0}body:not(.theme) .tab.tab-listing-order .tab-item:last-child,body.theme-light .tab.tab-listing-order .tab-item:last-child,body.theme-black .tab.tab-listing-order .tab-item:last-child,body.theme-dark .tab.tab-listing-order .tab-item:last-child{margin-right:0}body:not(.theme) .tab.tab-listing-order .tab-item a,body.theme-light .tab.tab-listing-order .tab-item a,body.theme-black .tab.tab-listing-order .tab-item a,body.theme-dark .tab.tab-listing-order .tab-item a{color:#8be9fd;margin:0;padding:4px 8px}body:not(.theme) .tab.tab-listing-order .tab-item a:hover,body:not(.theme) .tab.tab-listing-order .tab-item a:active,body:not(.theme) .tab.tab-listing-order .tab-item a:focus,body.theme-light .tab.tab-listing-order .tab-item a:hover,body.theme-light .tab.tab-listing-order .tab-item a:active,body.theme-light .tab.tab-listing-order .tab-item a:focus,body.theme-black .tab.tab-listing-order .tab-item a:hover,body.theme-black .tab.tab-listing-order .tab-item a:active,body.theme-black .tab.tab-listing-order .tab-item a:focus,body.theme-dark .tab.tab-listing-order .tab-item a:hover,body.theme-dark .tab.tab-listing-order .tab-item a:active,body.theme-dark .tab.tab-listing-order .tab-item a:focus{color:#8be9fd}body:not(.theme) .tab.tab-listing-order .tab-item.active a,body.theme-light .tab.tab-listing-order .tab-item.active a,body.theme-black .tab.tab-listing-order .tab-item.active a,body.theme-dark .tab.tab-listing-order .tab-item.active a{color:#ff79c6;border-color:#ff79c6}body:not(.theme) .form-select:not([multiple]):not([size]),body.theme-light .form-select:not([multiple]):not([size]),body.theme-black .form-select:not([multiple]):not([size]),body.theme-dark .form-select:not([multiple]):not([size]){border:1px solid #6272a4;background-color:#282a36;background-image:url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23f8f8f2'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E")}body:not(.theme) .message-list thead th,body.theme-light .message-list thead th,body.theme-dark .message-list thead th,body.theme-black .message-list thead th{border-color:#6272a4}body:not(.theme) .message-list tbody tr:nth-of-type(n),body.theme-light .message-list tbody tr:nth-of-type(n),body.theme-dark .message-list tbody tr:nth-of-type(n),body.theme-black .message-list tbody tr:nth-of-type(n){background-color:#282a36}body:not(.theme) .message-list tbody tr:nth-of-type(n) td,body.theme-light .message-list tbody tr:nth-of-type(n) td,body.theme-dark .message-list tbody tr:nth-of-type(n) td,body.theme-black .message-list tbody tr:nth-of-type(n) td{border-color:#44475a}body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a{color:#8be9fd}body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus{color:#ff79c6}body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited{color:#8be9fd}body:not(.theme) .message,body.theme-light .message,body.theme-dark .message,body.theme-black .message{border-color:#282a36}body:not(.theme) .message header,body.theme-light .message header,body.theme-dark .message header,body.theme-black .message header{color:#f8f8f2;background-color:#282a36}body:not(.theme) .toast,body.theme-light .toast,body.theme-dark .toast,body.theme-black .toast{color:#f8f8f2;border-color:#6272a4;background-color:#282a36}body:not(.theme) .divider,body.theme-light .divider,body.theme-dark .divider,body.theme-black .divider{border-color:#282a36}body:not(.theme) .empty-subtitle,body.theme-light .empty-subtitle,body.theme-dark .empty-subtitle,body.theme-black .empty-subtitle{color:#f8f8f2}body:not(.theme) .post-listing .topic,body.theme-light .post-listing .topic,body.theme-dark .post-listing .topic,body.theme-black .post-listing .topic{background-color:#282a36}body:not(.theme) .post-listing .label-topic-tag,body.theme-light .post-listing .label-topic-tag,body.theme-dark .post-listing .label-topic-tag,body.theme-black .post-listing .label-topic-tag{color:#6272a4}body:not(.theme) .link-user,body.theme-light .link-user,body.theme-dark .link-user,body.theme-black .link-user{color:#50fa7b}body:not(.theme) .link-user:hover,body:not(.theme) .link-user:active,body:not(.theme) .link-user:focus,body.theme-light .link-user:hover,body.theme-light .link-user:active,body.theme-light .link-user:focus,body.theme-dark .link-user:hover,body.theme-dark .link-user:active,body.theme-dark .link-user:focus,body.theme-black .link-user:hover,body.theme-black .link-user:active,body.theme-black .link-user:focus{color:#ff79c6}body:not(.theme) .link-user:visited,body.theme-light .link-user:visited,body.theme-dark .link-user:visited,body.theme-black .link-user:visited{color:#50fa7b}body:not(.theme) .link-user:visited:hover,body:not(.theme) .link-user:visited:active,body:not(.theme) .link-user:visited:focus,body.theme-light .link-user:visited:hover,body.theme-light .link-user:visited:active,body.theme-light .link-user:visited:focus,body.theme-dark .link-user:visited:hover,body.theme-dark .link-user:visited:active,body.theme-dark .link-user:visited:focus,body.theme-black .link-user:visited:hover,body.theme-black .link-user:visited:active,body.theme-black .link-user:visited:focus{color:#ff79c6}body:not(.theme) .label-topic-tag a,body.theme-light .label-topic-tag a,body.theme-dark .label-topic-tag a,body.theme-black .label-topic-tag a{color:#6272a4}body:not(.theme) .label-topic-tag a:hover,body:not(.theme) .label-topic-tag a:active,body:not(.theme) .label-topic-tag a:focus,body.theme-light .label-topic-tag a:hover,body.theme-light .label-topic-tag a:active,body.theme-light .label-topic-tag a:focus,body.theme-dark .label-topic-tag a:hover,body.theme-dark .label-topic-tag a:active,body.theme-dark .label-topic-tag a:focus,body.theme-black .label-topic-tag a:hover,body.theme-black .label-topic-tag a:active,body.theme-black .label-topic-tag a:focus{color:#ff79c6}body:not(.theme) .text-secondary,body.theme-light .text-secondary,body.theme-dark .text-secondary,body.theme-black .text-secondary{font-style:normal;font-weight:bold;color:#6272a4}body:not(.theme) .text-warning,body.theme-light .text-warning,body.theme-dark .text-warning,body.theme-black .text-warning{color:#282a36;background-color:#ffb86c;padding:10px}body:not(.theme) blockquote.text-warning,body.theme-light blockquote.text-warning,body.theme-dark blockquote.text-warning,body.theme-black blockquote.text-warning{color:#f8f8f2;background-color:#282a36}body:not(.theme) .form-status-success,body.theme-light .form-status-success,body.theme-dark .form-status-success,body.theme-black .form-status-success{color:#50fa7b}body:not(.theme) .form-status-error,body.theme-light .form-status-error,body.theme-dark .form-status-error,body.theme-black .form-status-error{color:#f55}body:not(.theme) .is-comment-new .comment-text,body.theme-light .is-comment-new .comment-text,body.theme-dark .is-comment-new .comment-text,body.theme-black .is-comment-new .comment-text{color:#f8f8f2}body:not(.theme) .is-topic-official h1 a:visited,body.theme-light .is-topic-official h1 a:visited,body.theme-dark .is-topic-official h1 a:visited,body.theme-black .is-topic-official h1 a:visited{color:#f55}body:not(.theme) .label-topic-tag-spoiler,body.theme-light .label-topic-tag-spoiler,body.theme-dark .label-topic-tag-spoiler,body.theme-black .label-topic-tag-spoiler{background-color:#f1fa8c}body:not(.theme) .label-topic-tag-spoiler a,body.theme-light .label-topic-tag-spoiler a,body.theme-dark .label-topic-tag-spoiler a,body.theme-black .label-topic-tag-spoiler a{color:#282a36}body:not(.theme) .label-topic-tag-nsfw,body.theme-light .label-topic-tag-nsfw,body.theme-dark .label-topic-tag-nsfw,body.theme-black .label-topic-tag-nsfw{background-color:#f55}body:not(.theme) .label-topic-tag-nsfw a,body.theme-light .label-topic-tag-nsfw a,body.theme-dark .label-topic-tag-nsfw a,body.theme-black .label-topic-tag-nsfw a{color:#282a36}body:not(.theme) .topic-voting.btn,body.theme-light .topic-voting.btn,body.theme-dark .topic-voting.btn,body.theme-black .topic-voting.btn{border-style:solid}body:not(.theme) .btn,body:not(.theme) .btn.btn-link,body.theme-light .btn,body.theme-light .btn.btn-link,body.theme-dark .btn,body.theme-dark .btn.btn-link,body.theme-black .btn,body.theme-black .btn.btn-link{color:#8be9fd;border-color:#8be9fd;background:transparent}body:not(.theme) .btn:hover,body:not(.theme) .btn:active,body:not(.theme) .btn:focus,body:not(.theme) .btn.btn-link:hover,body:not(.theme) .btn.btn-link:active,body:not(.theme) .btn.btn-link:focus,body.theme-light .btn:hover,body.theme-light .btn:active,body.theme-light .btn:focus,body.theme-light .btn.btn-link:hover,body.theme-light .btn.btn-link:active,body.theme-light .btn.btn-link:focus,body.theme-dark .btn:hover,body.theme-dark .btn:active,body.theme-dark .btn:focus,body.theme-dark .btn.btn-link:hover,body.theme-dark .btn.btn-link:active,body.theme-dark .btn.btn-link:focus,body.theme-black .btn:hover,body.theme-black .btn:active,body.theme-black .btn:focus,body.theme-black .btn.btn-link:hover,body.theme-black .btn.btn-link:active,body.theme-black .btn.btn-link:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .btn:visited,body:not(.theme) .btn.btn-link:visited,body.theme-light .btn:visited,body.theme-light .btn.btn-link:visited,body.theme-dark .btn:visited,body.theme-dark .btn.btn-link:visited,body.theme-black .btn:visited,body.theme-black .btn.btn-link:visited{color:#8be9fd;border-color:#8be9fd;background:transparent}body:not(.theme) .btn:visited:hover,body:not(.theme) .btn:visited:active,body:not(.theme) .btn:visited:focus,body:not(.theme) .btn.btn-link:visited:hover,body:not(.theme) .btn.btn-link:visited:active,body:not(.theme) .btn.btn-link:visited:focus,body.theme-light .btn:visited:hover,body.theme-light .btn:visited:active,body.theme-light .btn:visited:focus,body.theme-light .btn.btn-link:visited:hover,body.theme-light .btn.btn-link:visited:active,body.theme-light .btn.btn-link:visited:focus,body.theme-dark .btn:visited:hover,body.theme-dark .btn:visited:active,body.theme-dark .btn:visited:focus,body.theme-dark .btn.btn-link:visited:hover,body.theme-dark .btn.btn-link:visited:active,body.theme-dark .btn.btn-link:visited:focus,body.theme-black .btn:visited:hover,body.theme-black .btn:visited:active,body.theme-black .btn:visited:focus,body.theme-black .btn.btn-link:visited:hover,body.theme-black .btn.btn-link:visited:active,body.theme-black .btn.btn-link:visited:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .btn-used,body:not(.theme) .topic-voting.btn-used,body.theme-light .btn-used,body.theme-light .topic-voting.btn-used,body.theme-dark .btn-used,body.theme-dark .topic-voting.btn-used,body.theme-black .btn-used,body.theme-black .topic-voting.btn-used{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .btn-used:hover,body:not(.theme) .btn-used:active,body:not(.theme) .btn-used:focus,body:not(.theme) .topic-voting.btn-used:hover,body:not(.theme) .topic-voting.btn-used:active,body:not(.theme) .topic-voting.btn-used:focus,body.theme-light .btn-used:hover,body.theme-light .btn-used:active,body.theme-light .btn-used:focus,body.theme-light .topic-voting.btn-used:hover,body.theme-light .topic-voting.btn-used:active,body.theme-light .topic-voting.btn-used:focus,body.theme-dark .btn-used:hover,body.theme-dark .btn-used:active,body.theme-dark .btn-used:focus,body.theme-dark .topic-voting.btn-used:hover,body.theme-dark .topic-voting.btn-used:active,body.theme-dark .topic-voting.btn-used:focus,body.theme-black .btn-used:hover,body.theme-black .btn-used:active,body.theme-black .btn-used:focus,body.theme-black .topic-voting.btn-used:hover,body.theme-black .topic-voting.btn-used:active,body.theme-black .topic-voting.btn-used:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}body:not(.theme) .btn.btn-primary,body.theme-light .btn.btn-primary,body.theme-dark .btn.btn-primary,body.theme-black .btn.btn-primary{color:#282a36;background:#8be9fd;border-color:#8be9fd}body:not(.theme) .btn.btn-primary:hover,body:not(.theme) .btn.btn-primary:active,body:not(.theme) .btn.btn-primary:focus,body.theme-light .btn.btn-primary:hover,body.theme-light .btn.btn-primary:active,body.theme-light .btn.btn-primary:focus,body.theme-dark .btn.btn-primary:hover,body.theme-dark .btn.btn-primary:active,body.theme-dark .btn.btn-primary:focus,body.theme-black .btn.btn-primary:hover,body.theme-black .btn.btn-primary:active,body.theme-black .btn.btn-primary:focus{color:#282a36;border-color:#ff79c6;background:#ff79c6}.is-topic-official{border-left-color:#f55 !important}.is-topic-official h1 a{color:#f55}.is-topic-mine{border-left-color:#bd93f9 !important}.is-topic-mine h1 a{color:#bd93f9}.is-topic-mine .topic-voting{color:#f8f8f2}.is-topic-mine h1 a:visited{color:#bd93f9}.topic-icon{border-color:#8be9fd}.is-comment-by-op>.comment-itself{border-color:#f1fa8c !important}.is-comment-mine>.comment-itself{border-color:#bd93f9 !important}.is-comment-exemplary>.comment-itself{border-color:#8be9fd !important}.is-comment-new>.comment-itself{border-color:#ffb86c !important}.is-message-mine{border-left-color:#bd93f9 !important}body:not(.theme) .settings-list,body.theme-light .settings-list,body.theme-dark .settings-list,body.theme-black .settings-list{margin-left:0px}body:not(.theme) .settings-list li,body.theme-light .settings-list li,body.theme-dark .settings-list li,body.theme-black .settings-list li{background-color:#282a36;border:1px solid #6272a4;padding:15px;margin-top:15px;margin-bottom:15px}body:not(.theme) .settings-list a,body.theme-light .settings-list a,body.theme-dark .settings-list a,body.theme-black .settings-list a{color:#8be9fd}body:not(.theme) .settings-list a:hover,body:not(.theme) .settings-list a:active,body:not(.theme) .settings-list a:focus,body.theme-light .settings-list a:hover,body.theme-light .settings-list a:active,body.theme-light .settings-list a:focus,body.theme-dark .settings-list a:hover,body.theme-dark .settings-list a:active,body.theme-dark .settings-list a:focus,body.theme-black .settings-list a:hover,body.theme-black .settings-list a:active,body.theme-black .settings-list a:focus{color:#ff79c6}body:not(.theme) .settings-list a:visited,body.theme-light .settings-list a:visited,body.theme-dark .settings-list a:visited,body.theme-black .settings-list a:visited{color:#8be9fd}body:not(.theme) .settings-list a:visited:hover,body:not(.theme) .settings-list a:visited:active,body:not(.theme) .settings-list a:visited:focus,body.theme-light .settings-list a:visited:hover,body.theme-light .settings-list a:visited:active,body.theme-light .settings-list a:visited:focus,body.theme-dark .settings-list a:visited:hover,body.theme-dark .settings-list a:visited:active,body.theme-dark .settings-list a:visited:focus,body.theme-black .settings-list a:visited:hover,body.theme-black .settings-list a:visited:active,body.theme-black .settings-list a:visited:focus{color:#ff79c6}#sidebar form[action='/logout']>button:hover,#sidebar form[action='/logout']>button:active,#sidebar form[action='/logout']>button:focus{border-color:transparent;background-color:transparent}#sidebar .nav .nav-item a,#sidebar form[action='/logout']>button{color:#ffb86c}#sidebar .nav .nav-item a:hover,#sidebar .nav .nav-item a:active,#sidebar .nav .nav-item a:focus,#sidebar form[action='/logout']>button:hover,#sidebar form[action='/logout']>button:active,#sidebar form[action='/logout']>button:focus{color:#f1fa8c}#sidebar .nav .nav-item a:visited,#sidebar form[action='/logout']>button:visited{color:#ffb86c}#sidebar .nav .nav-item a:visited:hover,#sidebar .nav .nav-item a:visited:active,#sidebar .nav .nav-item a:visited:focus,#sidebar form[action='/logout']>button:visited:hover,#sidebar form[action='/logout']>button:visited:active,#sidebar form[action='/logout']>button:visited:focus{color:#f1fa8c}#sidebar .topic-tags{margin-bottom:0.5rem}#sidebar .label-topic-tag{color:#6272a4}#sidebar .label-topic-tag:hover{color:#f8f8f2;cursor:default}body:not(.theme) .site-header-logo,body.theme-light .site-header-logo,body.theme-black .site-header-logo,body.theme-dark .site-header-logo{color:#f8f8f2}body:not(.theme) .site-header-context,body.theme-light .site-header-context,body.theme-black .site-header-context,body.theme-dark .site-header-context{color:#ffb86c}body:not(.theme) .site-header-context:hover,body:not(.theme) .site-header-context:active,body:not(.theme) .site-header-context:focus,body.theme-light .site-header-context:hover,body.theme-light .site-header-context:active,body.theme-light .site-header-context:focus,body.theme-black .site-header-context:hover,body.theme-black .site-header-context:active,body.theme-black .site-header-context:focus,body.theme-dark .site-header-context:hover,body.theme-dark .site-header-context:active,body.theme-dark .site-header-context:focus{color:#f1fa8c}body:not(.theme) .logged-in-user-username,body.theme-light .logged-in-user-username,body.theme-black .logged-in-user-username,body.theme-dark .logged-in-user-username{color:#50fa7b}body:not(.theme) .logged-in-user-username:hover,body:not(.theme) .logged-in-user-username:active,body:not(.theme) .logged-in-user-username:focus,body.theme-light .logged-in-user-username:hover,body.theme-light .logged-in-user-username:active,body.theme-light .logged-in-user-username:focus,body.theme-black .logged-in-user-username:hover,body.theme-black .logged-in-user-username:active,body.theme-black .logged-in-user-username:focus,body.theme-dark .logged-in-user-username:hover,body.theme-dark .logged-in-user-username:active,body.theme-dark .logged-in-user-username:focus{color:#ff79c6}body:not(.theme) .logged-in-user-alert,body.theme-light .logged-in-user-alert,body.theme-black .logged-in-user-alert,body.theme-dark .logged-in-user-alert{color:#282a36;background-color:#ffb86c;padding:0.1rem 0.3rem;margin-top:0.2rem;justify-content:left}body:not(.theme) .logged-in-user-alert:hover,body:not(.theme) .logged-in-user-alert:active,body:not(.theme) .logged-in-user-alert:focus,body.theme-light .logged-in-user-alert:hover,body.theme-light .logged-in-user-alert:active,body.theme-light .logged-in-user-alert:focus,body.theme-black .logged-in-user-alert:hover,body.theme-black .logged-in-user-alert:active,body.theme-black .logged-in-user-alert:focus,body.theme-dark .logged-in-user-alert:hover,body.theme-dark .logged-in-user-alert:active,body.theme-dark .logged-in-user-alert:focus{background-color:#f1fa8c}body>header>a:nth-child(1):not(.no-header-logo){color:#f8f8f2;background-size:32px 32px;background-image:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAMAAADQmBKKAAAAHlBMVEUoKjZQ+nticqSL6f29k/nx+oz/VVX/ecb/uGz///+3yBn7AAAAaklEQVR42u3Oxw2AQAADsNDZf2IGyO8kioQ9gQMAAAAAcLelCAkJCQkJCQkJ/Tk0lZS5ZMhZhISEhISEhISEvhbaSoasJWUvKUJCQkJCQkJCQu+GnnSUFCEhISEhISEhoXdDAAAAAAA3uwDrCC2R1NNC7QAAAABJRU5ErkJggg==")}.user-label{border-radius:0 !important;padding:3px 5px !important}.label-edit-box{color:#f8f8f2 !important;background-color:#282a36 !important}.label-edit-box input{border:1px solid #6272a4 !important;background-color:#44475a !important}.label-light,.label-dark{color:transparent !important}.bg-none{color:#f8f8f2 !important;border-color:#6272a4 !important}.bg-red{color:#282a36 !important;background-color:#f55 !important}.bg-orangered{color:#282a36 !important;background-color:#ffb86c !important}.bg-orange{color:#282a36 !important;background-color:#f1fa8c !important}.bg-dodgerblue{color:#282a36 !important;background-color:#8be9fd !important}.bg-forestgreen{color:#282a36 !important;background-color:#50fa7b !important}.bg-slategray{color:#f8f8f2 !important;background-color:#44475a !important}body:not(.theme) .topic-full .topic-full-byline,body.theme-light .topic-full .topic-full-byline,body.theme-dark .topic-full .topic-full-byline,body.theme-black .topic-full .topic-full-byline{color:#f8f8f2}body:not(.theme) .topic-full .topic-full-text a,body.theme-light .topic-full .topic-full-text a,body.theme-dark .topic-full .topic-full-text a,body.theme-black .topic-full .topic-full-text a{color:#8be9fd}body:not(.theme) .topic-full .topic-full-text a:hover,body:not(.theme) .topic-full .topic-full-text a:active,body:not(.theme) .topic-full .topic-full-text a:focus,body.theme-light .topic-full .topic-full-text a:hover,body.theme-light .topic-full .topic-full-text a:active,body.theme-light .topic-full .topic-full-text a:focus,body.theme-dark .topic-full .topic-full-text a:hover,body.theme-dark .topic-full .topic-full-text a:active,body.theme-dark .topic-full .topic-full-text a:focus,body.theme-black .topic-full .topic-full-text a:hover,body.theme-black .topic-full .topic-full-text a:active,body.theme-black .topic-full .topic-full-text a:focus{color:#ff79c6}body:not(.theme) .topic-full .topic-full-text a:visited,body.theme-light .topic-full .topic-full-text a:visited,body.theme-dark .topic-full .topic-full-text a:visited,body.theme-black .topic-full .topic-full-text a:visited{color:#8be9fd}body:not(.theme) .topic-full .topic-full-text a:visited:hover,body:not(.theme) .topic-full .topic-full-text a:visited:active,body:not(.theme) .topic-full .topic-full-text a:visited:focus,body.theme-light .topic-full .topic-full-text a:visited:hover,body.theme-light .topic-full .topic-full-text a:visited:active,body.theme-light .topic-full .topic-full-text a:visited:focus,body.theme-dark .topic-full .topic-full-text a:visited:hover,body.theme-dark .topic-full .topic-full-text a:visited:active,body.theme-dark .topic-full .topic-full-text a:visited:focus,body.theme-black .topic-full .topic-full-text a:visited:hover,body.theme-black .topic-full .topic-full-text a:visited:active,body.theme-black .topic-full .topic-full-text a:visited:focus{color:#ff79c6}body:not(.theme) .topic-listing>li:nth-of-type(n),body.theme-light .topic-listing>li:nth-of-type(n),body.theme-dark .topic-listing>li:nth-of-type(n),body.theme-black .topic-listing>li:nth-of-type(n){background-color:#282a36}body:not(.theme) .topic-info,body.theme-light .topic-info,body.theme-dark .topic-info,body.theme-black .topic-info{color:#f8f8f2;background-color:#282a36}body:not(.theme) .time-responsive-full,body.theme-light .time-responsive-full,body.theme-dark .time-responsive-full,body.theme-black .time-responsive-full{color:#f8f8f2}body:not(.theme) .topic-content-metadata,body.theme-light .topic-content-metadata,body.theme-dark .topic-content-metadata,body.theme-black .topic-content-metadata{color:#f8f8f2}body:not(.theme) .topic-text-excerpt,body.theme-light .topic-text-excerpt,body.theme-dark .topic-text-excerpt,body.theme-black .topic-text-excerpt{color:#6272a4}body:not(.theme) .topic-text-excerpt[open],body.theme-light .topic-text-excerpt[open],body.theme-dark .topic-text-excerpt[open],body.theme-black .topic-text-excerpt[open]{color:#f8f8f2}body:not(.theme) .topic-text-excerpt summary,body:not(.theme) .topic-text-excerpt summary::after,body.theme-light .topic-text-excerpt summary,body.theme-light .topic-text-excerpt summary::after,body.theme-dark .topic-text-excerpt summary,body.theme-dark .topic-text-excerpt summary::after,body.theme-black .topic-text-excerpt summary,body.theme-black .topic-text-excerpt summary::after{color:#6272a4}body:not(.theme) .link-group,body.theme-light .link-group,body.theme-dark .link-group,body.theme-black .link-group{color:#ffb86c}body:not(.theme) .link-group:hover,body:not(.theme) .link-group:active,body:not(.theme) .link-group:focus,body.theme-light .link-group:hover,body.theme-light .link-group:active,body.theme-light .link-group:focus,body.theme-dark .link-group:hover,body.theme-dark .link-group:active,body.theme-dark .link-group:focus,body.theme-black .link-group:hover,body.theme-black .link-group:active,body.theme-black .link-group:focus{color:#f1fa8c}body:not(.theme) .topic-info-comments a .topic-info-comments-new,body.theme-light .topic-info-comments a .topic-info-comments-new,body.theme-dark .topic-info-comments a .topic-info-comments-new,body.theme-black .topic-info-comments a .topic-info-comments-new{color:#ffb86c}body:not(.theme) .topic-info-comments a:hover,body:not(.theme) .topic-info-comments a:active,body:not(.theme) .topic-info-comments a:focus,body.theme-light .topic-info-comments a:hover,body.theme-light .topic-info-comments a:active,body.theme-light .topic-info-comments a:focus,body.theme-dark .topic-info-comments a:hover,body.theme-dark .topic-info-comments a:active,body.theme-dark .topic-info-comments a:focus,body.theme-black .topic-info-comments a:hover,body.theme-black .topic-info-comments a:active,body.theme-black .topic-info-comments a:focus{color:#ff79c6}body:not(.theme) .topic-info-comments a:hover .topic-info-comments-new,body:not(.theme) .topic-info-comments a:active .topic-info-comments-new,body:not(.theme) .topic-info-comments a:focus .topic-info-comments-new,body.theme-light .topic-info-comments a:hover .topic-info-comments-new,body.theme-light .topic-info-comments a:active .topic-info-comments-new,body.theme-light .topic-info-comments a:focus .topic-info-comments-new,body.theme-dark .topic-info-comments a:hover .topic-info-comments-new,body.theme-dark .topic-info-comments a:active .topic-info-comments-new,body.theme-dark .topic-info-comments a:focus .topic-info-comments-new,body.theme-black .topic-info-comments a:hover .topic-info-comments-new,body.theme-black .topic-info-comments a:active .topic-info-comments-new,body.theme-black .topic-info-comments a:focus .topic-info-comments-new{color:#f1fa8c}body:not(.theme) .topic-info-comments a:visited,body.theme-light .topic-info-comments a:visited,body.theme-dark .topic-info-comments a:visited,body.theme-black .topic-info-comments a:visited{color:#8be9fd}body:not(.theme) .topic-info-comments a:visited:hover,body:not(.theme) .topic-info-comments a:visited:active,body:not(.theme) .topic-info-comments a:visited:focus,body.theme-light .topic-info-comments a:visited:hover,body.theme-light .topic-info-comments a:visited:active,body.theme-light .topic-info-comments a:visited:focus,body.theme-dark .topic-info-comments a:visited:hover,body.theme-dark .topic-info-comments a:visited:active,body.theme-dark .topic-info-comments a:visited:focus,body.theme-black .topic-info-comments a:visited:hover,body.theme-black .topic-info-comments a:visited:active,body.theme-black .topic-info-comments a:visited:focus{color:#ff79c6}body:not(.theme) .topic-info-comments a:visited:hover .topic-info-comments-new,body:not(.theme) .topic-info-comments a:visited:active .topic-info-comments-new,body:not(.theme) .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:focus .topic-info-comments-new{color:#f1fa8c} } - -body:not(.theme) .highlight .syntax-err,body.theme-light .highlight .syntax-err,body.theme-dark .highlight .syntax-err,body.theme-black .highlight .syntax-err { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-g,body.theme-light .highlight .syntax-g,body.theme-dark .highlight .syntax-g,body.theme-black .highlight .syntax-g { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-k,body.theme-light .highlight .syntax-k,body.theme-dark .highlight .syntax-k,body.theme-black .highlight .syntax-k { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-l,body.theme-light .highlight .syntax-l,body.theme-dark .highlight .syntax-l,body.theme-black .highlight .syntax-l { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-n,body.theme-light .highlight .syntax-n,body.theme-dark .highlight .syntax-n,body.theme-black .highlight .syntax-n { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-o,body.theme-light .highlight .syntax-o,body.theme-dark .highlight .syntax-o,body.theme-black .highlight .syntax-o { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-x,body.theme-light .highlight .syntax-x,body.theme-dark .highlight .syntax-x,body.theme-black .highlight .syntax-x { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-p,body.theme-light .highlight .syntax-p,body.theme-dark .highlight .syntax-p,body.theme-black .highlight .syntax-p { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-cm,body.theme-light .highlight .syntax-cm,body.theme-dark .highlight .syntax-cm,body.theme-black .highlight .syntax-cm { - color: #8be9fd; -} - -body:not(.theme) .highlight .syntax-cp,body.theme-light .highlight .syntax-cp,body.theme-dark .highlight .syntax-cp,body.theme-black .highlight .syntax-cp { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-c1,body.theme-light .highlight .syntax-c1,body.theme-dark .highlight .syntax-c1,body.theme-black .highlight .syntax-c1 { - color: #8be9fd; -} - -body:not(.theme) .highlight .syntax-cs,body.theme-light .highlight .syntax-cs,body.theme-dark .highlight .syntax-cs,body.theme-black .highlight .syntax-cs { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-gd,body.theme-light .highlight .syntax-gd,body.theme-dark .highlight .syntax-gd,body.theme-black .highlight .syntax-gd { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-ge,body.theme-light .highlight .syntax-ge,body.theme-dark .highlight .syntax-ge,body.theme-black .highlight .syntax-ge { - color: #f8f8f2; - font-style: italic; -} - -body:not(.theme) .highlight .syntax-gr,body.theme-light .highlight .syntax-gr,body.theme-dark .highlight .syntax-gr,body.theme-black .highlight .syntax-gr { - color: #f55; -} - -body:not(.theme) .highlight .syntax-gh,body.theme-light .highlight .syntax-gh,body.theme-dark .highlight .syntax-gh,body.theme-black .highlight .syntax-gh { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-gi,body.theme-light .highlight .syntax-gi,body.theme-dark .highlight .syntax-gi,body.theme-black .highlight .syntax-gi { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-go,body.theme-light .highlight .syntax-go,body.theme-dark .highlight .syntax-go,body.theme-black .highlight .syntax-go { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-gp,body.theme-light .highlight .syntax-gp,body.theme-dark .highlight .syntax-gp,body.theme-black .highlight .syntax-gp { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-gs,body.theme-light .highlight .syntax-gs,body.theme-dark .highlight .syntax-gs,body.theme-black .highlight .syntax-gs { - color: #f8f8f2; - font-weight: bold; -} - -body:not(.theme) .highlight .syntax-gu,body.theme-light .highlight .syntax-gu,body.theme-dark .highlight .syntax-gu,body.theme-black .highlight .syntax-gu { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-gt,body.theme-light .highlight .syntax-gt,body.theme-dark .highlight .syntax-gt,body.theme-black .highlight .syntax-gt { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-kc,body.theme-light .highlight .syntax-kc,body.theme-dark .highlight .syntax-kc,body.theme-black .highlight .syntax-kc { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-kd,body.theme-light .highlight .syntax-kd,body.theme-dark .highlight .syntax-kd,body.theme-black .highlight .syntax-kd { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-kn,body.theme-light .highlight .syntax-kn,body.theme-dark .highlight .syntax-kn,body.theme-black .highlight .syntax-kn { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-kp,body.theme-light .highlight .syntax-kp,body.theme-dark .highlight .syntax-kp,body.theme-black .highlight .syntax-kp { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-kr,body.theme-light .highlight .syntax-kr,body.theme-dark .highlight .syntax-kr,body.theme-black .highlight .syntax-kr { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-kt,body.theme-light .highlight .syntax-kt,body.theme-dark .highlight .syntax-kt,body.theme-black .highlight .syntax-kt { - color: #f55; -} - -body:not(.theme) .highlight .syntax-ld,body.theme-light .highlight .syntax-ld,body.theme-dark .highlight .syntax-ld,body.theme-black .highlight .syntax-ld { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-m,body.theme-light .highlight .syntax-m,body.theme-dark .highlight .syntax-m,body.theme-black .highlight .syntax-m { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-s,body.theme-light .highlight .syntax-s,body.theme-dark .highlight .syntax-s,body.theme-black .highlight .syntax-s { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-na,body.theme-light .highlight .syntax-na,body.theme-dark .highlight .syntax-na,body.theme-black .highlight .syntax-na { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-nb,body.theme-light .highlight .syntax-nb,body.theme-dark .highlight .syntax-nb,body.theme-black .highlight .syntax-nb { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-nc,body.theme-light .highlight .syntax-nc,body.theme-dark .highlight .syntax-nc,body.theme-black .highlight .syntax-nc { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-no,body.theme-light .highlight .syntax-no,body.theme-dark .highlight .syntax-no,body.theme-black .highlight .syntax-no { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-nd,body.theme-light .highlight .syntax-nd,body.theme-dark .highlight .syntax-nd,body.theme-black .highlight .syntax-nd { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-ni,body.theme-light .highlight .syntax-ni,body.theme-dark .highlight .syntax-ni,body.theme-black .highlight .syntax-ni { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-ne,body.theme-light .highlight .syntax-ne,body.theme-dark .highlight .syntax-ne,body.theme-black .highlight .syntax-ne { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-nf,body.theme-light .highlight .syntax-nf,body.theme-dark .highlight .syntax-nf,body.theme-black .highlight .syntax-nf { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-nl,body.theme-light .highlight .syntax-nl,body.theme-dark .highlight .syntax-nl,body.theme-black .highlight .syntax-nl { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-nn,body.theme-light .highlight .syntax-nn,body.theme-dark .highlight .syntax-nn,body.theme-black .highlight .syntax-nn { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-nx,body.theme-light .highlight .syntax-nx,body.theme-dark .highlight .syntax-nx,body.theme-black .highlight .syntax-nx { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-py,body.theme-light .highlight .syntax-py,body.theme-dark .highlight .syntax-py,body.theme-black .highlight .syntax-py { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-nt,body.theme-light .highlight .syntax-nt,body.theme-dark .highlight .syntax-nt,body.theme-black .highlight .syntax-nt { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-nv,body.theme-light .highlight .syntax-nv,body.theme-dark .highlight .syntax-nv,body.theme-black .highlight .syntax-nv { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-ow,body.theme-light .highlight .syntax-ow,body.theme-dark .highlight .syntax-ow,body.theme-black .highlight .syntax-ow { - color: #50fa7b; -} - -body:not(.theme) .highlight .syntax-w,body.theme-light .highlight .syntax-w,body.theme-dark .highlight .syntax-w,body.theme-black .highlight .syntax-w { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-mf,body.theme-light .highlight .syntax-mf,body.theme-dark .highlight .syntax-mf,body.theme-black .highlight .syntax-mf { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-mh,body.theme-light .highlight .syntax-mh,body.theme-dark .highlight .syntax-mh,body.theme-black .highlight .syntax-mh { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-mi,body.theme-light .highlight .syntax-mi,body.theme-dark .highlight .syntax-mi,body.theme-black .highlight .syntax-mi { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-mo,body.theme-light .highlight .syntax-mo,body.theme-dark .highlight .syntax-mo,body.theme-black .highlight .syntax-mo { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-sb,body.theme-light .highlight .syntax-sb,body.theme-dark .highlight .syntax-sb,body.theme-black .highlight .syntax-sb { - color: #8be9fd; -} - -body:not(.theme) .highlight .syntax-sc,body.theme-light .highlight .syntax-sc,body.theme-dark .highlight .syntax-sc,body.theme-black .highlight .syntax-sc { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-sd,body.theme-light .highlight .syntax-sd,body.theme-dark .highlight .syntax-sd,body.theme-black .highlight .syntax-sd { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-s2,body.theme-light .highlight .syntax-s2,body.theme-dark .highlight .syntax-s2,body.theme-black .highlight .syntax-s2 { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-se,body.theme-light .highlight .syntax-se,body.theme-dark .highlight .syntax-se,body.theme-black .highlight .syntax-se { - color: #ffb86c; -} - -body:not(.theme) .highlight .syntax-sh,body.theme-light .highlight .syntax-sh,body.theme-dark .highlight .syntax-sh,body.theme-black .highlight .syntax-sh { - color: #f8f8f2; -} - -body:not(.theme) .highlight .syntax-si,body.theme-light .highlight .syntax-si,body.theme-dark .highlight .syntax-si,body.theme-black .highlight .syntax-si { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-sx,body.theme-light .highlight .syntax-sx,body.theme-dark .highlight .syntax-sx,body.theme-black .highlight .syntax-sx { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-sr,body.theme-light .highlight .syntax-sr,body.theme-dark .highlight .syntax-sr,body.theme-black .highlight .syntax-sr { - color: #f55; -} - -body:not(.theme) .highlight .syntax-s1,body.theme-light .highlight .syntax-s1,body.theme-dark .highlight .syntax-s1,body.theme-black .highlight .syntax-s1 { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-ss,body.theme-light .highlight .syntax-ss,body.theme-dark .highlight .syntax-ss,body.theme-black .highlight .syntax-ss { - color: #bd93f9; -} - -body:not(.theme) .highlight .syntax-bp,body.theme-light .highlight .syntax-bp,body.theme-dark .highlight .syntax-bp,body.theme-black .highlight .syntax-bp { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-vc,body.theme-light .highlight .syntax-vc,body.theme-dark .highlight .syntax-vc,body.theme-black .highlight .syntax-vc { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-vg,body.theme-light .highlight .syntax-vg,body.theme-dark .highlight .syntax-vg,body.theme-black .highlight .syntax-vg { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-vi,body.theme-light .highlight .syntax-vi,body.theme-dark .highlight .syntax-vi,body.theme-black .highlight .syntax-vi { - color: #ff79c6; -} - -body:not(.theme) .highlight .syntax-il,body.theme-light .highlight .syntax-il,body.theme-dark .highlight .syntax-il,body.theme-black .highlight .syntax-il { - color: #bd93f9; -} - -body:not(.theme) .btn-comment-collapse,body.theme-light .btn-comment-collapse,body.theme-dark .btn-comment-collapse,body.theme-black .btn-comment-collapse { - color: #8be9fd; - border-color: #8be9fd; - background: transparent; -} - -body:not(.theme) .btn-comment-collapse:hover,body:not(.theme) .btn-comment-collapse:active,body:not(.theme) .btn-comment-collapse:focus,body.theme-light .btn-comment-collapse:hover,body.theme-light .btn-comment-collapse:active,body.theme-light .btn-comment-collapse:focus,body.theme-dark .btn-comment-collapse:hover,body.theme-dark .btn-comment-collapse:active,body.theme-dark .btn-comment-collapse:focus,body.theme-black .btn-comment-collapse:hover,body.theme-black .btn-comment-collapse:active,body.theme-black .btn-comment-collapse:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .comment,body.theme-light .comment,body.theme-dark .comment,body.theme-black .comment { - border-color: #282a36; -} - -body:not(.theme) .comment:target>.comment-itself,body.theme-light .comment:target>.comment-itself,body.theme-dark .comment:target>.comment-itself,body.theme-black .comment:target>.comment-itself { - border-left: 3px solid #50fa7b !important; -} - -body:not(.theme) .comment .comment-itself header,body.theme-light .comment .comment-itself header,body.theme-dark .comment .comment-itself header,body.theme-black .comment .comment-itself header { - background-color: #282a36; -} - -body:not(.theme) .comment .comment-nav-link,body.theme-light .comment .comment-nav-link,body.theme-dark .comment .comment-nav-link,body.theme-black .comment .comment-nav-link { - color: #8be9fd; -} - -body:not(.theme) .comment .comment-nav-link:hover,body:not(.theme) .comment .comment-nav-link:active,body:not(.theme) .comment .comment-nav-link:focus,body.theme-light .comment .comment-nav-link:hover,body.theme-light .comment .comment-nav-link:active,body.theme-light .comment .comment-nav-link:focus,body.theme-dark .comment .comment-nav-link:hover,body.theme-dark .comment .comment-nav-link:active,body.theme-dark .comment .comment-nav-link:focus,body.theme-black .comment .comment-nav-link:hover,body.theme-black .comment .comment-nav-link:active,body.theme-black .comment .comment-nav-link:focus { - color: #ff79c6; -} - -body:not(.theme) .comment .comment-nav-link:visited,body.theme-light .comment .comment-nav-link:visited,body.theme-dark .comment .comment-nav-link:visited,body.theme-black .comment .comment-nav-link:visited { - color: #8be9fd; -} - -body:not(.theme) .comment .comment-nav-link:visited:hover,body:not(.theme) .comment .comment-nav-link:visited:active,body:not(.theme) .comment .comment-nav-link:visited:focus,body.theme-light .comment .comment-nav-link:visited:hover,body.theme-light .comment .comment-nav-link:visited:active,body.theme-light .comment .comment-nav-link:visited:focus,body.theme-dark .comment .comment-nav-link:visited:hover,body.theme-dark .comment .comment-nav-link:visited:active,body.theme-dark .comment .comment-nav-link:visited:focus,body.theme-black .comment .comment-nav-link:visited:hover,body.theme-black .comment .comment-nav-link:visited:active,body.theme-black .comment .comment-nav-link:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .comment .comment-user-info,body.theme-light .comment .comment-user-info,body.theme-dark .comment .comment-user-info,body.theme-black .comment .comment-user-info { - color: #f1fa8c; -} - -body:not(.theme) .comment .time-responsive-full,body.theme-light .comment .time-responsive-full,body.theme-dark .comment .time-responsive-full,body.theme-black .comment .time-responsive-full { - color: #f8f8f2; -} - -body:not(.theme) .comment-exemplary-reasons,body.theme-light .comment-exemplary-reasons,body.theme-dark .comment-exemplary-reasons,body.theme-black .comment-exemplary-reasons { - background-color: #282a36; - padding: 5px; -} - -body:not(.theme) .comment-exemplary-reasons[open],body.theme-light .comment-exemplary-reasons[open],body.theme-dark .comment-exemplary-reasons[open],body.theme-black .comment-exemplary-reasons[open] { - border-bottom: 1px solid #8be9fd; -} - -body:not(.theme) .comment-exemplary-reasons ul,body.theme-light .comment-exemplary-reasons ul,body.theme-dark .comment-exemplary-reasons ul,body.theme-black .comment-exemplary-reasons ul { - margin-left: 1.3rem; - margin-bottom: 0; -} - -body:not(.theme) .comment-votes,body.theme-light .comment-votes,body.theme-dark .comment-votes,body.theme-black .comment-votes { - color: #f8f8f2; -} - -body:not(.theme) .comment[data-comment-depth='0'],body.theme-light .comment[data-comment-depth='0'],body.theme-dark .comment[data-comment-depth='0'],body.theme-black .comment[data-comment-depth='0'] { - border-color: #282a36; -} - -body:not(.theme) .is-comment-collapsed header .link-user,body.theme-light .is-comment-collapsed header .link-user,body.theme-dark .is-comment-collapsed header .link-user,body.theme-black .is-comment-collapsed header .link-user { - color: #50fa7b; -} - -body:not(.theme) .label-comment-exemplary,body.theme-light .label-comment-exemplary,body.theme-dark .label-comment-exemplary,body.theme-black .label-comment-exemplary { - color: #282a36; - border-color: #8be9fd; - background-color: #8be9fd; -} - -body:not(.theme) .btn-post,body.theme-light .btn-post,body.theme-dark .btn-post,body.theme-black .btn-post { - padding: 0; -} - -body:not(.theme) .btn-post-action,body.theme-light .btn-post-action,body.theme-dark .btn-post-action,body.theme-black .btn-post-action { - color: #8be9fd; - padding: 6px 8px; - margin: 6px; - margin-bottom: 0px; -} - -body:not(.theme) .btn-post-action:hover,body:not(.theme) .btn-post-action:active,body:not(.theme) .btn-post-action:focus,body.theme-light .btn-post-action:hover,body.theme-light .btn-post-action:active,body.theme-light .btn-post-action:focus,body.theme-dark .btn-post-action:hover,body.theme-dark .btn-post-action:active,body.theme-dark .btn-post-action:focus,body.theme-black .btn-post-action:hover,body.theme-black .btn-post-action:active,body.theme-black .btn-post-action:focus { - color: #ff79c6; - text-decoration: none; -} - -body:not(.theme) .btn-post-action-used,body.theme-light .btn-post-action-used,body.theme-dark .btn-post-action-used,body.theme-black .btn-post-action-used { - color: #ff79c6; - text-decoration: underline; -} - -body:not(.theme) .btn-post-action-used:hover,body:not(.theme) .btn-post-action-used:active,body:not(.theme) .btn-post-action-used:focus,body.theme-light .btn-post-action-used:hover,body.theme-light .btn-post-action-used:active,body.theme-light .btn-post-action-used:focus,body.theme-dark .btn-post-action-used:hover,body.theme-dark .btn-post-action-used:active,body.theme-dark .btn-post-action-used:focus,body.theme-black .btn-post-action-used:hover,body.theme-black .btn-post-action-used:active,body.theme-black .btn-post-action-used:focus { - color: #8be9fd; - text-decoration: underline; -} - -.btn-comment-label-exemplary { - color: #8be9fd; - border-color: #8be9fd; -} - -.btn-comment-label-exemplary:hover { - color: #8be9fd; -} - -.btn-comment-label-exemplary.btn-used:hover { - color: #282a36; - background-color: #8be9fd; -} - -.btn-comment-label-offtopic { - color: #50fa7b; - border-color: #50fa7b; -} - -.btn-comment-label-offtopic:hover { - color: #50fa7b; -} - -.btn-comment-label-offtopic.btn-used:hover { - color: #282a36; - background-color: #50fa7b; -} - -.btn-comment-label-joke { - color: #f1fa8c; - border-color: #f1fa8c; -} - -.btn-comment-label-joke:hover { - color: #f1fa8c; -} - -.btn-comment-label-joke.btn-used:hover { - color: #282a36; - background-color: #f1fa8c; -} - -.btn-comment-label-noise { - color: #ffb86c; - border-color: #ffb86c; -} - -.btn-comment-label-noise:hover { - color: #ffb86c; -} - -.btn-comment-label-noise.btn-used:hover { - color: #282a36; - background-color: #ffb86c; -} - -.btn-comment-label-malice { - color: #f55; - border-color: #f55; -} - -.btn-comment-label-malice:hover { - color: #f55; -} - -.btn-comment-label-malice.btn-used:hover { - color: #282a36; - background-color: #f55; -} - -.btn-comment-label.btn-used { - border: none; -} - -body:not(.theme) #page-list,body.theme-light #page-list,body.theme-dark #page-list,body.theme-black #page-list { - background-color: #44475a; -} - -body:not(.theme) .toc,body.theme-light .toc,body.theme-dark .toc,body.theme-black .toc { - background-color: #282a36; -} - -body:not(.theme) .highlight:not(code),body.theme-light .highlight:not(code),body.theme-dark .highlight:not(code),body.theme-black .highlight:not(code) { - color: #f8f8f2; - background-color: #6272a4; -} - -body:not(.theme) .conspicuous,body.theme-light .conspicuous,body.theme-dark .conspicuous,body.theme-black .conspicuous { - color: #f55; - font-family: sans-serif; -} - -body:not(.theme) .date-info,body.theme-light .date-info,body.theme-dark .date-info,body.theme-black .date-info { - color: #f8f8f2; -} - -body:not(.theme) .article-summary,body.theme-light .article-summary,body.theme-dark .article-summary,body.theme-black .article-summary { - border-color: #f8f8f2; -} - -body:not(.theme) .article-summary h2 a,body.theme-light .article-summary h2 a,body.theme-dark .article-summary h2 a,body.theme-black .article-summary h2 a { - color: #f8f8f2; -} - -body>footer,#site-footer { - color: #f8f8f2; - background-color: #282a36; - padding: 0.5rem; - font-style: normal; - font-weight: bold; -} - -body>footer a,#site-footer a { - color: #8be9fd; -} - -body>footer a:hover,body>footer a:active,body>footer a:focus,#site-footer a:hover,#site-footer a:active,#site-footer a:focus { - color: #ff79c6; -} - -body>footer a:visited,#site-footer a:visited { - color: #8be9fd; -} - -body>footer a:visited:hover,body>footer a:visited:active,body>footer a:visited:focus,#site-footer a:visited:hover,#site-footer a:visited:active,#site-footer a:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .group-list tbody tr:nth-of-type(n),body.theme-light .group-list tbody tr:nth-of-type(n),body.theme-dark .group-list tbody tr:nth-of-type(n),body.Theme-black .group-list tbody tr:nth-of-type(n) { - background-color: #282a36; -} - -body:not(.theme) .group-list tbody tr:nth-of-type(n) td,body.theme-light .group-list tbody tr:nth-of-type(n) td,body.theme-dark .group-list tbody tr:nth-of-type(n) td,body.Theme-black .group-list tbody tr:nth-of-type(n) td { - border-color: #44475a; -} - -body:not(.theme) .group-list .group-list-description,body.theme-light .group-list .group-list-description,body.theme-dark .group-list .group-list-description,body.Theme-black .group-list .group-list-description { - font-style: normal; -} - -body:not(.theme) .table th,body.theme-light .table th,body.theme-dark .table th,body.Theme-black .table th { - border-bottom-color: #6272a4; -} - -body:not(.theme),body.theme-light,body.theme-dark,body.theme-black { - color: #f8f8f2; - background-color: #282a36; -} - -body:not(.theme) a,body.theme-light a,body.theme-dark a,body.theme-black a { - color: #8be9fd; -} - -body:not(.theme) a:hover,body:not(.theme) a:active,body:not(.theme) a:focus,body.theme-light a:hover,body.theme-light a:active,body.theme-light a:focus,body.theme-dark a:hover,body.theme-dark a:active,body.theme-dark a:focus,body.theme-black a:hover,body.theme-black a:active,body.theme-black a:focus { - color: #ff79c6; -} - -body:not(.theme) a:visited,body.theme-light a:visited,body.theme-dark a:visited,body.theme-black a:visited { - color: #ff79c6; -} - -body:not(.theme) hr,body.theme-light hr,body.theme-dark hr,body.theme-black hr { - border-color: #f8f8f2; -} - -body:not(.theme) main,body:not(.theme) #sidebar,body.theme-light main,body.theme-light #sidebar,body.theme-dark main,body.theme-dark #sidebar,body.theme-black main,body.theme-black #sidebar { - color: #f8f8f2; - background-color: #44475a; -} - -body:not(.theme) fieldset,body.theme-light fieldset,body.theme-dark fieldset,body.theme-black fieldset { - border-color: #6272a4; -} - -body:not(.theme) pre,body:not(.theme) code,body.theme-light pre,body.theme-light code,body.theme-dark pre,body.theme-dark code,body.theme-black pre,body.theme-black code { - color: #f8f8f2; - background-color: #282a36; - border: none; - font-family: 'Space Mono', 'Iosevka', 'Fira Code', 'Consolas', monospace; -} - -body:not(.theme) blockquote,body.theme-light blockquote,body.theme-dark blockquote,body.theme-black blockquote { - color: #f8f8f2; - background-color: #282a36; - border-color: #f8f8f2; -} - -body:not(.theme) figure,body:not(.theme) section,body.theme-light figure,body.theme-light section,body.theme-dark figure,body.theme-dark section,body.theme-black figure,body.theme-black section { - border-color: #f8f8f2; -} - -body:not(.theme) input,body:not(.theme) textarea,body:not(.theme) .form-input,body:not(.theme) .form-input:not(:focus),body.theme-light input,body.theme-light textarea,body.theme-light .form-input,body.theme-light .form-input:not(:focus),body.theme-dark input,body.theme-dark textarea,body.theme-dark .form-input,body.theme-dark .form-input:not(:focus),body.theme-black input,body.theme-black textarea,body.theme-black .form-input,body.theme-black .form-input:not(:focus) { - color: #f8f8f2; - border-color: #6272a4; - background-color: #282a36; -} - -body:not(.theme) th,body.theme-light th,body.theme-dark th,body.theme-black th { - border-color: #6272a4; -} - -body:not(.theme) td,body.theme-light td,body.theme-dark td,body.theme-black td { - border-color: #44475a; -} - -body:not(.theme) tbody tr:nth-of-type(n),body.theme-light tbody tr:nth-of-type(n),body.theme-dark tbody tr:nth-of-type(n),body.theme-black tbody tr:nth-of-type(n) { - background-color: #282a36; -} - -body:not(.theme) .listing-options button,body.theme-light .listing-options button,body.theme-black .listing-options button,body.theme-dark .listing-options button { - border: none; -} - -body:not(.theme) .listing-options button:hover,body:not(.theme) .listing-options button:active,body:not(.theme) .listing-options button:focus,body.theme-light .listing-options button:hover,body.theme-light .listing-options button:active,body.theme-light .listing-options button:focus,body.theme-black .listing-options button:hover,body.theme-black .listing-options button:active,body.theme-black .listing-options button:focus,body.theme-dark .listing-options button:hover,body.theme-dark .listing-options button:active,body.theme-dark .listing-options button:focus { - color: #ff79c6; - background-color: transparent; - text-decoration: underline; -} - -body:not(.theme) .tab.tab-listing-order,body.theme-light .tab.tab-listing-order,body.theme-black .tab.tab-listing-order,body.theme-dark .tab.tab-listing-order { - border-color: #282a36; -} - -body:not(.theme) .tab.tab-listing-order .tab-item,body.theme-light .tab.tab-listing-order .tab-item,body.theme-black .tab.tab-listing-order .tab-item,body.theme-dark .tab.tab-listing-order .tab-item { - margin: 4px; - padding: 0; - background-color: #282a36; -} - -body:not(.theme) .tab.tab-listing-order .tab-item:first-child,body.theme-light .tab.tab-listing-order .tab-item:first-child,body.theme-black .tab.tab-listing-order .tab-item:first-child,body.theme-dark .tab.tab-listing-order .tab-item:first-child { - margin-left: 0; -} - -body:not(.theme) .tab.tab-listing-order .tab-item:last-child,body.theme-light .tab.tab-listing-order .tab-item:last-child,body.theme-black .tab.tab-listing-order .tab-item:last-child,body.theme-dark .tab.tab-listing-order .tab-item:last-child { - margin-right: 0; -} - -body:not(.theme) .tab.tab-listing-order .tab-item a,body.theme-light .tab.tab-listing-order .tab-item a,body.theme-black .tab.tab-listing-order .tab-item a,body.theme-dark .tab.tab-listing-order .tab-item a { - color: #8be9fd; - margin: 0; - padding: 4px 8px; -} - -body:not(.theme) .tab.tab-listing-order .tab-item a:hover,body:not(.theme) .tab.tab-listing-order .tab-item a:active,body:not(.theme) .tab.tab-listing-order .tab-item a:focus,body.theme-light .tab.tab-listing-order .tab-item a:hover,body.theme-light .tab.tab-listing-order .tab-item a:active,body.theme-light .tab.tab-listing-order .tab-item a:focus,body.theme-black .tab.tab-listing-order .tab-item a:hover,body.theme-black .tab.tab-listing-order .tab-item a:active,body.theme-black .tab.tab-listing-order .tab-item a:focus,body.theme-dark .tab.tab-listing-order .tab-item a:hover,body.theme-dark .tab.tab-listing-order .tab-item a:active,body.theme-dark .tab.tab-listing-order .tab-item a:focus { - color: #8be9fd; -} - -body:not(.theme) .tab.tab-listing-order .tab-item.active a,body.theme-light .tab.tab-listing-order .tab-item.active a,body.theme-black .tab.tab-listing-order .tab-item.active a,body.theme-dark .tab.tab-listing-order .tab-item.active a { - color: #ff79c6; - border-color: #ff79c6; -} - -body:not(.theme) .form-select:not([multiple]):not([size]),body.theme-light .form-select:not([multiple]):not([size]),body.theme-black .form-select:not([multiple]):not([size]),body.theme-dark .form-select:not([multiple]):not([size]) { - border: 1px solid #6272a4; - background-color: #282a36; - background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%204%205'%3E%3Cpath%20fill='%23f8f8f2'%20d='M2%200L0%202h4zm0%205L0%203h4z'/%3E%3C/svg%3E"); -} - -body:not(.theme) .message-list thead th,body.theme-light .message-list thead th,body.theme-dark .message-list thead th,body.theme-black .message-list thead th { - border-color: #6272a4; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n),body.theme-light .message-list tbody tr:nth-of-type(n),body.theme-dark .message-list tbody tr:nth-of-type(n),body.theme-black .message-list tbody tr:nth-of-type(n) { - background-color: #282a36; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n) td,body.theme-light .message-list tbody tr:nth-of-type(n) td,body.theme-dark .message-list tbody tr:nth-of-type(n) td,body.theme-black .message-list tbody tr:nth-of-type(n) td { - border-color: #44475a; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a { - color: #8be9fd; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:hover,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:active,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:focus { - color: #ff79c6; -} - -body:not(.theme) .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-light .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-dark .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited,body.theme-black .message-list tbody tr:nth-of-type(n) .message-list-subject a:visited { - color: #8be9fd; -} - -body:not(.theme) .message,body.theme-light .message,body.theme-dark .message,body.theme-black .message { - border-color: #282a36; -} - -body:not(.theme) .message header,body.theme-light .message header,body.theme-dark .message header,body.theme-black .message header { - color: #f8f8f2; - background-color: #282a36; -} - -body:not(.theme) .toast,body.theme-light .toast,body.theme-dark .toast,body.theme-black .toast { - color: #f8f8f2; - border-color: #6272a4; - background-color: #282a36; -} - -body:not(.theme) .divider,body.theme-light .divider,body.theme-dark .divider,body.theme-black .divider { - border-color: #282a36; -} - -body:not(.theme) .empty-subtitle,body.theme-light .empty-subtitle,body.theme-dark .empty-subtitle,body.theme-black .empty-subtitle { - color: #f8f8f2; -} - -body:not(.theme) .post-listing .topic,body.theme-light .post-listing .topic,body.theme-dark .post-listing .topic,body.theme-black .post-listing .topic { - background-color: #282a36; -} - -body:not(.theme) .post-listing .label-topic-tag,body.theme-light .post-listing .label-topic-tag,body.theme-dark .post-listing .label-topic-tag,body.theme-black .post-listing .label-topic-tag { - color: #6272a4; -} - -body:not(.theme) .link-user,body.theme-light .link-user,body.theme-dark .link-user,body.theme-black .link-user { - color: #50fa7b; -} - -body:not(.theme) .link-user:hover,body:not(.theme) .link-user:active,body:not(.theme) .link-user:focus,body.theme-light .link-user:hover,body.theme-light .link-user:active,body.theme-light .link-user:focus,body.theme-dark .link-user:hover,body.theme-dark .link-user:active,body.theme-dark .link-user:focus,body.theme-black .link-user:hover,body.theme-black .link-user:active,body.theme-black .link-user:focus { - color: #ff79c6; -} - -body:not(.theme) .link-user:visited,body.theme-light .link-user:visited,body.theme-dark .link-user:visited,body.theme-black .link-user:visited { - color: #50fa7b; -} - -body:not(.theme) .link-user:visited:hover,body:not(.theme) .link-user:visited:active,body:not(.theme) .link-user:visited:focus,body.theme-light .link-user:visited:hover,body.theme-light .link-user:visited:active,body.theme-light .link-user:visited:focus,body.theme-dark .link-user:visited:hover,body.theme-dark .link-user:visited:active,body.theme-dark .link-user:visited:focus,body.theme-black .link-user:visited:hover,body.theme-black .link-user:visited:active,body.theme-black .link-user:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .label-topic-tag a,body.theme-light .label-topic-tag a,body.theme-dark .label-topic-tag a,body.theme-black .label-topic-tag a { - color: #6272a4; -} - -body:not(.theme) .label-topic-tag a:hover,body:not(.theme) .label-topic-tag a:active,body:not(.theme) .label-topic-tag a:focus,body.theme-light .label-topic-tag a:hover,body.theme-light .label-topic-tag a:active,body.theme-light .label-topic-tag a:focus,body.theme-dark .label-topic-tag a:hover,body.theme-dark .label-topic-tag a:active,body.theme-dark .label-topic-tag a:focus,body.theme-black .label-topic-tag a:hover,body.theme-black .label-topic-tag a:active,body.theme-black .label-topic-tag a:focus { - color: #ff79c6; -} - -body:not(.theme) .text-secondary,body.theme-light .text-secondary,body.theme-dark .text-secondary,body.theme-black .text-secondary { - font-style: normal; - font-weight: bold; - color: #6272a4; -} - -body:not(.theme) .text-warning,body.theme-light .text-warning,body.theme-dark .text-warning,body.theme-black .text-warning { - color: #282a36; - background-color: #ffb86c; - padding: 10px; -} - -body:not(.theme) blockquote.text-warning,body.theme-light blockquote.text-warning,body.theme-dark blockquote.text-warning,body.theme-black blockquote.text-warning { - color: #f8f8f2; - background-color: #282a36; -} - -body:not(.theme) .form-status-success,body.theme-light .form-status-success,body.theme-dark .form-status-success,body.theme-black .form-status-success { - color: #50fa7b; -} - -body:not(.theme) .form-status-error,body.theme-light .form-status-error,body.theme-dark .form-status-error,body.theme-black .form-status-error { - color: #f55; -} - -body:not(.theme) .is-comment-new .comment-text,body.theme-light .is-comment-new .comment-text,body.theme-dark .is-comment-new .comment-text,body.theme-black .is-comment-new .comment-text { - color: #f8f8f2; -} - -body:not(.theme) .is-topic-official h1 a:visited,body.theme-light .is-topic-official h1 a:visited,body.theme-dark .is-topic-official h1 a:visited,body.theme-black .is-topic-official h1 a:visited { - color: #f55; -} - -body:not(.theme) .label-topic-tag-spoiler,body.theme-light .label-topic-tag-spoiler,body.theme-dark .label-topic-tag-spoiler,body.theme-black .label-topic-tag-spoiler { - background-color: #f1fa8c; -} - -body:not(.theme) .label-topic-tag-spoiler a,body.theme-light .label-topic-tag-spoiler a,body.theme-dark .label-topic-tag-spoiler a,body.theme-black .label-topic-tag-spoiler a { - color: #282a36; -} - -body:not(.theme) .label-topic-tag-nsfw,body.theme-light .label-topic-tag-nsfw,body.theme-dark .label-topic-tag-nsfw,body.theme-black .label-topic-tag-nsfw { - background-color: #f55; -} - -body:not(.theme) .label-topic-tag-nsfw a,body.theme-light .label-topic-tag-nsfw a,body.theme-dark .label-topic-tag-nsfw a,body.theme-black .label-topic-tag-nsfw a { - color: #282a36; -} - -body:not(.theme) .topic-voting.btn,body.theme-light .topic-voting.btn,body.theme-dark .topic-voting.btn,body.theme-black .topic-voting.btn { - border-style: solid; -} - -body:not(.theme) .btn,body:not(.theme) .btn.btn-link,body.theme-light .btn,body.theme-light .btn.btn-link,body.theme-dark .btn,body.theme-dark .btn.btn-link,body.theme-black .btn,body.theme-black .btn.btn-link { - color: #8be9fd; - border-color: #8be9fd; - background: transparent; -} - -body:not(.theme) .btn:hover,body:not(.theme) .btn:active,body:not(.theme) .btn:focus,body:not(.theme) .btn.btn-link:hover,body:not(.theme) .btn.btn-link:active,body:not(.theme) .btn.btn-link:focus,body.theme-light .btn:hover,body.theme-light .btn:active,body.theme-light .btn:focus,body.theme-light .btn.btn-link:hover,body.theme-light .btn.btn-link:active,body.theme-light .btn.btn-link:focus,body.theme-dark .btn:hover,body.theme-dark .btn:active,body.theme-dark .btn:focus,body.theme-dark .btn.btn-link:hover,body.theme-dark .btn.btn-link:active,body.theme-dark .btn.btn-link:focus,body.theme-black .btn:hover,body.theme-black .btn:active,body.theme-black .btn:focus,body.theme-black .btn.btn-link:hover,body.theme-black .btn.btn-link:active,body.theme-black .btn.btn-link:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .btn:visited,body:not(.theme) .btn.btn-link:visited,body.theme-light .btn:visited,body.theme-light .btn.btn-link:visited,body.theme-dark .btn:visited,body.theme-dark .btn.btn-link:visited,body.theme-black .btn:visited,body.theme-black .btn.btn-link:visited { - color: #8be9fd; - border-color: #8be9fd; - background: transparent; -} - -body:not(.theme) .btn:visited:hover,body:not(.theme) .btn:visited:active,body:not(.theme) .btn:visited:focus,body:not(.theme) .btn.btn-link:visited:hover,body:not(.theme) .btn.btn-link:visited:active,body:not(.theme) .btn.btn-link:visited:focus,body.theme-light .btn:visited:hover,body.theme-light .btn:visited:active,body.theme-light .btn:visited:focus,body.theme-light .btn.btn-link:visited:hover,body.theme-light .btn.btn-link:visited:active,body.theme-light .btn.btn-link:visited:focus,body.theme-dark .btn:visited:hover,body.theme-dark .btn:visited:active,body.theme-dark .btn:visited:focus,body.theme-dark .btn.btn-link:visited:hover,body.theme-dark .btn.btn-link:visited:active,body.theme-dark .btn.btn-link:visited:focus,body.theme-black .btn:visited:hover,body.theme-black .btn:visited:active,body.theme-black .btn:visited:focus,body.theme-black .btn.btn-link:visited:hover,body.theme-black .btn.btn-link:visited:active,body.theme-black .btn.btn-link:visited:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .btn-used,body:not(.theme) .topic-voting.btn-used,body.theme-light .btn-used,body.theme-light .topic-voting.btn-used,body.theme-dark .btn-used,body.theme-dark .topic-voting.btn-used,body.theme-black .btn-used,body.theme-black .topic-voting.btn-used { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .btn-used:hover,body:not(.theme) .btn-used:active,body:not(.theme) .btn-used:focus,body:not(.theme) .topic-voting.btn-used:hover,body:not(.theme) .topic-voting.btn-used:active,body:not(.theme) .topic-voting.btn-used:focus,body.theme-light .btn-used:hover,body.theme-light .btn-used:active,body.theme-light .btn-used:focus,body.theme-light .topic-voting.btn-used:hover,body.theme-light .topic-voting.btn-used:active,body.theme-light .topic-voting.btn-used:focus,body.theme-dark .btn-used:hover,body.theme-dark .btn-used:active,body.theme-dark .btn-used:focus,body.theme-dark .topic-voting.btn-used:hover,body.theme-dark .topic-voting.btn-used:active,body.theme-dark .topic-voting.btn-used:focus,body.theme-black .btn-used:hover,body.theme-black .btn-used:active,body.theme-black .btn-used:focus,body.theme-black .topic-voting.btn-used:hover,body.theme-black .topic-voting.btn-used:active,body.theme-black .topic-voting.btn-used:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -body:not(.theme) .btn.btn-primary,body.theme-light .btn.btn-primary,body.theme-dark .btn.btn-primary,body.theme-black .btn.btn-primary { - color: #282a36; - background: #8be9fd; - border-color: #8be9fd; -} - -body:not(.theme) .btn.btn-primary:hover,body:not(.theme) .btn.btn-primary:active,body:not(.theme) .btn.btn-primary:focus,body.theme-light .btn.btn-primary:hover,body.theme-light .btn.btn-primary:active,body.theme-light .btn.btn-primary:focus,body.theme-dark .btn.btn-primary:hover,body.theme-dark .btn.btn-primary:active,body.theme-dark .btn.btn-primary:focus,body.theme-black .btn.btn-primary:hover,body.theme-black .btn.btn-primary:active,body.theme-black .btn.btn-primary:focus { - color: #282a36; - border-color: #ff79c6; - background: #ff79c6; -} - -.is-topic-official { - border-left-color: #f55 !important; -} - -.is-topic-official h1 a { - color: #f55; -} - -.is-topic-mine { - border-left-color: #bd93f9 !important; -} - -.is-topic-mine h1 a { - color: #bd93f9; -} - -.is-topic-mine .topic-voting { - color: #f8f8f2; -} - -.is-topic-mine h1 a:visited { - color: #bd93f9; -} - -.topic-icon { - border-color: #8be9fd; -} - -.is-comment-by-op>.comment-itself { - border-color: #f1fa8c !important; -} - -.is-comment-mine>.comment-itself { - border-color: #bd93f9 !important; -} - -.is-comment-exemplary>.comment-itself { - border-color: #8be9fd !important; -} - -.is-comment-new>.comment-itself { - border-color: #ffb86c !important; -} - -.is-message-mine { - border-left-color: #bd93f9 !important; -} - -body:not(.theme) .settings-list,body.theme-light .settings-list,body.theme-dark .settings-list,body.theme-black .settings-list { - margin-left: 0px; -} - -body:not(.theme) .settings-list li,body.theme-light .settings-list li,body.theme-dark .settings-list li,body.theme-black .settings-list li { - background-color: #282a36; - border: 1px solid #6272a4; - padding: 15px; - margin-top: 15px; - margin-bottom: 15px; -} - -body:not(.theme) .settings-list a,body.theme-light .settings-list a,body.theme-dark .settings-list a,body.theme-black .settings-list a { - color: #8be9fd; -} - -body:not(.theme) .settings-list a:hover,body:not(.theme) .settings-list a:active,body:not(.theme) .settings-list a:focus,body.theme-light .settings-list a:hover,body.theme-light .settings-list a:active,body.theme-light .settings-list a:focus,body.theme-dark .settings-list a:hover,body.theme-dark .settings-list a:active,body.theme-dark .settings-list a:focus,body.theme-black .settings-list a:hover,body.theme-black .settings-list a:active,body.theme-black .settings-list a:focus { - color: #ff79c6; -} - -body:not(.theme) .settings-list a:visited,body.theme-light .settings-list a:visited,body.theme-dark .settings-list a:visited,body.theme-black .settings-list a:visited { - color: #8be9fd; -} - -body:not(.theme) .settings-list a:visited:hover,body:not(.theme) .settings-list a:visited:active,body:not(.theme) .settings-list a:visited:focus,body.theme-light .settings-list a:visited:hover,body.theme-light .settings-list a:visited:active,body.theme-light .settings-list a:visited:focus,body.theme-dark .settings-list a:visited:hover,body.theme-dark .settings-list a:visited:active,body.theme-dark .settings-list a:visited:focus,body.theme-black .settings-list a:visited:hover,body.theme-black .settings-list a:visited:active,body.theme-black .settings-list a:visited:focus { - color: #ff79c6; -} - -#sidebar form[action='/logout']>button:hover,#sidebar form[action='/logout']>button:active,#sidebar form[action='/logout']>button:focus { - border-color: transparent; - background-color: transparent; -} - -#sidebar .nav .nav-item a,#sidebar form[action='/logout']>button { - color: #ffb86c; -} - -#sidebar .nav .nav-item a:hover,#sidebar .nav .nav-item a:active,#sidebar .nav .nav-item a:focus,#sidebar form[action='/logout']>button:hover,#sidebar form[action='/logout']>button:active,#sidebar form[action='/logout']>button:focus { - color: #f1fa8c; -} - -#sidebar .nav .nav-item a:visited,#sidebar form[action='/logout']>button:visited { - color: #ffb86c; -} - -#sidebar .nav .nav-item a:visited:hover,#sidebar .nav .nav-item a:visited:active,#sidebar .nav .nav-item a:visited:focus,#sidebar form[action='/logout']>button:visited:hover,#sidebar form[action='/logout']>button:visited:active,#sidebar form[action='/logout']>button:visited:focus { - color: #f1fa8c; -} - -#sidebar .topic-tags { - margin-bottom: 0.5rem; -} - -#sidebar .label-topic-tag { - color: #6272a4; -} - -#sidebar .label-topic-tag:hover { - color: #f8f8f2; - cursor: default; -} - -body:not(.theme) .site-header-logo,body.theme-light .site-header-logo,body.theme-black .site-header-logo,body.theme-dark .site-header-logo { - color: #f8f8f2; -} - -body:not(.theme) .site-header-context,body.theme-light .site-header-context,body.theme-black .site-header-context,body.theme-dark .site-header-context { - color: #ffb86c; -} - -body:not(.theme) .site-header-context:hover,body:not(.theme) .site-header-context:active,body:not(.theme) .site-header-context:focus,body.theme-light .site-header-context:hover,body.theme-light .site-header-context:active,body.theme-light .site-header-context:focus,body.theme-black .site-header-context:hover,body.theme-black .site-header-context:active,body.theme-black .site-header-context:focus,body.theme-dark .site-header-context:hover,body.theme-dark .site-header-context:active,body.theme-dark .site-header-context:focus { - color: #f1fa8c; -} - -body:not(.theme) .logged-in-user-username,body.theme-light .logged-in-user-username,body.theme-black .logged-in-user-username,body.theme-dark .logged-in-user-username { - color: #50fa7b; -} - -body:not(.theme) .logged-in-user-username:hover,body:not(.theme) .logged-in-user-username:active,body:not(.theme) .logged-in-user-username:focus,body.theme-light .logged-in-user-username:hover,body.theme-light .logged-in-user-username:active,body.theme-light .logged-in-user-username:focus,body.theme-black .logged-in-user-username:hover,body.theme-black .logged-in-user-username:active,body.theme-black .logged-in-user-username:focus,body.theme-dark .logged-in-user-username:hover,body.theme-dark .logged-in-user-username:active,body.theme-dark .logged-in-user-username:focus { - color: #ff79c6; -} - -body:not(.theme) .logged-in-user-alert,body.theme-light .logged-in-user-alert,body.theme-black .logged-in-user-alert,body.theme-dark .logged-in-user-alert { - color: #282a36; - background-color: #ffb86c; - padding: 0.1rem 0.3rem; - margin-top: 0.2rem; - justify-content: left; -} - -body:not(.theme) .logged-in-user-alert:hover,body:not(.theme) .logged-in-user-alert:active,body:not(.theme) .logged-in-user-alert:focus,body.theme-light .logged-in-user-alert:hover,body.theme-light .logged-in-user-alert:active,body.theme-light .logged-in-user-alert:focus,body.theme-black .logged-in-user-alert:hover,body.theme-black .logged-in-user-alert:active,body.theme-black .logged-in-user-alert:focus,body.theme-dark .logged-in-user-alert:hover,body.theme-dark .logged-in-user-alert:active,body.theme-dark .logged-in-user-alert:focus { - background-color: #f1fa8c; -} - -body>header>a:nth-child(1):not(.no-header-logo) { - color: #f8f8f2; - background-size: 32px 32px; - background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAACQCAMAAADQmBKKAAAAHlBMVEUoKjZQ+nticqSL6f29k/nx+oz/VVX/ecb/uGz///+3yBn7AAAAaklEQVR42u3Oxw2AQAADsNDZf2IGyO8kioQ9gQMAAAAAcLelCAkJCQkJCQkJ/Tk0lZS5ZMhZhISEhISEhISEvhbaSoasJWUvKUJCQkJCQkJCQu+GnnSUFCEhISEhISEhoXdDAAAAAAA3uwDrCC2R1NNC7QAAAABJRU5ErkJggg=="); -} - -.user-label { - border-radius: 0 !important; - padding: 3px 5px !important; -} - -.label-edit-box { - color: #f8f8f2 !important; - background-color: #282a36 !important; -} - -.label-edit-box input { - border: 1px solid #6272a4 !important; - background-color: #44475a !important; -} - -.label-light,.label-dark { - color: transparent !important; -} - -.bg-none { - color: #f8f8f2 !important; - border-color: #6272a4 !important; -} - -.bg-red { - color: #282a36 !important; - background-color: #f55 !important; -} - -.bg-orangered { - color: #282a36 !important; - background-color: #ffb86c !important; -} - -.bg-orange { - color: #282a36 !important; - background-color: #f1fa8c !important; -} - -.bg-dodgerblue { - color: #282a36 !important; - background-color: #8be9fd !important; -} - -.bg-forestgreen { - color: #282a36 !important; - background-color: #50fa7b !important; -} - -.bg-slategray { - color: #f8f8f2 !important; - background-color: #44475a !important; -} - -body:not(.theme) .topic-full .topic-full-byline,body.theme-light .topic-full .topic-full-byline,body.theme-dark .topic-full .topic-full-byline,body.theme-black .topic-full .topic-full-byline { - color: #f8f8f2; -} - -body:not(.theme) .topic-full .topic-full-text a,body.theme-light .topic-full .topic-full-text a,body.theme-dark .topic-full .topic-full-text a,body.theme-black .topic-full .topic-full-text a { - color: #8be9fd; -} - -body:not(.theme) .topic-full .topic-full-text a:hover,body:not(.theme) .topic-full .topic-full-text a:active,body:not(.theme) .topic-full .topic-full-text a:focus,body.theme-light .topic-full .topic-full-text a:hover,body.theme-light .topic-full .topic-full-text a:active,body.theme-light .topic-full .topic-full-text a:focus,body.theme-dark .topic-full .topic-full-text a:hover,body.theme-dark .topic-full .topic-full-text a:active,body.theme-dark .topic-full .topic-full-text a:focus,body.theme-black .topic-full .topic-full-text a:hover,body.theme-black .topic-full .topic-full-text a:active,body.theme-black .topic-full .topic-full-text a:focus { - color: #ff79c6; -} - -body:not(.theme) .topic-full .topic-full-text a:visited,body.theme-light .topic-full .topic-full-text a:visited,body.theme-dark .topic-full .topic-full-text a:visited,body.theme-black .topic-full .topic-full-text a:visited { - color: #8be9fd; -} - -body:not(.theme) .topic-full .topic-full-text a:visited:hover,body:not(.theme) .topic-full .topic-full-text a:visited:active,body:not(.theme) .topic-full .topic-full-text a:visited:focus,body.theme-light .topic-full .topic-full-text a:visited:hover,body.theme-light .topic-full .topic-full-text a:visited:active,body.theme-light .topic-full .topic-full-text a:visited:focus,body.theme-dark .topic-full .topic-full-text a:visited:hover,body.theme-dark .topic-full .topic-full-text a:visited:active,body.theme-dark .topic-full .topic-full-text a:visited:focus,body.theme-black .topic-full .topic-full-text a:visited:hover,body.theme-black .topic-full .topic-full-text a:visited:active,body.theme-black .topic-full .topic-full-text a:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .topic-listing>li:nth-of-type(n),body.theme-light .topic-listing>li:nth-of-type(n),body.theme-dark .topic-listing>li:nth-of-type(n),body.theme-black .topic-listing>li:nth-of-type(n) { - background-color: #282a36; -} - -body:not(.theme) .topic-info,body.theme-light .topic-info,body.theme-dark .topic-info,body.theme-black .topic-info { - color: #f8f8f2; - background-color: #282a36; -} - -body:not(.theme) .time-responsive-full,body.theme-light .time-responsive-full,body.theme-dark .time-responsive-full,body.theme-black .time-responsive-full { - color: #f8f8f2; -} - -body:not(.theme) .topic-content-metadata,body.theme-light .topic-content-metadata,body.theme-dark .topic-content-metadata,body.theme-black .topic-content-metadata { - color: #f8f8f2; -} - -body:not(.theme) .topic-text-excerpt,body.theme-light .topic-text-excerpt,body.theme-dark .topic-text-excerpt,body.theme-black .topic-text-excerpt { - color: #6272a4; -} - -body:not(.theme) .topic-text-excerpt[open],body.theme-light .topic-text-excerpt[open],body.theme-dark .topic-text-excerpt[open],body.theme-black .topic-text-excerpt[open] { - color: #f8f8f2; -} - -body:not(.theme) .topic-text-excerpt summary,body:not(.theme) .topic-text-excerpt summary::after,body.theme-light .topic-text-excerpt summary,body.theme-light .topic-text-excerpt summary::after,body.theme-dark .topic-text-excerpt summary,body.theme-dark .topic-text-excerpt summary::after,body.theme-black .topic-text-excerpt summary,body.theme-black .topic-text-excerpt summary::after { - color: #6272a4; -} - -body:not(.theme) .link-group,body.theme-light .link-group,body.theme-dark .link-group,body.theme-black .link-group { - color: #ffb86c; -} - -body:not(.theme) .link-group:hover,body:not(.theme) .link-group:active,body:not(.theme) .link-group:focus,body.theme-light .link-group:hover,body.theme-light .link-group:active,body.theme-light .link-group:focus,body.theme-dark .link-group:hover,body.theme-dark .link-group:active,body.theme-dark .link-group:focus,body.theme-black .link-group:hover,body.theme-black .link-group:active,body.theme-black .link-group:focus { - color: #f1fa8c; -} - -body:not(.theme) .topic-info-comments a .topic-info-comments-new,body.theme-light .topic-info-comments a .topic-info-comments-new,body.theme-dark .topic-info-comments a .topic-info-comments-new,body.theme-black .topic-info-comments a .topic-info-comments-new { - color: #ffb86c; -} - -body:not(.theme) .topic-info-comments a:hover,body:not(.theme) .topic-info-comments a:active,body:not(.theme) .topic-info-comments a:focus,body.theme-light .topic-info-comments a:hover,body.theme-light .topic-info-comments a:active,body.theme-light .topic-info-comments a:focus,body.theme-dark .topic-info-comments a:hover,body.theme-dark .topic-info-comments a:active,body.theme-dark .topic-info-comments a:focus,body.theme-black .topic-info-comments a:hover,body.theme-black .topic-info-comments a:active,body.theme-black .topic-info-comments a:focus { - color: #ff79c6; -} - -body:not(.theme) .topic-info-comments a:hover .topic-info-comments-new,body:not(.theme) .topic-info-comments a:active .topic-info-comments-new,body:not(.theme) .topic-info-comments a:focus .topic-info-comments-new,body.theme-light .topic-info-comments a:hover .topic-info-comments-new,body.theme-light .topic-info-comments a:active .topic-info-comments-new,body.theme-light .topic-info-comments a:focus .topic-info-comments-new,body.theme-dark .topic-info-comments a:hover .topic-info-comments-new,body.theme-dark .topic-info-comments a:active .topic-info-comments-new,body.theme-dark .topic-info-comments a:focus .topic-info-comments-new,body.theme-black .topic-info-comments a:hover .topic-info-comments-new,body.theme-black .topic-info-comments a:active .topic-info-comments-new,body.theme-black .topic-info-comments a:focus .topic-info-comments-new { - color: #f1fa8c; -} - -body:not(.theme) .topic-info-comments a:visited,body.theme-light .topic-info-comments a:visited,body.theme-dark .topic-info-comments a:visited,body.theme-black .topic-info-comments a:visited { - color: #8be9fd; -} - -body:not(.theme) .topic-info-comments a:visited:hover,body:not(.theme) .topic-info-comments a:visited:active,body:not(.theme) .topic-info-comments a:visited:focus,body.theme-light .topic-info-comments a:visited:hover,body.theme-light .topic-info-comments a:visited:active,body.theme-light .topic-info-comments a:visited:focus,body.theme-dark .topic-info-comments a:visited:hover,body.theme-dark .topic-info-comments a:visited:active,body.theme-dark .topic-info-comments a:visited:focus,body.theme-black .topic-info-comments a:visited:hover,body.theme-black .topic-info-comments a:visited:active,body.theme-black .topic-info-comments a:visited:focus { - color: #ff79c6; -} - -body:not(.theme) .topic-info-comments a:visited:hover .topic-info-comments-new,body:not(.theme) .topic-info-comments a:visited:active .topic-info-comments-new,body:not(.theme) .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-light .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-dark .topic-info-comments a:visited:focus .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:hover .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:active .topic-info-comments-new,body.theme-black .topic-info-comments a:visited:focus .topic-info-comments-new { - color: #f1fa8c; -} -} \ No newline at end of file diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 364f3d9..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,113 +0,0 @@ -const beautify = require('gulp-cssbeautify'); -const gulp = require('gulp'); -const eslint = require('gulp-eslint'); -const fs = require('fs'); -const stylelint = require('gulp-stylelint'); -const sass = require('gulp-sass'); - -gulp.task('lint:js', () => { - return gulp.src(['**/*.js','!node_modules/**']) - .pipe(eslint()) - .pipe(eslint.format()); -}); - -gulp.task('lint:sass', () => { - const options = { - reporters: [{formatter: 'string', console: true}], - }; - return gulp.src('sass/**/*.s*') - .pipe(stylelint(options)); -}); - -gulp.task('build:dev', () => { - const options = { - outputStyle: 'compressed', - }; - const bOptions = { - indent: ' ', - autosemicolon: true, - }; - return gulp.src('sass/**/*.s*') - .pipe(sass(options).on('error', sass.logError)) - .pipe(beautify(bOptions)) - .pipe(gulp.dest('temp')); -}); - -gulp.task('build:prod', () => { - const options = { - outputStyle: 'compressed', - }; - const bOptions = { - indent: ' ', - autosemicolon: true, - }; - return gulp.src('sass/**/*.s*') - .pipe(sass(options).on('error', sass.logError)) - .pipe(beautify(bOptions)) - .pipe(gulp.dest('css')); -}); - -gulp.task('generate', ['lint:js', 'lint:sass', 'build:dev', 'build:prod'], () => { - // Generates all *.user.css styles. - const { bump } = require('./bump.js'); - const klawSync = require('klaw-sync'); - const path = require('path'); - const userCss = require('usercss-creator'); - - // Define constants - const stylesDirectory = path.join(__dirname, 'sass'); - const cssDirectory = path.join(__dirname, 'temp'); - - // Walk recursively through styles directory - let files = klawSync(stylesDirectory, {nodir: true}); - - // Filter out any files that aren't .json files - files = files.filter(file => path.extname(file.path) === '.json'); - - let style; - let incrementType; - - for (const arg of process.argv) { - if (arg.includes('--bump')) { - style = arg.substring('--bump='.length, arg.length); - } - switch (arg) { - case '--major': - incrementType = 'major'; - break; - case '--minor': - incrementType = 'minor'; - break; - case '--patch': - incrementType = 'patch'; - break; - } - } - - // Iterate through all .json files - for (const file of files) { - // Requiring the .json file as the descriptor of the style - const descriptor = require(file.path); - // If --bump=all then bump every style - if (style === 'all') { - bump(file.path, incrementType); - } - // Test if the style we want to bump is the one currently generating - else if (style === descriptor.folder) { - // Bump the style's .json with the increment type - bump(file.path, incrementType); - } - // Create the css path and generate the .user.css file with the options - const cssPath = path.join(cssDirectory, descriptor.folder, descriptor.entry); - const outPath = path.join(__dirname, 'css', descriptor.folder); - let styleFile = `@-moz-document domain('${descriptor.options.namespace}') {\n`; - styleFile += fs.readFileSync(cssPath, {encoding: 'UTF-8'}); - styleFile += '}'; - fs.writeFileSync(cssPath, styleFile, {encoding: 'UTF-8'}); - userCss.create(cssPath, descriptor.options, outPath); - } -}); - -gulp.task('watch', () => { - gulp.watch('sass/**/*.s*', ['lint:js', 'lint:sass', 'build:dev']); -}); diff --git a/package.json b/package.json index 558a2ff..9344659 100755 --- a/package.json +++ b/package.json @@ -1,34 +1,34 @@ -{ - "name": "bauke-styles", - "repository": "https://gitlab.com/Bauke/styles", - "version": "1.0.0", - "author": { - "name": "Bauke", - "email": "me@bauke.xyz" - }, - "license": "MIT", - "scripts": { - "watch": "gulp watch", - "generate": "gulp generate", - "build:dev": "gulp build:dev", - "build:prod": "gulp build:prod", - "lint": "yarn lint:js && yarn lint:sass", - "lint:js": "gulp lint:js", - "lint:css": "gulp lint:sass" - }, - "dependencies": { - "klaw-sync": "^4.0.0", - "node-sass": "^4.9.0", - "usercss-creator": "^1.2.0" - }, - "devDependencies": { - "eslint": "^4.19.1", - "gulp": "^3.9.1", - "gulp-cssbeautify": "^1.0.0", - "gulp-eslint": "^4.0.2", - "gulp-sass": "^4.0.1", - "gulp-stylelint": "^7.0.0", - "stylelint": "^9.2.1", - "stylelint-config-recommended": "^2.1.0" - } -} +{ + "name": "bauke-styles", + "repository": "https://gitlab.com/Bauke/styles", + "version": "1.0.0", + "author": "Bauke ", + "main": "build.js", + "license": "MIT", + "private": true, + "workspaces": [ + "scss/*" + ], + "scripts": { + "build": "yarn lint && STYLE_ENV=prod node ./build.js", + "watch": "STYLE_ENV=dev nodemon ./build.js --watch src/ --ext sass,scss", + "lint": "xo && stylelint src/**/*.scss && stylelint src/**/*.sass" + }, + "dependencies": {}, + "devDependencies": { + "fs-extra": "^7.0.1", + "node-sass": "^4.11.0", + "nodemon": "^1.18.10", + "stylelint": "^9.10.1", + "stylelint-config-recommended": "^2.1.0", + "stylelint-scss": "^3.5.4", + "usercss-creator": "^1.2.0", + "xo": "^0.24.0" + }, + "xo": { + "rules": { + "object-curly-spacing": ["error", "always"] + }, + "space": true + } +} diff --git a/sass/tildes-compact/_topic-listings.sass b/src/tildes-compact/_topic-listings.sass similarity index 100% rename from sass/tildes-compact/_topic-listings.sass rename to src/tildes-compact/_topic-listings.sass diff --git a/sass/tildes-compact/tildes-compact.json b/src/tildes-compact/package.json similarity index 77% rename from sass/tildes-compact/tildes-compact.json rename to src/tildes-compact/package.json index 29cf480..31a4a37 100644 --- a/sass/tildes-compact/tildes-compact.json +++ b/src/tildes-compact/package.json @@ -1,14 +1,14 @@ { - "entry": "tildes-compact.css", - "folder": "tildes-compact", - "options": { + "name": "tildes-compact", + "version": "1.0.7", + "usercss": { "name": "Tildes Compact", "namespace": "tildes.net", - "version": "1.0.6", + "version": "1.0.7", "author": "Bauke", "description": "Removes some elements and changes some sizes to make the Tildes.net layout a little more compact.", "homepageURL": "https://gitlab.com/Bauke/styles", "supportURL": "https://gitlab.com/Bauke/styles/issues", "license": "MIT" } -} \ No newline at end of file +} diff --git a/sass/tildes-compact/tildes-compact.sass b/src/tildes-compact/tildes-compact.sass similarity index 100% rename from sass/tildes-compact/tildes-compact.sass rename to src/tildes-compact/tildes-compact.sass diff --git a/sass/tildes-dracula/_code-syntax.sass b/src/tildes-dracula/_code-syntax.sass similarity index 100% rename from sass/tildes-dracula/_code-syntax.sass rename to src/tildes-dracula/_code-syntax.sass diff --git a/sass/tildes-dracula/_colors.sass b/src/tildes-dracula/_colors.sass similarity index 100% rename from sass/tildes-dracula/_colors.sass rename to src/tildes-dracula/_colors.sass diff --git a/sass/tildes-dracula/_comments.sass b/src/tildes-dracula/_comments.sass similarity index 100% rename from sass/tildes-dracula/_comments.sass rename to src/tildes-dracula/_comments.sass diff --git a/sass/tildes-dracula/_docs.sass b/src/tildes-dracula/_docs.sass similarity index 100% rename from sass/tildes-dracula/_docs.sass rename to src/tildes-dracula/_docs.sass diff --git a/sass/tildes-dracula/_footer.sass b/src/tildes-dracula/_footer.sass similarity index 100% rename from sass/tildes-dracula/_footer.sass rename to src/tildes-dracula/_footer.sass diff --git a/sass/tildes-dracula/_groups.sass b/src/tildes-dracula/_groups.sass similarity index 100% rename from sass/tildes-dracula/_groups.sass rename to src/tildes-dracula/_groups.sass diff --git a/sass/tildes-dracula/_html-tags.sass b/src/tildes-dracula/_html-tags.sass similarity index 100% rename from sass/tildes-dracula/_html-tags.sass rename to src/tildes-dracula/_html-tags.sass diff --git a/sass/tildes-dracula/_listing-options.sass b/src/tildes-dracula/_listing-options.sass similarity index 100% rename from sass/tildes-dracula/_listing-options.sass rename to src/tildes-dracula/_listing-options.sass diff --git a/sass/tildes-dracula/_messages.sass b/src/tildes-dracula/_messages.sass similarity index 100% rename from sass/tildes-dracula/_messages.sass rename to src/tildes-dracula/_messages.sass diff --git a/sass/tildes-dracula/_misc.sass b/src/tildes-dracula/_misc.sass similarity index 100% rename from sass/tildes-dracula/_misc.sass rename to src/tildes-dracula/_misc.sass diff --git a/sass/tildes-dracula/_settings.sass b/src/tildes-dracula/_settings.sass similarity index 100% rename from sass/tildes-dracula/_settings.sass rename to src/tildes-dracula/_settings.sass diff --git a/sass/tildes-dracula/_sidebar.sass b/src/tildes-dracula/_sidebar.sass similarity index 100% rename from sass/tildes-dracula/_sidebar.sass rename to src/tildes-dracula/_sidebar.sass diff --git a/sass/tildes-dracula/_site-header.sass b/src/tildes-dracula/_site-header.sass similarity index 100% rename from sass/tildes-dracula/_site-header.sass rename to src/tildes-dracula/_site-header.sass diff --git a/sass/tildes-dracula/_tildes-extended.sass b/src/tildes-dracula/_tildes-extended.sass similarity index 100% rename from sass/tildes-dracula/_tildes-extended.sass rename to src/tildes-dracula/_tildes-extended.sass diff --git a/sass/tildes-dracula/_topic-full.sass b/src/tildes-dracula/_topic-full.sass similarity index 100% rename from sass/tildes-dracula/_topic-full.sass rename to src/tildes-dracula/_topic-full.sass diff --git a/sass/tildes-dracula/_topic-listing.sass b/src/tildes-dracula/_topic-listing.sass similarity index 100% rename from sass/tildes-dracula/_topic-listing.sass rename to src/tildes-dracula/_topic-listing.sass diff --git a/sass/tildes-dracula/tildes-dracula.json b/src/tildes-dracula/package.json similarity index 72% rename from sass/tildes-dracula/tildes-dracula.json rename to src/tildes-dracula/package.json index 3c346a0..f8fb21d 100644 --- a/sass/tildes-dracula/tildes-dracula.json +++ b/src/tildes-dracula/package.json @@ -1,14 +1,14 @@ { - "entry": "tildes-dracula.css", - "folder": "tildes-dracula", - "options": { + "name": "tildes-dracula", + "version": "2.1.5", + "usercss": { "name": "Tildes Dracula", "namespace": "tildes.net", - "version": "2.1.4", + "version": "2.1.5", "author": "Bauke", "description": "Dracula theme for Tildes.net", "homepageURL": "https://gitlab.com/Bauke/styles", "supportURL": "https://gitlab.com/Bauke/styles/issues", "license": "MIT" } -} \ No newline at end of file +} diff --git a/sass/tildes-dracula/tildes-dracula.sass b/src/tildes-dracula/tildes-dracula.sass similarity index 100% rename from sass/tildes-dracula/tildes-dracula.sass rename to src/tildes-dracula/tildes-dracula.sass diff --git a/yarn.lock b/yarn.lock index 801a595..0ca31b9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -10,33 +10,33 @@ "@babel/highlight" "^7.0.0" "@babel/core@>=7.1.0": - version "7.2.2" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.2.2.tgz#07adba6dde27bb5ad8d8672f15fde3e08184a687" - integrity sha512-59vB0RWt09cAct5EIe58+NzGP4TFSD3Bz//2/ELy3ZeTeKF6VTD1AXlH8BGGbCX0PuobZBsIzO7IAI9PH67eKw== + version "7.3.4" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.3.4.tgz#921a5a13746c21e32445bf0798680e9d11a6530b" + integrity sha512-jRsuseXBo9pN197KnDwhhaaBzyZr2oIcLHHTt2oDdQrej5Qp57dCCJafWx5ivU8/alEYDpssYqv1MUqcxwQlrA== dependencies: "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.2.2" + "@babel/generator" "^7.3.4" "@babel/helpers" "^7.2.0" - "@babel/parser" "^7.2.2" + "@babel/parser" "^7.3.4" "@babel/template" "^7.2.2" - "@babel/traverse" "^7.2.2" - "@babel/types" "^7.2.2" + "@babel/traverse" "^7.3.4" + "@babel/types" "^7.3.4" convert-source-map "^1.1.0" debug "^4.1.0" json5 "^2.1.0" - lodash "^4.17.10" + lodash "^4.17.11" resolve "^1.3.2" semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.2.2": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.0.tgz#f663838cd7b542366de3aa608a657b8ccb2a99eb" - integrity sha512-dZTwMvTgWfhmibq4V9X+LMf6Bgl7zAodRn9PvcPdhlzFMbvUutx74dbEv7Atz3ToeEpevYEJtAwfxq/bDCzHWg== +"@babel/generator@^7.3.4": + version "7.3.4" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.3.4.tgz#9aa48c1989257877a9d971296e5b73bfe72e446e" + integrity sha512-8EXhHRFqlVVWXPezBW5keTiQi/rJMQTg/Y9uVCEZ0CAF3PKtCCaVRnp64Ii1ujhkoDhhF1fVsImoN4yJ2uz4Wg== dependencies: - "@babel/types" "^7.3.0" + "@babel/types" "^7.3.4" jsesc "^2.5.1" - lodash "^4.17.10" + lodash "^4.17.11" source-map "^0.5.0" trim-right "^1.0.1" @@ -81,10 +81,10 @@ esutils "^2.0.2" js-tokens "^4.0.0" -"@babel/parser@^7.2.2", "@babel/parser@^7.2.3": - version "7.3.1" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.1.tgz#8f4ffd45f779e6132780835ffa7a215fa0b2d181" - integrity sha512-ATz6yX/L8LEnC3dtLQnIx4ydcPxhLcoy9Vl6re00zb2w5lG6itY6Vhnr1KFRPq/FHNsgl/gh2mjNN20f9iJTTA== +"@babel/parser@^7.2.2", "@babel/parser@^7.3.4": + version "7.3.4" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.3.4.tgz#a43357e4bbf4b92a437fb9e465c192848287f27c" + integrity sha512-tXZCqWtlOOP4wgCp6RjRvLmfuhnqTLy9VHwRochJBCP2nDm27JnnuFEnXFASVyQNHk36jD1tAammsCEEqgscIQ== "@babel/template@^7.1.0", "@babel/template@^7.1.2", "@babel/template@^7.2.2": version "7.2.2" @@ -95,28 +95,28 @@ "@babel/parser" "^7.2.2" "@babel/types" "^7.2.2" -"@babel/traverse@^7.1.5", "@babel/traverse@^7.2.2": - version "7.2.3" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.2.3.tgz#7ff50cefa9c7c0bd2d81231fdac122f3957748d8" - integrity sha512-Z31oUD/fJvEWVR0lNZtfgvVt512ForCTNKYcJBGbPb1QZfve4WGH8Wsy7+Mev33/45fhP/hwQtvgusNdcCMgSw== +"@babel/traverse@^7.1.5", "@babel/traverse@^7.3.4": + version "7.3.4" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.3.4.tgz#1330aab72234f8dea091b08c4f8b9d05c7119e06" + integrity sha512-TvTHKp6471OYEcE/91uWmhR6PrrYywQntCHSaZ8CM8Vmp+pjAusal4nGB2WCCQd0rvI7nOMKn9GnbcvTUz3/ZQ== dependencies: "@babel/code-frame" "^7.0.0" - "@babel/generator" "^7.2.2" + "@babel/generator" "^7.3.4" "@babel/helper-function-name" "^7.1.0" "@babel/helper-split-export-declaration" "^7.0.0" - "@babel/parser" "^7.2.3" - "@babel/types" "^7.2.2" + "@babel/parser" "^7.3.4" + "@babel/types" "^7.3.4" debug "^4.1.0" globals "^11.1.0" - lodash "^4.17.10" + lodash "^4.17.11" -"@babel/types@^7.0.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0": - version "7.3.0" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.0.tgz#61dc0b336a93badc02bf5f69c4cd8e1353f2ffc0" - integrity sha512-QkFPw68QqWU1/RVPyBe8SO7lXbPfjtqAxRYQKpFpaB8yMq7X2qAqfwK5LKoQufEkSmO5NQ70O6Kc3Afk03RwXw== +"@babel/types@^7.0.0", "@babel/types@^7.2.2", "@babel/types@^7.3.0", "@babel/types@^7.3.4": + version "7.3.4" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.3.4.tgz#bf482eaeaffb367a28abbf9357a94963235d90ed" + integrity sha512-WEkp8MsLftM7O/ty580wAmZzN1nDmCACc5+jFzUt+GUFNNIi3LdRlueYz0YIlmJhlZx1QYDMZL5vdWCL0fNjFQ== dependencies: esutils "^2.0.2" - lodash "^4.17.10" + lodash "^4.17.11" to-fast-properties "^2.0.0" "@mrmlnc/readdir-enhanced@^2.2.1": @@ -132,15 +132,34 @@ resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b" integrity sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw== +"@types/events@*": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7" + integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g== + +"@types/glob@^7.1.1": + version "7.1.1" + resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575" + integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w== + dependencies: + "@types/events" "*" + "@types/minimatch" "*" + "@types/node" "*" + +"@types/minimatch@*": + version "3.0.3" + resolved "https://registry.yarnpkg.com/@types/minimatch/-/minimatch-3.0.3.tgz#3dca0e3f33b200fc7d1139c0cd96c1268cadfd9d" + integrity sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA== + "@types/node@*": - version "10.12.19" - resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.19.tgz#ca1018c26be01f07e66ac7fefbeb6407e4490c61" - integrity sha512-2NVovndCjJQj6fUUn9jCgpP4WSqr+u1SoUZMZyJkhGeBFsm6dE46l31S7lPUYt9uQ28XI+ibrJA1f5XyH5HNtA== + version "11.10.5" + resolved "https://registry.yarnpkg.com/@types/node/-/node-11.10.5.tgz#fbaca34086bdc118011e1f05c47688d432f2d571" + integrity sha512-DuIRlQbX4K+d5I+GMnv+UfnGh+ist0RdlvOp+JZ7ePJ6KQONCFQv/gKYSU1ZzbVdFSUCKZOltjmpFAGGv5MdYA== "@types/unist@*", "@types/unist@^2.0.0": - version "2.0.2" - resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.2.tgz#5dc0a7f76809b7518c0df58689cd16a19bd751c6" - integrity sha512-iHI60IbyfQilNubmxsq4zqSjdynlmc2Q/QvH9kjzg9+CCYVVzq1O6tc7VBzSygIwnmOt07w80IG6HDQvjv3Liw== + version "2.0.3" + resolved "https://registry.yarnpkg.com/@types/unist/-/unist-2.0.3.tgz#9c088679876f374eb5983f150d4787aa6fb32d7e" + integrity sha512-FvUupuM3rlRsRtCN+fDudtmytGO6iHJuuRKS1Ss0pG5z8oX0diNEw94UEL7hgDbpN94rgaK5R7sWm6RrSkZuAQ== "@types/vfile-message@*": version "1.0.1" @@ -164,42 +183,20 @@ abbrev@1: resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8" integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q== -acorn-jsx@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-3.0.1.tgz#afdf9488fb1ecefc8348f6fb22f464e32a58b36b" - integrity sha1-r9+UiPsezvyDSPb7IvRk4ypYs2s= - dependencies: - acorn "^3.0.4" +acorn-jsx@^5.0.0: + version "5.0.1" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e" + integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg== -acorn@^3.0.4: - version "3.3.0" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-3.3.0.tgz#45e37fb39e8da3f25baee3ff5369e2bb5f22017a" - integrity sha1-ReN/s56No/JbruP/U2niu18iAXo= +acorn@^6.0.2, acorn@^6.0.7: + version "6.1.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f" + integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA== -acorn@^5.5.0: - version "5.7.3" - resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279" - integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw== - -ajv-keywords@^2.1.0: - version "2.1.1" - resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-2.1.1.tgz#617997fc5f60576894c435f940d819e135b80762" - integrity sha1-YXmX/F9gV2iUxDX5QNgZ4TW4B2I= - -ajv@^5.2.3, ajv@^5.3.0: - version "5.5.2" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-5.5.2.tgz#73b5eeca3fab653e3d3f9422b341ad42205dc965" - integrity sha1-c7Xuyj+rZT49P5Qis0GtQiBdyWU= - dependencies: - co "^4.6.0" - fast-deep-equal "^1.0.0" - fast-json-stable-stringify "^2.0.0" - json-schema-traverse "^0.3.0" - -ajv@^6.5.5, ajv@^6.6.1: - version "6.7.0" - resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.7.0.tgz#e3ce7bb372d6577bb1839f1dfdfcbf5ad2948d96" - integrity sha512-RZXPviBTtfmtka9n9sy1N5M5b82CbxWIR6HIis4s3WQTXDJamc/0gpCWNGz6EWdWp4DOfjzJfhz/AS9zVPjjWg== +ajv@^6.5.5, ajv@^6.9.1: + version "6.10.0" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1" + integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg== dependencies: fast-deep-equal "^2.0.1" fast-json-stable-stringify "^2.0.0" @@ -211,25 +208,18 @@ amdefine@>=0.0.4: resolved "https://registry.yarnpkg.com/amdefine/-/amdefine-1.0.1.tgz#4a5282ac164729e93619bcfd3ad151f817ce91f5" integrity sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU= -ansi-colors@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-1.1.0.tgz#6374b4dd5d4718ff3ce27a671a3b1cad077132a9" - integrity sha512-SFKX67auSNoVR38N3L+nvsPjOE0bybKTYbkf5tRvushrAPQ9V75huw0ZxBkKVeRU9kqH3d6HA4xTckbwZ4ixmA== +ansi-align@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ansi-align/-/ansi-align-2.0.0.tgz#c36aeccba563b89ceb556f3690f0b1d9e3547f7f" + integrity sha1-w2rsy6VjuJzrVW82kPCx2eNUf38= dependencies: - ansi-wrap "^0.1.0" + string-width "^2.0.0" -ansi-escapes@^3.0.0: +ansi-escapes@^3.1.0, ansi-escapes@^3.2.0: version "3.2.0" resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b" integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ== -ansi-gray@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/ansi-gray/-/ansi-gray-0.1.1.tgz#2962cf54ec9792c48510a3deb524436861ef7251" - integrity sha1-KWLPVOyXksSFEKPetSRDaGHvclE= - dependencies: - ansi-wrap "0.1.0" - ansi-regex@^2.0.0: version "2.1.1" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" @@ -257,21 +247,19 @@ ansi-styles@^3.2.0, ansi-styles@^3.2.1: dependencies: color-convert "^1.9.0" -ansi-wrap@0.1.0, ansi-wrap@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf" - integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768= +anymatch@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb" + integrity sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw== + dependencies: + micromatch "^3.1.4" + normalize-path "^2.1.1" aproba@^1.0.3: version "1.2.0" resolved "https://registry.yarnpkg.com/aproba/-/aproba-1.2.0.tgz#6802e6264efd18c790a1b0d517f0f2627bf2c94a" integrity sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw== -archy@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40" - integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA= - are-we-there-yet@~1.1.2: version "1.1.5" resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz#4b35c2944f062a8bfcda66410760350fe9ddfc21" @@ -307,29 +295,24 @@ array-differ@^1.0.0: resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-1.0.0.tgz#eff52e3758249d33be402b8bb8e564bb2b5d4031" integrity sha1-7/UuN1gknTO+QCuLuOVkuytdQDE= -array-each@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/array-each/-/array-each-1.0.1.tgz#a794af0c05ab1752846ee753a1f211a05ba0c44f" - integrity sha1-p5SvDAWrF1KEbudTofIRoFugxE8= +array-differ@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-differ/-/array-differ-2.1.0.tgz#4b9c1c3f14b906757082925769e8ab904f4801b1" + integrity sha512-KbUpJgx909ZscOc/7CLATBFam7P1Z1QRQInvgT0UztM9Q72aGKCunKASAl7WNW0tnPmPyEMeMhdsfWhfmW037w== array-find-index@^1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1" integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E= -array-slice@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/array-slice/-/array-slice-1.1.0.tgz#e368ea15f89bc7069f7ffb89aec3a6c7d4ac22d4" - integrity sha512-B1qMD3RBP7O8o0H2KbrXDyB0IccejMF15+87Lvlor12ONPRHP6gTjXMNkt/d3ZuOGbAe66hFmaCfECI24Ufp6w== - -array-union@^1.0.2: +array-union@^1.0.1, array-union@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39" integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk= dependencies: array-uniq "^1.0.1" -array-uniq@^1.0.1, array-uniq@^1.0.2: +array-uniq@^1.0.1: version "1.0.3" resolved "https://registry.yarnpkg.com/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6" integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY= @@ -339,16 +322,11 @@ array-unique@^0.3.2: resolved "https://registry.yarnpkg.com/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428" integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg= -arrify@^1.0.1: +arrify@^1.0.0, arrify@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d" integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0= -asap@~2.0.6: - version "2.0.6" - resolved "https://registry.yarnpkg.com/asap/-/asap-2.0.6.tgz#e50347611d7e690943208bbdafebcbc2fb866d46" - integrity sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY= - asn1@~0.2.3: version "0.2.4" resolved "https://registry.yarnpkg.com/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136" @@ -371,6 +349,11 @@ astral-regex@^1.0.0: resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9" integrity sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg== +async-each@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.1.tgz#19d386a1d9edc6e7c1c85d388aedbcc56d33602d" + integrity sha1-GdOGodntxufByF04iu28xW0zYC0= + async-foreach@^0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/async-foreach/-/async-foreach-0.1.3.tgz#36121f845c0578172de419a97dbeb1d16ec34542" @@ -387,12 +370,12 @@ atob@^2.1.1: integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== autoprefixer@^9.0.0: - version "9.4.7" - resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.7.tgz#f997994f9a810eae47b38fa6d8a119772051c4ff" - integrity sha512-qS5wW6aXHkm53Y4z73tFGsUhmZu4aMPV9iHXYlF0c/wxjknXNHuj/1cIQb+6YH692DbJGGWcckAXX+VxKvahMA== + version "9.4.10" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.4.10.tgz#e1be61fc728bacac8f4252ed242711ec0dcc6a7b" + integrity sha512-XR8XZ09tUrrSzgSlys4+hy5r2/z4Jp7Ag3pHm31U4g/CTccYPOVe19AkaJ4ey/vRd1sfj+5TtuD6I0PXtutjvQ== dependencies: - browserslist "^4.4.1" - caniuse-lite "^1.0.30000932" + browserslist "^4.4.2" + caniuse-lite "^1.0.30000940" normalize-range "^0.1.2" num2fraction "^1.2.2" postcss "^7.0.14" @@ -408,15 +391,6 @@ aws4@^1.8.0: resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f" integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ== -babel-code-frame@^6.22.0: - version "6.26.0" - resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" - integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= - dependencies: - chalk "^1.1.3" - esutils "^2.0.2" - js-tokens "^3.0.2" - bail@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/bail/-/bail-1.0.3.tgz#63cfb9ddbac829b02a3128cd53224be78e6c21a3" @@ -447,10 +421,10 @@ bcrypt-pbkdf@^1.0.0: dependencies: tweetnacl "^0.14.3" -beeper@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/beeper/-/beeper-1.1.1.tgz#e6d5ea8c5dad001304a70b22638447f69cb2f809" - integrity sha1-5tXqjF2tABMEpwsiY4RH9pyy+Ak= +binary-extensions@^1.0.0: + version "1.13.0" + resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-1.13.0.tgz#9523e001306a32444b907423f1de2164222f6ab1" + integrity sha512-EgmjVLMn22z7eGGv3kcnHwSnJXmFHjISTY9E/S5lIcTD3Oxw05QTcBLNkJFzcb3cNueUdF/IN4U+d78V0zO8Hw== block-stream@*: version "0.0.9" @@ -459,7 +433,20 @@ block-stream@*: dependencies: inherits "~2.0.0" -brace-expansion@^1.0.0, brace-expansion@^1.1.7: +boxen@^1.2.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/boxen/-/boxen-1.3.0.tgz#55c6c39a8ba58d9c61ad22cd877532deb665a20b" + integrity sha512-TNPjfTr432qx7yOjQyaXm3dSR0MH9vXp7eT1BFSl/C51g+EFnOR9hTg1IreahGBmDNCehscshe45f+C1TBZbLw== + dependencies: + ansi-align "^2.0.0" + camelcase "^4.0.0" + chalk "^2.0.1" + cli-boxes "^1.0.0" + string-width "^2.0.0" + term-size "^1.2.0" + widest-line "^2.0.0" + +brace-expansion@^1.1.7: version "1.1.11" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== @@ -467,7 +454,7 @@ brace-expansion@^1.0.0, brace-expansion@^1.1.7: balanced-match "^1.0.0" concat-map "0.0.1" -braces@^2.3.1: +braces@^2.3.1, braces@^2.3.2: version "2.3.2" resolved "https://registry.yarnpkg.com/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729" integrity sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w== @@ -483,24 +470,19 @@ braces@^2.3.1: split-string "^3.0.2" to-regex "^3.0.1" -browserslist@^4.4.1: - version "4.4.1" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.1.tgz#42e828954b6b29a7a53e352277be429478a69062" - integrity sha512-pEBxEXg7JwaakBXjATYw/D1YZh4QUSCX/Mnd/wnqSRPPSi1U39iDhDoKGoBUcraKdxDlrYqJxSI5nNvD+dWP2A== +browserslist@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.4.2.tgz#6ea8a74d6464bb0bd549105f659b41197d8f0ba2" + integrity sha512-ISS/AIAiHERJ3d45Fz0AVYKkgcy+F/eJHzKEvv1j0wwKGKD9T3BrwKr/5g45L+Y4XIK5PlTqefHciRFcfE1Jxg== dependencies: - caniuse-lite "^1.0.30000929" - electron-to-chromium "^1.3.103" - node-releases "^1.1.3" + caniuse-lite "^1.0.30000939" + electron-to-chromium "^1.3.113" + node-releases "^1.1.8" -buffer-from@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" - integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== - -builtin-modules@^1.0.0: - version "1.1.1" - resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f" - integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8= +buf-compare@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/buf-compare/-/buf-compare-1.0.1.tgz#fef28da8b8113a0a0db4430b0b6467b69730b34a" + integrity sha1-/vKNqLgROgoNtEMLC2Rntpcws0o= cache-base@^1.0.1: version "1.0.1" @@ -529,13 +511,6 @@ caller-callsite@^2.0.0: dependencies: callsites "^2.0.0" -caller-path@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f" - integrity sha1-lAhe9jWB7NPaqSREqP6U6CV3dR8= - dependencies: - callsites "^0.2.0" - caller-path@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4" @@ -543,16 +518,16 @@ caller-path@^2.0.0: dependencies: caller-callsite "^2.0.0" -callsites@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/callsites/-/callsites-0.2.0.tgz#afab96262910a7f33c19a5775825c69f34e350ca" - integrity sha1-r6uWJikQp/M8GaV3WCXGnzTjUMo= - callsites@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50" integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA= +callsites@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.0.0.tgz#fb7eb569b72ad7a45812f93fd9430a3e410b3dd3" + integrity sha512-tWnkwu9YEq2uzlBDI4RcLn8jrFvF9AOi8PxDNU3hZZjJcjkcRAq3vCI+vZcg1SuxISDYe86k9VZFwAxDiJGoAw== + camelcase-keys@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7" @@ -580,15 +555,20 @@ camelcase@^3.0.0: resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-3.0.0.tgz#32fc4b9fcdaf845fcdf7e73bb97cac2261f0ab0a" integrity sha1-MvxLn82vhF/N9+c7uXysImHwqwo= -camelcase@^4.1.0: +camelcase@^4.0.0, camelcase@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-4.1.0.tgz#d545635be1e33c542649c69173e5de6acfae34dd" integrity sha1-1UVjW+HjPFQmScaRc+Xeas+uNN0= -caniuse-lite@^1.0.30000929, caniuse-lite@^1.0.30000932: - version "1.0.30000932" - resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000932.tgz#d01763e9ce77810962ca7391ff827b5949ce4272" - integrity sha512-4bghJFItvzz8m0T3lLZbacmEY9X1Z2AtIzTr7s7byqZIOumASfr4ynDx7rtm0J85nDmx8vsgR6vnaSoeU8Oh0A== +caniuse-lite@^1.0.30000939, caniuse-lite@^1.0.30000940: + version "1.0.30000942" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000942.tgz#454139b28274bce70bfe1d50c30970df7430c6e4" + integrity sha512-wLf+IhZUy2rfz48tc40OH7jHjXjnvDFEYqBHluINs/6MgzoNLPf25zhE4NOVzqxLKndf+hau81sAW0RcGHIaBQ== + +capture-stack-trace@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/capture-stack-trace/-/capture-stack-trace-1.0.1.tgz#a6c0bbe1f38f3aa0b92238ecb6ff42c344d4135d" + integrity sha512-mYQLZnx5Qt1JgB1WEiMCf2647plpGeQ2NMR/5L0HNZzGQo4fuSPnK+wjfPnKZV0aiJDgzmWqqkV/g7JD+DW0qw== caseless@~0.12.0: version "0.12.0" @@ -600,7 +580,7 @@ ccount@^1.0.0: resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.3.tgz#f1cec43f332e2ea5a569fd46f9f5bde4e6102aff" integrity sha512-Jt9tIBkRc9POUof7QA/VwWd+58fKkEEfI+/t1/eOlxKM7ZhrczNzMFefge7Ai+39y1pR/pP6cI19guHy3FSLmw== -chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: +chalk@^1.1.1: version "1.1.3" resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= @@ -611,7 +591,7 @@ chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2: +chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: version "2.4.2" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== @@ -640,15 +620,39 @@ character-reference-invalid@^1.0.0: resolved "https://registry.yarnpkg.com/character-reference-invalid/-/character-reference-invalid-1.1.2.tgz#21e421ad3d84055952dab4a43a04e73cd425d3ed" integrity sha512-7I/xceXfKyUJmSAn/jw8ve/9DyOP7XxufNYLI9Px7CmsKgEUaZLUTax6nZxGQtaoiZCjpu6cHPj20xC/vqRReQ== -chardet@^0.4.0: - version "0.4.2" - resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.4.2.tgz#b5473b33dc97c424e5d98dc87d55d4d8a29c8bf2" - integrity sha1-tUc7M9yXxCTl2Y3IfVXU2KKci/I= +chardet@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e" + integrity sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA== -circular-json@^0.3.1: - version "0.3.3" - resolved "https://registry.yarnpkg.com/circular-json/-/circular-json-0.3.3.tgz#815c99ea84f6809529d2f45791bdf82711352d66" - integrity sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A== +chokidar@^2.1.0: + version "2.1.2" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.2.tgz#9c23ea40b01638439e0513864d362aeacc5ad058" + integrity sha512-IwXUx0FXc5ibYmPC2XeEj5mpXoV66sR+t3jqu2NS2GYwCktt3KF1/Qqjws/NkegajBA4RbZ5+DDwlOiJsxDHEg== + dependencies: + anymatch "^2.0.0" + async-each "^1.0.1" + braces "^2.3.2" + glob-parent "^3.1.0" + inherits "^2.0.3" + is-binary-path "^1.0.0" + is-glob "^4.0.0" + normalize-path "^3.0.0" + path-is-absolute "^1.0.0" + readdirp "^2.2.1" + upath "^1.1.0" + optionalDependencies: + fsevents "^1.2.7" + +chownr@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" + integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== + +ci-info@^1.5.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497" + integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A== class-utils@^0.3.5: version "0.3.6" @@ -660,6 +664,18 @@ class-utils@^0.3.5: isobject "^3.0.0" static-extend "^0.1.1" +clean-regexp@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/clean-regexp/-/clean-regexp-1.0.0.tgz#8df7c7aae51fd36874e8f8d05b9180bc11a3fed7" + integrity sha1-jffHquUf02h06PjQW5GAvBGj/tc= + dependencies: + escape-string-regexp "^1.0.5" + +cli-boxes@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/cli-boxes/-/cli-boxes-1.0.0.tgz#4fa917c3e59c94a004cd61f8ee509da651687143" + integrity sha1-T6kXw+WclKAEzWH47lCdplFocUM= + cli-cursor@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5" @@ -689,26 +705,6 @@ clone-regexp@^1.0.0: is-regexp "^1.0.0" is-supported-regexp-flag "^1.0.0" -clone-stats@^0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/clone-stats/-/clone-stats-0.0.1.tgz#b88f94a82cf38b8791d58046ea4029ad88ca99d1" - integrity sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE= - -clone@^0.2.0: - version "0.2.0" - resolved "https://registry.yarnpkg.com/clone/-/clone-0.2.0.tgz#c6126a90ad4f72dbf5acdb243cc37724fe93fc1f" - integrity sha1-xhJqkK1Pctv1rNskPMN3JP6T/B8= - -clone@^1.0.0, clone@^1.0.2: - version "1.0.4" - resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e" - integrity sha1-2jCcwmPfFZlMaIypAheco8fNfH4= - -co@^4.6.0: - version "4.6.0" - resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" - integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= - code-point-at@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77" @@ -739,11 +735,6 @@ color-name@1.1.3: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= -color-support@^1.1.3: - version "1.1.3" - resolved "https://registry.yarnpkg.com/color-support/-/color-support-1.1.3.tgz#93834379a1cc9a0c61f82f52f0d04322251bd5a2" - integrity sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg== - combined-stream@^1.0.6, combined-stream@~1.0.6: version "1.0.7" resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828" @@ -751,6 +742,11 @@ combined-stream@^1.0.6, combined-stream@~1.0.6: dependencies: delayed-stream "~1.0.0" +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs= + component-emitter@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" @@ -761,21 +757,28 @@ concat-map@0.0.1: resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= -concat-stream@^1.6.0: - version "1.6.2" - resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" - integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== +configstore@^3.0.0: + version "3.1.2" + resolved "https://registry.yarnpkg.com/configstore/-/configstore-3.1.2.tgz#c6f25defaeef26df12dd33414b001fe81a543f8f" + integrity sha512-vtv5HtGjcYUgFrXc6Kx747B83MRRVS5R1VTEQoXvuP+kMI+if6uywV0nDGoiydJRy4yk7h9od5Og0kxx4zUXmw== dependencies: - buffer-from "^1.0.0" - inherits "^2.0.3" - readable-stream "^2.2.2" - typedarray "^0.0.6" + dot-prop "^4.1.0" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + unique-string "^1.0.0" + write-file-atomic "^2.0.0" + xdg-basedir "^3.0.0" console-control-strings@^1.0.0, console-control-strings@~1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= +contains-path@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/contains-path/-/contains-path-0.1.0.tgz#fe8cf184ff6670b6baef01a9d4861a5cbec4120a" + integrity sha1-/ozxhP9mcLa67wGp1IYaXL7EEgo= + convert-source-map@^1.1.0: version "1.6.0" resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" @@ -788,21 +791,42 @@ copy-descriptor@^0.1.0: resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= +core-assert@^0.2.0: + version "0.2.1" + resolved "https://registry.yarnpkg.com/core-assert/-/core-assert-0.2.1.tgz#f85e2cf9bfed28f773cc8b3fa5c5b69bdc02fe3f" + integrity sha1-+F4s+b/tKPdzzIs/pcW2m9wC/j8= + dependencies: + buf-compare "^1.0.0" + is-error "^2.2.0" + +core-js@^2.0.0: + version "2.6.5" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.5.tgz#44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895" + integrity sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A== + core-util-is@1.0.2, core-util-is@~1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= cosmiconfig@^5.0.0: - version "5.0.7" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.0.7.tgz#39826b292ee0d78eda137dfa3173bd1c21a43b04" - integrity sha512-PcLqxTKiDmNT6pSpy4N6KtuPwb53W+2tzNvwOZw0WH9N6O0vLIBq0x8aj8Oj75ere4YcGi48bDFCL+3fRJdlNA== + version "5.1.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.1.0.tgz#6c5c35e97f37f985061cdf653f114784231185cf" + integrity sha512-kCNPvthka8gvLtzAxQXvWo4FxqRB+ftRZyPZNuab5ngvM9Y7yw7hbEysglptLgpkGX9nAOKTBVkHUAe8xtYR6Q== dependencies: import-fresh "^2.0.0" is-directory "^0.3.1" js-yaml "^3.9.0" + lodash.get "^4.4.2" parse-json "^4.0.0" +create-error-class@^3.0.0: + version "3.0.2" + resolved "https://registry.yarnpkg.com/create-error-class/-/create-error-class-3.0.2.tgz#06be7abef947a3f14a30fd610671d401bca8b7b6" + integrity sha1-Br56vvlHo/FKMP1hBnHUAbyot7Y= + dependencies: + capture-stack-trace "^1.0.0" + cross-spawn@^3.0.0: version "3.0.1" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-3.0.1.tgz#1256037ecb9f0c5f79e3d6ef135e30770184b982" @@ -811,7 +835,7 @@ cross-spawn@^3.0.0: lru-cache "^4.0.1" which "^1.2.9" -cross-spawn@^5.1.0: +cross-spawn@^5.0.1: version "5.1.0" resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449" integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk= @@ -820,10 +844,26 @@ cross-spawn@^5.1.0: shebang-command "^1.2.0" which "^1.2.9" -cssbeautify@^0.3.1: - version "0.3.1" - resolved "https://registry.yarnpkg.com/cssbeautify/-/cssbeautify-0.3.1.tgz#12dd1f734035c2e6faca67dcbdcef74e42811397" - integrity sha1-Et0fc0A1wub6ymfcvc73TkKBE5c= +cross-spawn@^6.0.5: + version "6.0.5" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4" + integrity sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ== + dependencies: + nice-try "^1.0.4" + path-key "^2.0.1" + semver "^5.5.0" + shebang-command "^1.2.0" + which "^1.2.9" + +crypto-random-string@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e" + integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4= + +cssesc@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" + integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== currently-unhandled@^0.4.1: version "0.4.1" @@ -839,12 +879,7 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -dateformat@^2.0.0: - version "2.2.0" - resolved "https://registry.yarnpkg.com/dateformat/-/dateformat-2.2.0.tgz#4065e2013cf9fb916ddfd82efb506ad4c6769062" - integrity sha1-QGXiATz5+5Ft39gu+1Bq1MZ2kGI= - -debug@^2.2.0, debug@^2.3.3: +debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== @@ -858,7 +893,7 @@ debug@^3.1.0: dependencies: ms "^2.1.1" -debug@^4.0.0, debug@^4.1.0: +debug@^4.0.0, debug@^4.0.1, debug@^4.1.0: version "4.1.1" resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== @@ -883,22 +918,22 @@ decode-uri-component@^0.2.0: resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= -deep-extend@^0.5.0: - version "0.5.1" - resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.5.1.tgz#b894a9dd90d3023fbf1c55a394fb858eb2066f1f" - integrity sha512-N8vBdOa+DF7zkRrDCsaOXoCs/E2fJfx9B9MrKnnSiHNh4ws7eSys6YQE4KvT1cecKmOASYQBhbKjeuDD9lT81w== +deep-extend@^0.6.0: + version "0.6.0" + resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac" + integrity sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA== deep-is@~0.1.3: version "0.1.3" resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= -defaults@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/defaults/-/defaults-1.0.3.tgz#c656051e9817d9ff08ed881477f3fe4019f3ef7d" - integrity sha1-xlYFHpgX2f8I7YgUd/P+QBnz730= +deep-strict-equal@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/deep-strict-equal/-/deep-strict-equal-0.2.0.tgz#4a078147a8ab57f6a0d4f5547243cd22f44eb4e4" + integrity sha1-SgeBR6irV/ag1PVUckPNIvROtOQ= dependencies: - clone "^1.0.2" + core-assert "^0.2.0" define-property@^0.2.5: version "0.2.5" @@ -932,15 +967,15 @@ delegates@^1.0.0: resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" integrity sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o= -deprecated@^0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/deprecated/-/deprecated-0.0.1.tgz#f9c9af5464afa1e7a971458a8bdef2aa94d5bb19" - integrity sha1-+cmvVGSvoeepcUWKi97yqpTVuxk= +detect-indent@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" + integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= -detect-file@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/detect-file/-/detect-file-1.0.0.tgz#f0d66d03672a825cb1b73bdb3fe62310c8e552b7" - integrity sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc= +detect-libc@^1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" + integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= dir-glob@^2.2.1: version "2.2.2" @@ -949,31 +984,34 @@ dir-glob@^2.2.1: dependencies: path-type "^3.0.0" -doctrine@^2.1.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" - integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== +doctrine@1.5.0: + version "1.5.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-1.5.0.tgz#379dce730f6166f76cefa4e6707a159b02c5a6fa" + integrity sha1-N53Ocw9hZvds76TmcHoVmwLFpvo= + dependencies: + esutils "^2.0.2" + isarray "^1.0.0" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== dependencies: esutils "^2.0.2" dom-serializer@0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.0.tgz#073c697546ce0780ce23be4a28e293e40bc30c82" - integrity sha1-BzxpdUbOB4DOI75KKOKT5AvDDII= + version "0.1.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" + integrity sha512-l0IU0pPzLWSHBcieZbpOKgkIn3ts3vAh7ZuFyXNwJxJXk/c4Gwj9xaTJwIDVQCXawWD0qb3IzMGH5rglQaO0XA== dependencies: - domelementtype "~1.1.1" - entities "~1.1.1" + domelementtype "^1.3.0" + entities "^1.1.1" -domelementtype@1, domelementtype@^1.3.0: +domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f" integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w== -domelementtype@~1.1.1: - version "1.1.3" - resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.1.3.tgz#bd28773e2642881aec51544924299c5cd822185b" - integrity sha1-vSh3PiZCiBrsUVRJJCmcXNgiGFs= - domhandler@^2.3.0: version "2.4.2" resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803" @@ -989,19 +1027,17 @@ domutils@^1.5.1: dom-serializer "0" domelementtype "1" -dot-prop@^4.1.1: +dot-prop@^4.1.0, dot-prop@^4.1.1: version "4.2.0" resolved "https://registry.yarnpkg.com/dot-prop/-/dot-prop-4.2.0.tgz#1f19e0c2e1aa0e32797c49799f2837ac6af69c57" integrity sha512-tUMXrxlExSW6U2EXiiKGSBVdYgtV8qlHL+C10TsW4PURY/ic+eaysnSkwB4kA/mBlCyy/IKDJ+Lc3wbWeaXtuQ== dependencies: is-obj "^1.0.0" -duplexer2@0.0.2: - version "0.0.2" - resolved "https://registry.yarnpkg.com/duplexer2/-/duplexer2-0.0.2.tgz#c614dcf67e2fb14995a91711e5a617e8a60a31db" - integrity sha1-xhTc9n4vsUmVqRcR5aYX6KYKMds= - dependencies: - readable-stream "~1.1.9" +duplexer3@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2" + integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI= ecc-jsbn@~0.1.1: version "0.1.2" @@ -1011,28 +1047,33 @@ ecc-jsbn@~0.1.1: jsbn "~0.1.0" safer-buffer "^2.1.0" -electron-to-chromium@^1.3.103: - version "1.3.109" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.109.tgz#ee04a55a5157a5580a5ea88e526b02c84a3a7bc8" - integrity sha512-1qhgVZD9KIULMyeBkbjU/dWmm30zpPUfdWZfVO3nPhbtqMHJqHr4Ua5wBcWtAymVFrUCuAJxjMF1OhG+bR21Ow== +electron-to-chromium@^1.3.113: + version "1.3.113" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.113.tgz#b1ccf619df7295aea17bc6951dc689632629e4a9" + integrity sha512-De+lPAxEcpxvqPTyZAXELNpRZXABRxf+uL/rSykstQhzj/B0l1150G/ExIIxKc16lI89Hgz81J0BHAcbTqK49g== emoji-regex@^7.0.1: version "7.0.3" resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-7.0.3.tgz#933a04052860c85e83c122479c4748a8e4c72156" integrity sha512-CwBLREIQ7LvYFB0WyRvwhq5N5qPhc6PMjD6bYggFlI5YyDgl+0vxq5VHbMOFqLg7hfWzmu8T5Z1QofhmTIhItA== -end-of-stream@~0.1.5: - version "0.1.5" - resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-0.1.5.tgz#8e177206c3c80837d85632e8b9359dfe8b2f6eaf" - integrity sha1-jhdyBsPICDfYVjLouTWd/osvbq8= +enhance-visitors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/enhance-visitors/-/enhance-visitors-1.0.0.tgz#aa945d05da465672a1ebd38fee2ed3da8518e95a" + integrity sha1-qpRdBdpGVnKh69OP7i7T2oUY6Vo= dependencies: - once "~1.3.0" + lodash "^4.13.1" -entities@^1.1.1, entities@~1.1.1: +entities@^1.1.1: version "1.1.2" resolved "https://registry.yarnpkg.com/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56" integrity sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w== +env-editor@^0.3.1: + version "0.3.1" + resolved "https://registry.yarnpkg.com/env-editor/-/env-editor-0.3.1.tgz#30d0540c2101414f258a94d4c0a524c06c13e3c6" + integrity sha1-MNBUDCEBQU8lipTUwKUkwGwT48Y= + error-ex@^1.2.0, error-ex@^1.3.1: version "1.3.2" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" @@ -1045,77 +1086,252 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= -eslint-scope@^3.7.1: - version "3.7.3" - resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.3.tgz#bb507200d3d17f60247636160b4826284b108535" - integrity sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA== +eslint-ast-utils@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/eslint-ast-utils/-/eslint-ast-utils-1.1.0.tgz#3d58ba557801cfb1c941d68131ee9f8c34bd1586" + integrity sha512-otzzTim2/1+lVrlH19EfQQJEhVJSu0zOb9ygb3iapN6UlyaDtyRq4b5U1FuW0v1lRa9Fp/GJyHkSwm6NqABgCA== + dependencies: + lodash.get "^4.4.2" + lodash.zip "^4.2.0" + +eslint-config-prettier@^3.3.0: + version "3.6.0" + resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-3.6.0.tgz#8ca3ffac4bd6eeef623a0651f9d754900e3ec217" + integrity sha512-ixJ4U3uTLXwJts4rmSVW/lMXjlGwCijhBJHk8iVqKKSifeI0qgFEfWl8L63isfc8Od7EiBALF6BX3jKLluf/jQ== + dependencies: + get-stdin "^6.0.0" + +eslint-config-xo@^0.26.0: + version "0.26.0" + resolved "https://registry.yarnpkg.com/eslint-config-xo/-/eslint-config-xo-0.26.0.tgz#19dcfb1e3038dd440f5c5e4b4d11bb3128801b24" + integrity sha512-l+93kmBSNr5rMrsqwC6xVWsi8LI4He3z6jSk38e9bAkMNsVsQ8XYO+qzXfJFgFX4i/+hiTswyHtl+nDut9rPaA== + +eslint-formatter-pretty@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/eslint-formatter-pretty/-/eslint-formatter-pretty-2.1.1.tgz#0794a1009195d14e448053fe99667413b7d02e44" + integrity sha512-gWfagucSWBn82WxzwFloBTLAcwYDgnpAfiV5pQfyAV5YpZikuLflRU8nc3Ts9wnNvLhwk4blzb42/C495Yw7BA== + dependencies: + ansi-escapes "^3.1.0" + chalk "^2.1.0" + eslint-rule-docs "^1.1.5" + log-symbols "^2.0.0" + plur "^3.0.1" + string-width "^2.0.0" + supports-hyperlinks "^1.0.1" + +eslint-import-resolver-node@^0.3.2: + version "0.3.2" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.2.tgz#58f15fb839b8d0576ca980413476aab2472db66a" + integrity sha512-sfmTqJfPSizWu4aymbPr4Iidp5yKm8yDkHp+Ir3YiTHiiDfxh69mOUsmiqW6RZ9zRXFaF64GtYmN7e+8GHBv6Q== + dependencies: + debug "^2.6.9" + resolve "^1.5.0" + +eslint-module-utils@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.3.0.tgz#546178dab5e046c8b562bbb50705e2456d7bda49" + integrity sha512-lmDJgeOOjk8hObTysjqH7wyMi+nsHwwvfBykwfhjR1LNdd7C2uFJBvx4OpWYpXOw4df1yE1cDEVd1yLHitk34w== + dependencies: + debug "^2.6.8" + pkg-dir "^2.0.0" + +eslint-plugin-ava@^5.1.0: + version "5.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-ava/-/eslint-plugin-ava-5.1.1.tgz#709a03f6c56f9f316d83ebc739952cc28cea979a" + integrity sha512-3N7geVdXTabpngQOl+ih1ejMbFOXCUYROnTIP66KAQoMcEAkPSXYc/Jwo/qC4zpRR7PXMuf5afMzTEBpyZmWzQ== + dependencies: + arrify "^1.0.1" + deep-strict-equal "^0.2.0" + enhance-visitors "^1.0.0" + esm "^3.0.82" + espree "^4.0.0" + espurify "^1.8.1" + import-modules "^1.1.0" + is-plain-object "^2.0.4" + multimatch "^2.1.0" + pkg-up "^2.0.0" + +eslint-plugin-es@^1.3.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.0.tgz#475f65bb20c993fc10e8c8fe77d1d60068072da6" + integrity sha512-XfFmgFdIUDgvaRAlaXUkxrRg5JSADoRC8IkKLc/cISeR3yHVMefFHQZpcyXXEUUPHfy5DwviBcrfqlyqEwlQVw== + dependencies: + eslint-utils "^1.3.0" + regexpp "^2.0.1" + +eslint-plugin-eslint-comments@^3.0.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.1.1.tgz#32ff0afba8a48e17073817e6d03fbc5622f735b7" + integrity sha512-GZDKhOFqJLKlaABX+kdoLskcTINMrVOWxGca54KcFb1QCPd0CLmqgAMRxkkUfGSmN+5NJUMGh7NGccIMcWPSfQ== + dependencies: + escape-string-regexp "^1.0.5" + ignore "^5.0.5" + +eslint-plugin-import@^2.14.0: + version "2.16.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.16.0.tgz#97ac3e75d0791c4fac0e15ef388510217be7f66f" + integrity sha512-z6oqWlf1x5GkHIFgrSvtmudnqM6Q60KM4KvpWi5ubonMjycLjndvd5+8VAZIsTlHC03djdgJuyKG6XO577px6A== + dependencies: + contains-path "^0.1.0" + debug "^2.6.9" + doctrine "1.5.0" + eslint-import-resolver-node "^0.3.2" + eslint-module-utils "^2.3.0" + has "^1.0.3" + lodash "^4.17.11" + minimatch "^3.0.4" + read-pkg-up "^2.0.0" + resolve "^1.9.0" + +eslint-plugin-no-use-extend-native@^0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-no-use-extend-native/-/eslint-plugin-no-use-extend-native-0.4.0.tgz#ececdf248a2336555a554f7b1217a612240c4eaf" + integrity sha512-9W2747CwC7aTJknLKY6ftdzj3AZz8DSaa64zONOMIemxH7YRr0+hqrvsNtHK/v9DusPuMxM9y9hBnfHwzKFmww== + dependencies: + is-get-set-prop "^1.0.0" + is-js-type "^2.0.0" + is-obj-prop "^1.0.0" + is-proto-prop "^2.0.0" + +eslint-plugin-node@^8.0.0: + version "8.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-8.0.1.tgz#55ae3560022863d141fa7a11799532340a685964" + integrity sha512-ZjOjbjEi6jd82rIpFSgagv4CHWzG9xsQAVp1ZPlhRnnYxcTgENUVBvhYmkQ7GvT1QFijUSo69RaiOJKhMu6i8w== + dependencies: + eslint-plugin-es "^1.3.1" + eslint-utils "^1.3.1" + ignore "^5.0.2" + minimatch "^3.0.4" + resolve "^1.8.1" + semver "^5.5.0" + +eslint-plugin-prettier@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.0.1.tgz#19d521e3981f69dd6d14f64aec8c6a6ac6eb0b0d" + integrity sha512-/PMttrarPAY78PLvV3xfWibMOdMDl57hmlQ2XqFeA37wd+CJ7WSxV7txqjVPHi/AAFKd2lX0ZqfsOc/i5yFCSQ== + dependencies: + prettier-linter-helpers "^1.0.0" + +eslint-plugin-promise@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-4.0.1.tgz#2d074b653f35a23d1ba89d8e976a985117d1c6a2" + integrity sha512-Si16O0+Hqz1gDHsys6RtFRrW7cCTB6P7p3OJmKp3Y3dxpQE2qwOA7d3xnV+0mBmrPoi0RBnxlCKvqu70te6wjg== + +eslint-plugin-unicorn@^7.0.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-unicorn/-/eslint-plugin-unicorn-7.1.0.tgz#9efef5c68fde0ebefb0241fbcfa274f1b959c04e" + integrity sha512-lW/ZwGR638V0XuZgR160qVQvPtw8tw3laKT5LjJPt+W+tN7kVf2S2V7x+ZrEEwSjEb3OiEzb3cppzaKuYtgYeg== + dependencies: + clean-regexp "^1.0.0" + eslint-ast-utils "^1.0.0" + import-modules "^1.1.0" + lodash.camelcase "^4.1.1" + lodash.kebabcase "^4.0.1" + lodash.snakecase "^4.0.1" + lodash.upperfirst "^4.2.0" + safe-regex "^2.0.1" + +eslint-rule-docs@^1.1.5: + version "1.1.73" + resolved "https://registry.yarnpkg.com/eslint-rule-docs/-/eslint-rule-docs-1.1.73.tgz#501222247398f91f6fdfeed5591b089f7333d2ae" + integrity sha512-fuAN3/czExUxiQiQGWS/UsAwbdlqC9E0OkZ6Mv7W4eZRN+l2bDy30uNcSMrg1K2qXkmelcrncalL2e+jnk88zw== + +eslint-scope@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.2.tgz#5f10cd6cabb1965bf479fa65745673439e21cb0e" + integrity sha512-5q1+B/ogmHl8+paxtOKx38Z8LtWkVGuNt3+GQNErqwLl6ViNp/gdJGMCjZNxZ8j/VYjDNZ2Fo+eQc1TAVPIzbg== dependencies: esrecurse "^4.1.0" estraverse "^4.1.1" +eslint-utils@^1.3.0, eslint-utils@^1.3.1: + version "1.3.1" + resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512" + integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q== + eslint-visitor-keys@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d" integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ== -eslint@^4.0.0, eslint@^4.19.1: - version "4.19.1" - resolved "https://registry.yarnpkg.com/eslint/-/eslint-4.19.1.tgz#32d1d653e1d90408854bfb296f076ec7e186a300" - integrity sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ== +eslint@^5.12.0: + version "5.15.1" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.15.1.tgz#8266b089fd5391e0009a047050795b1d73664524" + integrity sha512-NTcm6vQ+PTgN3UBsALw5BMhgO6i5EpIjQF/Xb5tIh3sk9QhrFafujUOczGz4J24JBlzWclSB9Vmx8d+9Z6bFCg== dependencies: - ajv "^5.3.0" - babel-code-frame "^6.22.0" + "@babel/code-frame" "^7.0.0" + ajv "^6.9.1" chalk "^2.1.0" - concat-stream "^1.6.0" - cross-spawn "^5.1.0" - debug "^3.1.0" - doctrine "^2.1.0" - eslint-scope "^3.7.1" + cross-spawn "^6.0.5" + debug "^4.0.1" + doctrine "^3.0.0" + eslint-scope "^4.0.2" + eslint-utils "^1.3.1" eslint-visitor-keys "^1.0.0" - espree "^3.5.4" - esquery "^1.0.0" + espree "^5.0.1" + esquery "^1.0.1" esutils "^2.0.2" - file-entry-cache "^2.0.0" + file-entry-cache "^5.0.1" functional-red-black-tree "^1.0.1" glob "^7.1.2" - globals "^11.0.1" - ignore "^3.3.3" + globals "^11.7.0" + ignore "^4.0.6" + import-fresh "^3.0.0" imurmurhash "^0.1.4" - inquirer "^3.0.6" - is-resolvable "^1.0.0" - js-yaml "^3.9.1" + inquirer "^6.2.2" + js-yaml "^3.12.0" json-stable-stringify-without-jsonify "^1.0.1" levn "^0.3.0" - lodash "^4.17.4" - minimatch "^3.0.2" + lodash "^4.17.11" + minimatch "^3.0.4" mkdirp "^0.5.1" natural-compare "^1.4.0" optionator "^0.8.2" path-is-inside "^1.0.2" - pluralize "^7.0.0" progress "^2.0.0" - regexpp "^1.0.1" - require-uncached "^1.0.3" - semver "^5.3.0" + regexpp "^2.0.1" + semver "^5.5.1" strip-ansi "^4.0.0" - strip-json-comments "~2.0.1" - table "4.0.2" - text-table "~0.2.0" + strip-json-comments "^2.0.1" + table "^5.2.3" + text-table "^0.2.0" -espree@^3.5.4: - version "3.5.4" - resolved "https://registry.yarnpkg.com/espree/-/espree-3.5.4.tgz#b0f447187c8a8bed944b815a660bddf5deb5d1a7" - integrity sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A== +esm@^3.0.82: + version "3.2.11" + resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.11.tgz#f6ac0c7fbb682324e80f48950130f5a5fe953f35" + integrity sha512-OhgzK4tmov6Ih2gQ28k8e5kV07sGgEKG+ys3PqbDd2FBXpsZkGpFotFbrm0+KmuD2ktaV4hdPYQTDMpq9FjeTA== + +espree@^4.0.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/espree/-/espree-4.1.0.tgz#728d5451e0fd156c04384a7ad89ed51ff54eb25f" + integrity sha512-I5BycZW6FCVIub93TeVY1s7vjhP9CY6cXCznIRfiig7nRviKZYdRnj/sHEWC6A7WE9RDWOFq9+7OsWSYz8qv2w== dependencies: - acorn "^5.5.0" - acorn-jsx "^3.0.0" + acorn "^6.0.2" + acorn-jsx "^5.0.0" + eslint-visitor-keys "^1.0.0" + +espree@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a" + integrity sha512-qWAZcWh4XE/RwzLJejfcofscgMc9CamR6Tn1+XRXNzrvUSSbiAjGOI/fggztjIi7y9VLPqnICMIPiGyr8JaZ0A== + dependencies: + acorn "^6.0.7" + acorn-jsx "^5.0.0" + eslint-visitor-keys "^1.0.0" esprima@^4.0.0: version "4.0.1" resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== -esquery@^1.0.0: +espurify@^1.8.1: + version "1.8.1" + resolved "https://registry.yarnpkg.com/espurify/-/espurify-1.8.1.tgz#5746c6c1ab42d302de10bd1d5bf7f0e8c0515056" + integrity sha512-ZDko6eY/o+D/gHCWyHTU85mKDgYcS4FJj7S+YD6WIInm7GQ6AnOjmcL4+buFV/JOztVLELi/7MmuGU5NHta0Mg== + dependencies: + core-js "^2.0.0" + +esquery@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708" integrity sha512-SmiyZ5zIWH9VM+SRUReLS5Q8a7GxtRdxEBVZpm98rJM7Sb+A9DVCndXfkeFUd3byderg+EbDkfnevfCwynWaNA== @@ -1139,6 +1355,32 @@ esutils@^2.0.2: resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= +execa@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777" + integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c= + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + +execa@^0.9.0: + version "0.9.0" + resolved "https://registry.yarnpkg.com/execa/-/execa-0.9.0.tgz#adb7ce62cf985071f60580deb4a88b9e34712d01" + integrity sha512-BbUMBiX4hqiHZUA5+JujIjNb6TyAlp2D5KLheMjMluwOuzcnylDL4AxZYLLn1n2AGB49eSWwyKvvEQoRpnAtmA== + dependencies: + cross-spawn "^5.0.1" + get-stream "^3.0.0" + is-stream "^1.1.0" + npm-run-path "^2.0.0" + p-finally "^1.0.0" + signal-exit "^3.0.0" + strip-eof "^1.0.0" + execall@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/execall/-/execall-1.0.0.tgz#73d0904e395b3cab0658b08d09ec25307f29bb73" @@ -1159,13 +1401,6 @@ expand-brackets@^2.1.4: snapdragon "^0.8.1" to-regex "^3.0.1" -expand-tilde@^2.0.0, expand-tilde@^2.0.2: - version "2.0.2" - resolved "https://registry.yarnpkg.com/expand-tilde/-/expand-tilde-2.0.2.tgz#97e801aa052df02454de46b02bf621642cdc8502" - integrity sha1-l+gBqgUt8CRU3kawK/YhZCzchQI= - dependencies: - homedir-polyfill "^1.0.1" - extend-shallow@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f" @@ -1186,13 +1421,13 @@ extend@^3.0.0, extend@~3.0.2: resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa" integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g== -external-editor@^2.0.4: - version "2.2.0" - resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5" - integrity sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A== +external-editor@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-3.0.3.tgz#5866db29a97826dbe4bf3afd24070ead9ea43a27" + integrity sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA== dependencies: - chardet "^0.4.0" - iconv-lite "^0.4.17" + chardet "^0.7.0" + iconv-lite "^0.4.24" tmp "^0.0.33" extglob@^2.0.4: @@ -1219,26 +1454,16 @@ extsprintf@^1.2.0: resolved "https://registry.yarnpkg.com/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f" integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8= -fancy-log@^1.1.0, fancy-log@^1.3.2: - version "1.3.3" - resolved "https://registry.yarnpkg.com/fancy-log/-/fancy-log-1.3.3.tgz#dbc19154f558690150a23953a0adbd035be45fc7" - integrity sha512-k9oEhlyc0FrVh25qYuSELjr8oxsCoc4/LEZfg2iJJrfEk/tZL9bCoJE47gqAvI2m/AUjluCS4+3I0eTx8n3AEw== - dependencies: - ansi-gray "^0.1.1" - color-support "^1.1.3" - parse-node-version "^1.0.0" - time-stamp "^1.0.0" - -fast-deep-equal@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz#c053477817c86b51daa853c81e059b733d023614" - integrity sha1-wFNHeBfIa1HaqFPIHgWbcz0CNhQ= - fast-deep-equal@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= +fast-diff@^1.1.2: + version "1.2.0" + resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" + integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== + fast-glob@^2.2.6: version "2.2.6" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.6.tgz#a5d5b697ec8deda468d85a74035290a025a95295" @@ -1268,14 +1493,6 @@ figures@^2.0.0: dependencies: escape-string-regexp "^1.0.5" -file-entry-cache@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-2.0.0.tgz#c392990c3e684783d838b8c84a45d8a048458361" - integrity sha1-w5KZDD5oR4PYOLjISkXYoEhFg2E= - dependencies: - flat-cache "^1.2.1" - object-assign "^4.0.1" - file-entry-cache@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-4.0.0.tgz#633567d15364aefe0b299e1e217735e8f3a9f6e8" @@ -1283,6 +1500,13 @@ file-entry-cache@^4.0.0: dependencies: flat-cache "^2.0.1" +file-entry-cache@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-5.0.1.tgz#ca0f6efa6dd3d561333fb14515065c2fafdf439c" + integrity sha512-bCg29ictuBaKUwwArK4ouCaqDgLZcysCFLmM/Yn/FDoqndh/9vNuQfXRDvTuXKLxfD/JtZQGKFT8MGcJBK644g== + dependencies: + flat-cache "^2.0.1" + fill-range@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7" @@ -1293,10 +1517,14 @@ fill-range@^4.0.0: repeat-string "^1.6.1" to-regex-range "^2.1.0" -find-index@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/find-index/-/find-index-0.1.1.tgz#675d358b2ca3892d795a1ab47232f8b6e2e0dde4" - integrity sha1-Z101iyyjiS15Whq0cjL4tuLg3eQ= +find-cache-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-2.0.0.tgz#4c1faed59f45184530fb9d7fa123a4d04a98472d" + integrity sha512-LDUY6V1Xs5eFskUVYtIwatojt6+9xC9Chnlk/jYOOvn3FAFfSaWddxahDGyNHh0b2dMXa6YW2m0tk8TdVaXHlA== + dependencies: + commondir "^1.0.1" + make-dir "^1.0.0" + pkg-dir "^3.0.0" find-up@^1.0.0: version "1.1.2" @@ -1306,53 +1534,19 @@ find-up@^1.0.0: path-exists "^2.0.0" pinkie-promise "^2.0.0" -find-up@^2.0.0: +find-up@^2.0.0, find-up@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= dependencies: locate-path "^2.0.0" -findup-sync@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc" - integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw= +find-up@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73" + integrity sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg== dependencies: - detect-file "^1.0.0" - is-glob "^3.1.0" - micromatch "^3.0.4" - resolve-dir "^1.0.1" - -fined@^1.0.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/fined/-/fined-1.1.1.tgz#95d88ff329123dd1a6950fdfcd321f746271e01f" - integrity sha512-jQp949ZmEbiYHk3gkbdtpJ0G1+kgtLQBNdP5edFP7Fh+WAYceLQz6yO1SBj72Xkg8GVyTB3bBzAYrHJVh5Xd5g== - dependencies: - expand-tilde "^2.0.2" - is-plain-object "^2.0.3" - object.defaults "^1.1.0" - object.pick "^1.2.0" - parse-filepath "^1.0.1" - -first-chunk-stream@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz#59bfb50cd905f60d7c394cd3d9acaab4e6ad934e" - integrity sha1-Wb+1DNkF9g18OUzT2ayqtOatk04= - -flagged-respawn@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/flagged-respawn/-/flagged-respawn-1.0.1.tgz#e7de6f1279ddd9ca9aac8a5971d618606b3aab41" - integrity sha512-lNaHNVymajmk0OJMBn8fVUAU1BtDeKIqKoVhk4xAALB57aALg6b4W0MfJ/cUE0g9YBXy5XhSlPIpYIJ7HaY/3Q== - -flat-cache@^1.2.1: - version "1.3.4" - resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-1.3.4.tgz#2c2ef77525cc2929007dfffa1dd314aa9c9dee6f" - integrity sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg== - dependencies: - circular-json "^0.3.1" - graceful-fs "^4.1.2" - rimraf "~2.6.2" - write "^0.2.1" + locate-path "^3.0.0" flat-cache@^2.0.1: version "2.0.1" @@ -1368,18 +1562,11 @@ flatted@^2.0.0: resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.0.tgz#55122b6536ea496b4b44893ee2608141d10d9916" integrity sha512-R+H8IZclI8AAkSBRQJLVOsxwAoHd6WC40b4QTNWIjzAa6BXOBfQcM587MXDTVPeYaopFNWHUFLx7eNmHDSxMWg== -for-in@^1.0.1, for-in@^1.0.2: +for-in@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80" integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA= -for-own@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/for-own/-/for-own-1.0.0.tgz#c63332f415cedc4b04dbfe70cf836494c53cb44b" - integrity sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs= - dependencies: - for-in "^1.0.1" - forever-agent@~0.6.1: version "0.6.1" resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91" @@ -1401,11 +1588,35 @@ fragment-cache@^0.2.1: dependencies: map-cache "^0.2.2" +fs-extra@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" + integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== + dependencies: + graceful-fs "^4.1.2" + jsonfile "^4.0.0" + universalify "^0.1.0" + +fs-minipass@^1.2.5: + version "1.2.5" + resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d" + integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ== + dependencies: + minipass "^2.2.1" + fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= +fsevents@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4" + integrity sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw== + dependencies: + nan "^2.9.2" + node-pre-gyp "^0.10.0" + fstream@^1.0.0, fstream@^1.0.2: version "1.0.11" resolved "https://registry.yarnpkg.com/fstream/-/fstream-1.0.11.tgz#5c1fb1f117477114f0632a0eb4b71b3cb0fd3171" @@ -1416,6 +1627,11 @@ fstream@^1.0.0, fstream@^1.0.2: mkdirp ">=0.5 0" rimraf "2" +function-bind@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" + integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== + functional-red-black-tree@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" @@ -1435,13 +1651,6 @@ gauge@~2.7.3: strip-ansi "^3.0.1" wide-align "^1.1.0" -gaze@^0.5.1: - version "0.5.2" - resolved "https://registry.yarnpkg.com/gaze/-/gaze-0.5.2.tgz#40b709537d24d1d45767db5a908689dfe69ac44f" - integrity sha1-QLcJU30k0dRXZ9takIaJ3+aaxE8= - dependencies: - globule "~0.1.0" - gaze@^1.0.0: version "1.1.3" resolved "https://registry.yarnpkg.com/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a" @@ -1454,6 +1663,11 @@ get-caller-file@^1.0.1: resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a" integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w== +get-set-props@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/get-set-props/-/get-set-props-0.1.0.tgz#998475c178445686d0b32246da5df8dbcfbe8ea3" + integrity sha1-mYR1wXhEVobQsyJG2l3428++jqM= + get-stdin@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" @@ -1464,6 +1678,11 @@ get-stdin@^6.0.0: resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== +get-stream@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" + integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ= + get-value@^2.0.3, get-value@^2.0.6: version "2.0.6" resolved "https://registry.yarnpkg.com/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28" @@ -1484,47 +1703,11 @@ glob-parent@^3.1.0: is-glob "^3.1.0" path-dirname "^1.0.0" -glob-stream@^3.1.5: - version "3.1.18" - resolved "https://registry.yarnpkg.com/glob-stream/-/glob-stream-3.1.18.tgz#9170a5f12b790306fdfe598f313f8f7954fd143b" - integrity sha1-kXCl8St5Awb9/lmPMT+PeVT9FDs= - dependencies: - glob "^4.3.1" - glob2base "^0.0.12" - minimatch "^2.0.1" - ordered-read-streams "^0.1.0" - through2 "^0.6.1" - unique-stream "^1.0.0" - glob-to-regexp@^0.3.0: version "0.3.0" resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab" integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs= -glob-watcher@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/glob-watcher/-/glob-watcher-0.0.6.tgz#b95b4a8df74b39c83298b0c05c978b4d9a3b710b" - integrity sha1-uVtKjfdLOcgymLDAXJeLTZo7cQs= - dependencies: - gaze "^0.5.1" - -glob2base@^0.0.12: - version "0.0.12" - resolved "https://registry.yarnpkg.com/glob2base/-/glob2base-0.0.12.tgz#9d419b3e28f12e83a362164a277055922c9c0d56" - integrity sha1-nUGbPijxLoOjYhZKJ3BVkiycDVY= - dependencies: - find-index "^0.1.1" - -glob@^4.3.1: - version "4.5.3" - resolved "https://registry.yarnpkg.com/glob/-/glob-4.5.3.tgz#c6cb73d3226c1efef04de3c56d012f03377ee15f" - integrity sha1-xstz0yJsHv7wTePFbQEvAzd+4V8= - dependencies: - inflight "^1.0.4" - inherits "2" - minimatch "^2.0.1" - once "^1.3.0" - glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1: version "7.1.3" resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1" @@ -1537,23 +1720,12 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1: once "^1.3.0" path-is-absolute "^1.0.0" -glob@~3.1.21: - version "3.1.21" - resolved "https://registry.yarnpkg.com/glob/-/glob-3.1.21.tgz#d29e0a055dea5138f4d07ed40e8982e83c2066cd" - integrity sha1-0p4KBV3qUTj00H7UDomC6DwgZs0= +global-dirs@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/global-dirs/-/global-dirs-0.1.1.tgz#b319c0dd4607f353f3be9cca4c72fc148c49f445" + integrity sha1-sxnA3UYH81PzvpzKTHL8FIxJ9EU= dependencies: - graceful-fs "~1.2.0" - inherits "1" - minimatch "~0.2.11" - -global-modules@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea" - integrity sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg== - dependencies: - global-prefix "^1.0.1" - is-windows "^1.0.1" - resolve-dir "^1.0.0" + ini "^1.3.4" global-modules@^2.0.0: version "2.0.0" @@ -1562,17 +1734,6 @@ global-modules@^2.0.0: dependencies: global-prefix "^3.0.0" -global-prefix@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-1.0.2.tgz#dbf743c6c14992593c655568cb66ed32c0122ebe" - integrity sha1-2/dDxsFJklk8ZVVoy2btMsASLr4= - dependencies: - expand-tilde "^2.0.2" - homedir-polyfill "^1.0.1" - ini "^1.3.4" - is-windows "^1.0.1" - which "^1.2.14" - global-prefix@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97" @@ -1582,16 +1743,17 @@ global-prefix@^3.0.0: kind-of "^6.0.2" which "^1.3.1" -globals@^11.0.1, globals@^11.1.0: - version "11.10.0" - resolved "https://registry.yarnpkg.com/globals/-/globals-11.10.0.tgz#1e09776dffda5e01816b3bb4077c8b59c24eaa50" - integrity sha512-0GZF1RiPKU97IHUO5TORo9w1PwrH/NBPl+fS7oMLdaTRiYmYbwK4NWoZWrAdd0/abG9R2BU+OiwyQpTpE6pdfQ== +globals@^11.1.0, globals@^11.7.0: + version "11.11.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e" + integrity sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw== globby@^9.0.0: - version "9.0.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-9.0.0.tgz#3800df736dc711266df39b4ce33fe0d481f94c23" - integrity sha512-q0qiO/p1w/yJ0hk8V9x1UXlgsXUxlGd0AHUOXZVXBO6aznDtpx7M8D1kBrCAItoPm+4l8r6ATXV1JpjY2SBQOw== + version "9.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-9.1.0.tgz#e90f4d5134109e6d855abdd31bdb1b085428592e" + integrity sha512-VtYjhHr7ncls724Of5W6Kaahz0ag7dB4G62/2HsN+xEKG6SrPzM1AJMerGxQTwJGnN9reeyxdvXbuZYpfssCvg== dependencies: + "@types/glob" "^7.1.1" array-union "^1.0.2" dir-glob "^2.2.1" fast-glob "^2.2.6" @@ -1614,22 +1776,6 @@ globule@^1.0.0: lodash "~4.17.10" minimatch "~3.0.2" -globule@~0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/globule/-/globule-0.1.0.tgz#d9c8edde1da79d125a151b79533b978676346ae5" - integrity sha1-2cjt3h2nnRJaFRt5UzuXhnY0auU= - dependencies: - glob "~3.1.21" - lodash "~1.0.1" - minimatch "~0.2.11" - -glogg@^1.0.0: - version "1.0.2" - resolved "https://registry.yarnpkg.com/glogg/-/glogg-1.0.2.tgz#2d7dd702beda22eb3bffadf880696da6d846313f" - integrity sha512-5mwUoSuBk44Y4EshyiqcH95ZntbDdTQqA3QYSrxmzj28Ai0vXBGMH1ApSANH14j2sIRtqCEyg6PfsuP7ElOEDA== - dependencies: - sparkles "^1.0.0" - gonzales-pe@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/gonzales-pe/-/gonzales-pe-4.2.3.tgz#41091703625433285e0aee3aa47829fc1fbeb6f2" @@ -1637,120 +1783,28 @@ gonzales-pe@^4.2.3: dependencies: minimist "1.1.x" -graceful-fs@^3.0.0: - version "3.0.11" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-3.0.11.tgz#7613c778a1afea62f25c630a086d7f3acbbdd818" - integrity sha1-dhPHeKGv6mLyXGMKCG1/Osu92Bg= +got@^6.7.1: + version "6.7.1" + resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0" + integrity sha1-JAzQV4WpoY5WHcG0S0HHY+8ejbA= dependencies: - natives "^1.1.0" + create-error-class "^3.0.0" + duplexer3 "^0.1.4" + get-stream "^3.0.0" + is-redirect "^1.0.0" + is-retry-allowed "^1.0.0" + is-stream "^1.0.0" + lowercase-keys "^1.0.0" + safe-buffer "^5.0.1" + timed-out "^4.0.0" + unzip-response "^2.0.1" + url-parse-lax "^1.0.0" -graceful-fs@^4.1.11, graceful-fs@^4.1.2: +graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6: version "4.1.15" resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00" integrity sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA== -graceful-fs@~1.2.0: - version "1.2.3" - resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-1.2.3.tgz#15a4806a57547cb2d2dbf27f42e89a8c3451b364" - integrity sha1-FaSAaldUfLLS2/J/QuiajDRRs2Q= - -gulp-cssbeautify@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/gulp-cssbeautify/-/gulp-cssbeautify-1.0.1.tgz#136903ab47e8d6c14ec1306acd1064433c5cc592" - integrity sha512-6eMR1sqbdm0O5WLdnM3nDxFJc4XkdOJcYDPv2XGnDeSF05ed3PpJlJNVTBW+l5Yl6m9tUn6L17x/vnjx9MALwA== - dependencies: - cssbeautify "^0.3.1" - plugin-error "^1.0.1" - through2 "^2.0.3" - -gulp-eslint@^4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/gulp-eslint/-/gulp-eslint-4.0.2.tgz#18a2a6768e4404cbf3e203239cb57474168fa606" - integrity sha512-fcFUQzFsN6dJ6KZlG+qPOEkqfcevRUXgztkYCvhNvJeSvOicC8ucutN4qR/ID8LmNZx9YPIkBzazTNnVvbh8wg== - dependencies: - eslint "^4.0.0" - fancy-log "^1.3.2" - plugin-error "^1.0.0" - -gulp-sass@^4.0.1: - version "4.0.2" - resolved "https://registry.yarnpkg.com/gulp-sass/-/gulp-sass-4.0.2.tgz#cfb1e3eff2bd9852431c7ce87f43880807d8d505" - integrity sha512-q8psj4+aDrblJMMtRxihNBdovfzGrXJp1l4JU0Sz4b/Mhsi2DPrKFYCGDwjIWRENs04ELVHxdOJQ7Vs98OFohg== - dependencies: - chalk "^2.3.0" - lodash.clonedeep "^4.3.2" - node-sass "^4.8.3" - plugin-error "^1.0.1" - replace-ext "^1.0.0" - strip-ansi "^4.0.0" - through2 "^2.0.0" - vinyl-sourcemaps-apply "^0.2.0" - -gulp-stylelint@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/gulp-stylelint/-/gulp-stylelint-7.0.0.tgz#4249dc36a983e6a2c28a449f73d9a369bb14b458" - integrity sha512-0PI+tNTzaJz5+qO3i9Jyd04ZPSb+NCN7bZ2GaIArvbQpuyJha9p3lpWxPG+XJtrVT42bIiyLeYKPnLe7uW4dQQ== - dependencies: - chalk "^2.3.0" - deep-extend "^0.5.0" - fancy-log "^1.3.2" - mkdirp "^0.5.1" - plugin-error "^1.0.1" - promise "^8.0.1" - source-map "^0.5.6" - strip-ansi "^4.0.0" - through2 "^2.0.3" - -gulp-util@^3.0.0: - version "3.0.8" - resolved "https://registry.yarnpkg.com/gulp-util/-/gulp-util-3.0.8.tgz#0054e1e744502e27c04c187c3ecc505dd54bbb4f" - integrity sha1-AFTh50RQLifATBh8PsxQXdVLu08= - dependencies: - array-differ "^1.0.0" - array-uniq "^1.0.2" - beeper "^1.0.0" - chalk "^1.0.0" - dateformat "^2.0.0" - fancy-log "^1.1.0" - gulplog "^1.0.0" - has-gulplog "^0.1.0" - lodash._reescape "^3.0.0" - lodash._reevaluate "^3.0.0" - lodash._reinterpolate "^3.0.0" - lodash.template "^3.0.0" - minimist "^1.1.0" - multipipe "^0.1.2" - object-assign "^3.0.0" - replace-ext "0.0.1" - through2 "^2.0.0" - vinyl "^0.5.0" - -gulp@^3.9.1: - version "3.9.1" - resolved "https://registry.yarnpkg.com/gulp/-/gulp-3.9.1.tgz#571ce45928dd40af6514fc4011866016c13845b4" - integrity sha1-VxzkWSjdQK9lFPxAEYZgFsE4RbQ= - dependencies: - archy "^1.0.0" - chalk "^1.0.0" - deprecated "^0.0.1" - gulp-util "^3.0.0" - interpret "^1.0.0" - liftoff "^2.1.0" - minimist "^1.1.0" - orchestrator "^0.3.0" - pretty-hrtime "^1.0.0" - semver "^4.1.0" - tildify "^1.0.0" - v8flags "^2.0.2" - vinyl-fs "^0.3.0" - -gulplog@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/gulplog/-/gulplog-1.0.0.tgz#e28c4d45d05ecbbed818363ce8f9c5926229ffe5" - integrity sha1-4oxNRdBey77YGDY86PnFkmIp/+U= - dependencies: - glogg "^1.0.0" - har-schema@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92" @@ -1771,18 +1825,16 @@ has-ansi@^2.0.0: dependencies: ansi-regex "^2.0.0" +has-flag@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-2.0.0.tgz#e8207af1cc7b30d446cc70b734b5e8be18f88d51" + integrity sha1-6CB68cx7MNRGzHC3NLXovhj4jVE= + has-flag@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= -has-gulplog@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/has-gulplog/-/has-gulplog-0.1.0.tgz#6414c82913697da51590397dafb12f22967811ce" - integrity sha1-ZBTIKRNpfaUVkDl9r7EvIpZ4Ec4= - dependencies: - sparkles "^1.0.0" - has-unicode@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9" @@ -1819,12 +1871,17 @@ has-values@^1.0.0: is-number "^3.0.0" kind-of "^4.0.0" -homedir-polyfill@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/homedir-polyfill/-/homedir-polyfill-1.0.1.tgz#4c2bbc8a758998feebf5ed68580f76d46768b4bc" - integrity sha1-TCu8inWJmP7r9e1oWA921GdotLw= +has-yarn@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/has-yarn/-/has-yarn-1.0.0.tgz#89e25db604b725c8f5976fff0addc921b828a5a7" + integrity sha1-ieJdtgS3Jcj1l2//Ct3JIbgopac= + +has@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" + integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== dependencies: - parse-passwd "^1.0.0" + function-bind "^1.1.1" hosted-git-info@^2.1.4: version "2.7.1" @@ -1837,16 +1894,16 @@ html-tags@^2.0.0: integrity sha1-ELMKOGCF9Dzt41PMj6fLDe7qZos= htmlparser2@^3.10.0: - version "3.10.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.0.tgz#5f5e422dcf6119c0d983ed36260ce9ded0bee464" - integrity sha512-J1nEUGv+MkXS0weHNWVKJJ+UrLfePxRWpN3C9bEi9fLxL2+ggW94DQvgYVXsaT30PGwYRIZKNZXuyMhp3Di4bQ== + version "3.10.1" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f" + integrity sha512-IgieNijUMbkDovyoKObU1DUhm1iwNYE/fuifEoEHfd1oZKZDaONBSkal7Y01shxsM49R4XaMdGez3WnF9UfiCQ== dependencies: - domelementtype "^1.3.0" + domelementtype "^1.3.1" domhandler "^2.3.0" domutils "^1.5.1" entities "^1.1.1" inherits "^2.0.1" - readable-stream "^3.0.6" + readable-stream "^3.1.1" http-signature@~1.2.0: version "1.2.0" @@ -1857,24 +1914,31 @@ http-signature@~1.2.0: jsprim "^1.2.2" sshpk "^1.7.0" -iconv-lite@^0.4.17: +iconv-lite@^0.4.24, iconv-lite@^0.4.4: version "0.4.24" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== dependencies: safer-buffer ">= 2.1.2 < 3" -ignore@^3.3.3: - version "3.3.10" - resolved "https://registry.yarnpkg.com/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043" - integrity sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug== +ignore-by-default@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/ignore-by-default/-/ignore-by-default-1.0.1.tgz#48ca6d72f6c6a3af00a9ad4ae6876be3889e2b09" + integrity sha1-SMptcvbGo68Aqa1K5odr44ieKwk= -ignore@^4.0.3: +ignore-walk@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/ignore-walk/-/ignore-walk-3.0.1.tgz#a83e62e7d272ac0e3b551aaa82831a19b69f82f8" + integrity sha512-DTVlMx3IYPe0/JJcYP7Gxg7ttZZu3IInhuEhbchuqneY9wWe5Ojy2mXLBaQFUQmo0AW2r3qG7m1mg86js+gnlQ== + dependencies: + minimatch "^3.0.4" + +ignore@^4.0.3, ignore@^4.0.6: version "4.0.6" resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== -ignore@^5.0.4: +ignore@^5.0.2, ignore@^5.0.4, ignore@^5.0.5: version "5.0.5" resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.0.5.tgz#c663c548d6ce186fb33616a8ccb5d46e56bdbbf9" integrity sha512-kOC8IUb8HSDMVcYrDVezCxpJkzSQWTAzf3olpKM6o9rM5zpojx23O0Fl8Wr4+qJ6ZbPEHqf1fdwev/DS7v7pmA== @@ -1887,11 +1951,29 @@ import-fresh@^2.0.0: caller-path "^2.0.0" resolve-from "^3.0.0" +import-fresh@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.0.0.tgz#a3d897f420cab0e671236897f75bc14b4885c390" + integrity sha512-pOnA9tfM3Uwics+SaBLCNyZZZbK+4PTu0OPZtLlMIrv17EdBoC15S9Kn8ckJ9TZTyKb3ywNE5y1yeDxxGA7nTQ== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-lazy@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-2.1.0.tgz#05698e3d45c88e8d7e9d92cb0584e77f096f3e43" + integrity sha1-BWmOPUXIjo1+nZLLBYTnfwlvPkM= + import-lazy@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/import-lazy/-/import-lazy-3.1.0.tgz#891279202c8a2280fdbd6674dbd8da1a1dfc67cc" integrity sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ== +import-modules@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/import-modules/-/import-modules-1.1.0.tgz#748db79c5cc42bb9701efab424f894e72600e9dc" + integrity sha1-dI23nFzEK7lwHvq0JPiU5yYA6dw= + imurmurhash@^0.1.4: version "0.1.4" resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" @@ -1927,58 +2009,44 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/inherits/-/inherits-1.0.2.tgz#ca4309dadee6b54cc0b8d247e8d7c7a0975bdc9b" - integrity sha1-ykMJ2t7mtUzAuNJH6NfHoJdb3Js= - -inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3: +inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de" integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4= -ini@^1.3.4, ini@^1.3.5: +ini@^1.3.4, ini@^1.3.5, ini@~1.3.0: version "1.3.5" resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927" integrity sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw== -inquirer@^3.0.6: - version "3.3.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9" - integrity sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ== +inquirer@^6.2.2: + version "6.2.2" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.2.tgz#46941176f65c9eb20804627149b743a218f25406" + integrity sha512-Z2rREiXA6cHRR9KBOarR3WuLlFzlIfAEIiB45ll5SSadMg7WqOh1MKEjjndfuH5ewXdixWCxqnVfGOQzPeiztA== dependencies: - ansi-escapes "^3.0.0" - chalk "^2.0.0" + ansi-escapes "^3.2.0" + chalk "^2.4.2" cli-cursor "^2.1.0" cli-width "^2.0.0" - external-editor "^2.0.4" + external-editor "^3.0.3" figures "^2.0.0" - lodash "^4.3.0" + lodash "^4.17.11" mute-stream "0.0.7" run-async "^2.2.0" - rx-lite "^4.0.8" - rx-lite-aggregates "^4.0.8" + rxjs "^6.4.0" string-width "^2.1.0" - strip-ansi "^4.0.0" + strip-ansi "^5.0.0" through "^2.3.6" -interpret@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/interpret/-/interpret-1.2.0.tgz#d5061a6224be58e8083985f5014d844359576296" - integrity sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw== - invert-kv@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" integrity sha1-EEqOSqym09jNFXqO+L+rLXo//bY= -is-absolute@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-absolute/-/is-absolute-1.0.0.tgz#395e1ae84b11f26ad1795e73c17378e48a301576" - integrity sha512-dOWoqflvcydARa360Gvv18DZ/gRuHKi2NU/wU5X1ZFzdYfH29nkiNZsF3mp4OJ3H4yo9Mx8A/uAGNzpzPN3yBA== - dependencies: - is-relative "^1.0.0" - is-windows "^1.0.1" +irregular-plurals@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/irregular-plurals/-/irregular-plurals-2.0.0.tgz#39d40f05b00f656d0b7fa471230dd3b714af2872" + integrity sha512-Y75zBYLkh0lJ9qxeHlMjQ7bSbyiSqNW/UOPWDmzC7cXskL1hekSITh1Oc6JV0XCWWZ9DE8VYSB71xocLk3gmGw== is-accessor-descriptor@^0.1.6: version "0.1.6" @@ -2017,6 +2085,13 @@ is-arrayish@^0.2.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= +is-binary-path@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" + integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg= + dependencies: + binary-extensions "^1.0.0" + is-buffer@^1.1.5: version "1.1.6" resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be" @@ -2027,12 +2102,12 @@ is-buffer@^2.0.0: resolved "https://registry.yarnpkg.com/is-buffer/-/is-buffer-2.0.3.tgz#4ecf3fcf749cbd1e472689e109ac66261a25e725" integrity sha512-U15Q7MXTuZlrbymiz95PJpZxu8IlipAp4dtS3wOdgPXx3mqBnslrWU14kxfHB+Py/+2PVKSr37dMAgM2A4uArw== -is-builtin-module@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-1.0.0.tgz#540572d34f7ac3119f8f76c30cbc1b1e037affbe" - integrity sha1-VAVy0096wxGfj3bDDLwbHgN6/74= +is-ci@^1.0.10: + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-1.2.1.tgz#e3779c8ee17fccf428488f6e281187f2e632841c" + integrity sha512-s6tfsaQaQi3JNciBH6shVqEDvhGut0SUXr31ag8Pd8BBbVVlcGfWhpPmEOoM6RJ5TFhbypvf5yyRw/VXW1IiWg== dependencies: - builtin-modules "^1.0.0" + ci-info "^1.5.0" is-data-descriptor@^0.1.4: version "0.1.4" @@ -2076,6 +2151,11 @@ is-directory@^0.3.1: resolved "https://registry.yarnpkg.com/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1" integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE= +is-error@^2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/is-error/-/is-error-2.2.1.tgz#684a96d84076577c98f4cdb40c6d26a5123bf19c" + integrity sha1-aEqW2EB2V3yY9M20DG0mpRI78Zw= + is-extendable@^0.1.0, is-extendable@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89" @@ -2112,6 +2192,14 @@ is-fullwidth-code-point@^2.0.0: resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= +is-get-set-prop@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-get-set-prop/-/is-get-set-prop-1.0.0.tgz#2731877e4d78a6a69edcce6bb9d68b0779e76312" + integrity sha1-JzGHfk14pqae3M5rudaLB3nnYxI= + dependencies: + get-set-props "^0.1.0" + lowercase-keys "^1.0.0" + is-glob@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a" @@ -2131,6 +2219,26 @@ is-hexadecimal@^1.0.0: resolved "https://registry.yarnpkg.com/is-hexadecimal/-/is-hexadecimal-1.0.2.tgz#b6e710d7d07bb66b98cb8cece5c9b4921deeb835" integrity sha512-but/G3sapV3MNyqiDBLrOi4x8uCIw0RY3o/Vb5GT0sMFHrVV7731wFSVy41T5FO1og7G0gXLJh0MkgPRouko/A== +is-installed-globally@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/is-installed-globally/-/is-installed-globally-0.1.0.tgz#0dfd98f5a9111716dd535dda6492f67bf3d25a80" + integrity sha1-Df2Y9akRFxbdU13aZJL2e/PSWoA= + dependencies: + global-dirs "^0.1.0" + is-path-inside "^1.0.0" + +is-js-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-js-type/-/is-js-type-2.0.0.tgz#73617006d659b4eb4729bba747d28782df0f7e22" + integrity sha1-c2FwBtZZtOtHKbunR9KHgt8PfiI= + dependencies: + js-types "^1.0.0" + +is-npm@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-npm/-/is-npm-1.0.0.tgz#f2fb63a65e4905b406c86072765a1a4dc793b9f4" + integrity sha1-8vtjpl5JBbQGyGBydloaTceTufQ= + is-number@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195" @@ -2138,12 +2246,27 @@ is-number@^3.0.0: dependencies: kind-of "^3.0.2" +is-obj-prop@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-obj-prop/-/is-obj-prop-1.0.0.tgz#b34de79c450b8d7c73ab2cdf67dc875adb85f80e" + integrity sha1-s03nnEULjXxzqyzfZ9yHWtuF+A4= + dependencies: + lowercase-keys "^1.0.0" + obj-props "^1.0.0" + is-obj@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f" integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8= -is-plain-obj@^1.1.0: +is-path-inside@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-1.0.1.tgz#8ef5b7de50437a3fdca6b4e865ef7aa55cb48036" + integrity sha1-jvW33lBDej/cprToZe96pVy0gDY= + dependencies: + path-is-inside "^1.0.1" + +is-plain-obj@^1.0.0, is-plain-obj@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e" integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4= @@ -2160,22 +2283,33 @@ is-promise@^2.1.0: resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa" integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o= +is-proto-prop@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/is-proto-prop/-/is-proto-prop-2.0.0.tgz#99ab2863462e44090fd083efd1929058f9d935e1" + integrity sha512-jl3NbQ/fGLv5Jhan4uX+Ge9ohnemqyblWVVCpAvtTQzNFvV2xhJq+esnkIbYQ9F1nITXoLfDDQLp7LBw/zzncg== + dependencies: + lowercase-keys "^1.0.0" + proto-props "^2.0.0" + +is-redirect@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-redirect/-/is-redirect-1.0.0.tgz#1d03dded53bd8db0f30c26e4f95d36fc7c87dc24" + integrity sha1-HQPd7VO9jbDzDCbk+V02/HyH3CQ= + is-regexp@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069" integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk= -is-relative@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-relative/-/is-relative-1.0.0.tgz#a1bb6935ce8c5dba1e8b9754b9b2dcc020e2260d" - integrity sha512-Kw/ReK0iqwKeu0MITLFuj0jbPAmEiOsIwyIXvvbfa6QfmN9pkD1M+8pdk7Rl/dTKbH34/XBFMbgD4iMJhLQbGA== - dependencies: - is-unc-path "^1.0.0" - -is-resolvable@^1.0.0: +is-retry-allowed@^1.0.0: version "1.1.0" - resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88" - integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg== + resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34" + integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ= + +is-stream@^1.0.0, is-stream@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44" + integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ= is-supported-regexp-flag@^1.0.0: version "1.0.1" @@ -2187,13 +2321,6 @@ is-typedarray@~1.0.0: resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= -is-unc-path@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/is-unc-path/-/is-unc-path-1.0.0.tgz#d731e8898ed090a12c352ad2eaed5095ad322c9d" - integrity sha512-mrGpVd0fs7WWLfVsStvgF6iEJnbjDFZh9/emhRDcGWTduTfNHd9CHeUwH3gYIjdbwo4On6hunkztwOaAw0yllQ== - dependencies: - unc-path-regex "^0.1.2" - is-utf8@^0.2.0: version "0.2.1" resolved "https://registry.yarnpkg.com/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72" @@ -2204,7 +2331,7 @@ is-whitespace-character@^1.0.0: resolved "https://registry.yarnpkg.com/is-whitespace-character/-/is-whitespace-character-1.0.2.tgz#ede53b4c6f6fb3874533751ec9280d01928d03ed" integrity sha512-SzM+T5GKUCtLhlHFKt2SDAX2RFzfS6joT91F2/WSi9LxgFdsnhfPK/UIA+JhRR2xuyLdrCys2PiFDrtn1fU5hQ== -is-windows@^1.0.1, is-windows@^1.0.2: +is-windows@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== @@ -2214,12 +2341,12 @@ is-word-character@^1.0.0: resolved "https://registry.yarnpkg.com/is-word-character/-/is-word-character-1.0.2.tgz#46a5dac3f2a1840898b91e576cd40d493f3ae553" integrity sha512-T3FlsX8rCHAH8e7RE7PfOPZVFQlcV3XRF9eOOBQ1uf70OxO7CjjSOjeImMPCADBdYWcStAbVbYvJ1m2D3tb+EA== -isarray@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/isarray/-/isarray-0.0.1.tgz#8a18acfca9a8f4177e09abfc6038939b05d1eedf" - integrity sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8= +is-wsl@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d" + integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0= -isarray@1.0.0, isarray@~1.0.0: +isarray@1.0.0, isarray@^1.0.0, isarray@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= @@ -2251,20 +2378,20 @@ js-base64@^2.1.8: resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.1.tgz#1efa39ef2c5f7980bb1784ade4a8af2de3291121" integrity sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw== -js-tokens@^3.0.2: - version "3.0.2" - resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" - integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= - js-tokens@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== -js-yaml@^3.9.0, js-yaml@^3.9.1: - version "3.12.1" - resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.1.tgz#295c8632a18a23e054cf5c9d3cecafe678167600" - integrity sha512-um46hB9wNOKlwkHgiuyEVAybXBjwFUV0Z/RaHJblRd9DXltue9FTYvzCr9ErQrK9Adz5MU4gHWVaNUfdmrC8qA== +js-types@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/js-types/-/js-types-1.0.0.tgz#d242e6494ed572ad3c92809fc8bed7f7687cbf03" + integrity sha1-0kLmSU7Vcq08koCfyL7X92h8vwM= + +js-yaml@^3.12.0, js-yaml@^3.9.0: + version "3.12.2" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.12.2.tgz#ef1d067c5a9d9cb65bd72f285b5d8105c77f14fc" + integrity sha512-QHn/Lh/7HhZ/Twc7vJYQTkjuCa0kaCcDcjK5Zlk2rvnUpy7DxMJ23+Jc2dcyvltwQVg1nygAVlB2oRDFHoRS5Q== dependencies: argparse "^1.0.7" esprima "^4.0.0" @@ -2284,11 +2411,6 @@ json-parse-better-errors@^1.0.1: resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9" integrity sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw== -json-schema-traverse@^0.3.0: - version "0.3.1" - resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz#349a6d44c53a51de89b40805c5d5e59b417d3340" - integrity sha1-NJptRMU6Ud6JtAgFxdXlm0F9M0A= - json-schema-traverse@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" @@ -2316,6 +2438,13 @@ json5@^2.1.0: dependencies: minimist "^1.2.0" +jsonfile@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" + integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= + optionalDependencies: + graceful-fs "^4.1.6" + jsprim@^1.2.2: version "1.4.1" resolved "https://registry.yarnpkg.com/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2" @@ -2350,18 +2479,18 @@ kind-of@^6.0.0, kind-of@^6.0.2: resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-6.0.2.tgz#01146b36a6218e64e58f3a8d66de5d7fc6f6d051" integrity sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA== -klaw-sync@^4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/klaw-sync/-/klaw-sync-4.0.0.tgz#7785692ea1a320ac3dda7a6c0c22b33a30aa3b3f" - integrity sha512-go/5tXbgLkgwxQ2c2ewaMen6TpQtI9fTzzmTdlSGK8XxKcFSsJvn/Sgn75Vg+mOJwkKVPrqLw2Xq7x/zP1v7PQ== - dependencies: - graceful-fs "^4.1.11" - known-css-properties@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/known-css-properties/-/known-css-properties-0.11.0.tgz#0da784f115ea77c76b81536d7052e90ee6c86a8a" integrity sha512-bEZlJzXo5V/ApNNa5z375mJC6Nrz4vG43UgcSCrg2OHC+yuB6j0iDSrY7RQ/+PRofFB03wNIIt9iXIVLr4wc7w== +latest-version@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/latest-version/-/latest-version-3.1.0.tgz#a205383fea322b33b5ae3b18abee0dc2f356ee15" + integrity sha1-ogU4P+oyKzO1rjsYq+4NwvNW7hU= + dependencies: + package-json "^4.0.0" + lcid@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/lcid/-/lcid-1.0.0.tgz#308accafa0bc483a3867b4b6f2b9506251d1b835" @@ -2382,19 +2511,10 @@ levn@^0.3.0, levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" -liftoff@^2.1.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/liftoff/-/liftoff-2.5.0.tgz#2009291bb31cea861bbf10a7c15a28caf75c31ec" - integrity sha1-IAkpG7Mc6oYbvxCnwVooyvdcMew= - dependencies: - extend "^3.0.0" - findup-sync "^2.0.0" - fined "^1.0.1" - flagged-respawn "^1.0.0" - is-plain-object "^2.0.4" - object.map "^1.0.0" - rechoir "^0.6.2" - resolve "^1.1.7" +line-column-path@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/line-column-path/-/line-column-path-1.0.0.tgz#383b83fca8488faa7a59940ebf28b82058c16c55" + integrity sha1-ODuD/KhIj6p6WZQOvyi4IFjBbFU= load-json-file@^1.0.0: version "1.1.0" @@ -2407,6 +2527,16 @@ load-json-file@^1.0.0: pinkie-promise "^2.0.0" strip-bom "^2.0.0" +load-json-file@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-2.0.0.tgz#7947e42149af80d696cbf797bcaabcfe1fe29ca8" + integrity sha1-eUfkIUmvgNaWy/eXvKq8/h/inKg= + dependencies: + graceful-fs "^4.1.2" + parse-json "^2.2.0" + pify "^2.0.0" + strip-bom "^3.0.0" + load-json-file@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/load-json-file/-/load-json-file-4.0.0.tgz#2f5f45ab91e33216234fd53adab668eb4ec0993b" @@ -2425,130 +2555,69 @@ locate-path@^2.0.0: p-locate "^2.0.0" path-exists "^3.0.0" -lodash._basecopy@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz#8da0e6a876cf344c0ad8a54882111dd3c5c7ca36" - integrity sha1-jaDmqHbPNEwK2KVIghEd08XHyjY= - -lodash._basetostring@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz#d1861d877f824a52f669832dcaf3ee15566a07d5" - integrity sha1-0YYdh3+CSlL2aYMtyvPuFVZqB9U= - -lodash._basevalues@^3.0.0: +locate-path@^3.0.0: version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz#5b775762802bde3d3297503e26300820fdf661b7" - integrity sha1-W3dXYoAr3j0yl1A+JjAIIP32Ybc= - -lodash._getnative@^3.0.0: - version "3.9.1" - resolved "https://registry.yarnpkg.com/lodash._getnative/-/lodash._getnative-3.9.1.tgz#570bc7dede46d61cdcde687d65d3eecbaa3aaff5" - integrity sha1-VwvH3t5G1hzc3mh9ZdPuy6o6r/U= - -lodash._isiterateecall@^3.0.0: - version "3.0.9" - resolved "https://registry.yarnpkg.com/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz#5203ad7ba425fae842460e696db9cf3e6aac057c" - integrity sha1-UgOte6Ql+uhCRg5pbbnPPmqsBXw= - -lodash._reescape@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._reescape/-/lodash._reescape-3.0.0.tgz#2b1d6f5dfe07c8a355753e5f27fac7f1cde1616a" - integrity sha1-Kx1vXf4HyKNVdT5fJ/rH8c3hYWo= - -lodash._reevaluate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz#58bc74c40664953ae0b124d806996daca431e2ed" - integrity sha1-WLx0xAZklTrgsSTYBpltrKQx4u0= - -lodash._reinterpolate@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" - integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0= - -lodash._root@^3.0.0: - version "3.0.1" - resolved "https://registry.yarnpkg.com/lodash._root/-/lodash._root-3.0.1.tgz#fba1c4524c19ee9a5f8136b4609f017cf4ded692" - integrity sha1-+6HEUkwZ7ppfgTa0YJ8BfPTe1pI= + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e" + integrity sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A== + dependencies: + p-locate "^3.0.0" + path-exists "^3.0.0" lodash.assign@^4.2.0: version "4.2.0" resolved "https://registry.yarnpkg.com/lodash.assign/-/lodash.assign-4.2.0.tgz#0d99f3ccd7a6d261d19bdaeb9245005d285808e7" integrity sha1-DZnzzNem0mHRm9rrkkUAXShYCOc= +lodash.camelcase@^4.1.1: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY= + lodash.clonedeep@^4.3.2: version "4.5.0" resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= -lodash.escape@^3.0.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/lodash.escape/-/lodash.escape-3.2.0.tgz#995ee0dc18c1b48cc92effae71a10aab5b487698" - integrity sha1-mV7g3BjBtIzJLv+ucaEKq1tIdpg= - dependencies: - lodash._root "^3.0.0" +lodash.get@^4.4.2: + version "4.4.2" + resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99" + integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk= -lodash.isarguments@^3.0.0: - version "3.1.0" - resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a" - integrity sha1-L1c9hcaiQon/AGY7SRwdM4/zRYo= +lodash.isequal@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0" + integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA= -lodash.isarray@^3.0.0: - version "3.0.4" - resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55" - integrity sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U= +lodash.kebabcase@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz#8489b1cb0d29ff88195cceca448ff6d6cc295c36" + integrity sha1-hImxyw0p/4gZXM7KRI/21swpXDY= -lodash.keys@^3.0.0: - version "3.1.2" - resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a" - integrity sha1-TbwEcrFWvlCgsoaFXRvQsMZWCYo= - dependencies: - lodash._getnative "^3.0.0" - lodash.isarguments "^3.0.0" - lodash.isarray "^3.0.0" - -lodash.mergewith@^4.6.0: +lodash.mergewith@^4.6.0, lodash.mergewith@^4.6.1: version "4.6.1" resolved "https://registry.yarnpkg.com/lodash.mergewith/-/lodash.mergewith-4.6.1.tgz#639057e726c3afbdb3e7d42741caa8d6e4335927" integrity sha512-eWw5r+PYICtEBgrBE5hhlT6aAa75f411bgDz/ZL2KZqYV03USvucsxcHUIlGTDTECs1eunpI7HOV7U+WLDvNdQ== -lodash.restparam@^3.0.0: - version "3.6.1" - resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805" - integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU= +lodash.snakecase@^4.0.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d" + integrity sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40= -lodash.template@^3.0.0: - version "3.6.2" - resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-3.6.2.tgz#f8cdecc6169a255be9098ae8b0c53d378931d14f" - integrity sha1-+M3sxhaaJVvpCYrosMU9N4kx0U8= - dependencies: - lodash._basecopy "^3.0.0" - lodash._basetostring "^3.0.0" - lodash._basevalues "^3.0.0" - lodash._isiterateecall "^3.0.0" - lodash._reinterpolate "^3.0.0" - lodash.escape "^3.0.0" - lodash.keys "^3.0.0" - lodash.restparam "^3.0.0" - lodash.templatesettings "^3.0.0" +lodash.upperfirst@^4.2.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz#1365edf431480481ef0d1c68957a5ed99d49f7ce" + integrity sha1-E2Xt9DFIBIHvDRxolXpe2Z1J984= -lodash.templatesettings@^3.0.0: - version "3.1.1" - resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-3.1.1.tgz#fb307844753b66b9f1afa54e262c745307dba8e5" - integrity sha1-+zB4RHU7Zrnxr6VOJix0UwfbqOU= - dependencies: - lodash._reinterpolate "^3.0.0" - lodash.escape "^3.0.0" +lodash.zip@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/lodash.zip/-/lodash.zip-4.2.0.tgz#ec6662e4896408ed4ab6c542a3990b72cc080020" + integrity sha1-7GZi5IlkCO1KtsVCo5kLcswIACA= -lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.3.0, lodash@~4.17.10: +lodash@^4.0.0, lodash@^4.13.1, lodash@^4.17.11, lodash@^4.17.4, lodash@~4.17.10: version "4.17.11" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== -lodash@~1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/lodash/-/lodash-1.0.2.tgz#8f57560c83b59fc270bd3d561b690043430e2551" - integrity sha1-j1dWDIO1n8JwvT1WG2kAQ0MOJVE= - log-symbols@^2.0.0, log-symbols@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a" @@ -2569,10 +2638,10 @@ loud-rejection@^1.0.0: currently-unhandled "^0.4.1" signal-exit "^3.0.0" -lru-cache@2: - version "2.7.3" - resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-2.7.3.tgz#6d4524e8b955f95d4f5b58851ce21dd72fb4e952" - integrity sha1-bUUk6LlV+V1PW1iFHOId1y+06VI= +lowercase-keys@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f" + integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA== lru-cache@^4.0.1: version "4.1.5" @@ -2582,14 +2651,14 @@ lru-cache@^4.0.1: pseudomap "^1.0.2" yallist "^2.1.2" -make-iterator@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/make-iterator/-/make-iterator-1.0.1.tgz#29b33f312aa8f547c4a5e490f56afcec99133ad6" - integrity sha512-pxiuXh0iVEq7VM7KMIhs5gxsfxCux2URptUQaXo4iZZJxBAzTPOLE2BumO5dbfVYq/hBJFBR/a1mFDmOx5AGmw== +make-dir@^1.0.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c" + integrity sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ== dependencies: - kind-of "^6.0.2" + pify "^3.0.0" -map-cache@^0.2.0, map-cache@^0.2.2: +map-cache@^0.2.2: version "0.2.2" resolved "https://registry.yarnpkg.com/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf" integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8= @@ -2669,7 +2738,7 @@ merge2@^1.2.3: resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5" integrity sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA== -micromatch@^3.0.4, micromatch@^3.1.10: +micromatch@^3.1.10, micromatch@^3.1.4: version "3.1.10" resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23" integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg== @@ -2688,45 +2757,30 @@ micromatch@^3.0.4, micromatch@^3.1.10: snapdragon "^0.8.1" to-regex "^3.0.2" -mime-db@~1.37.0: - version "1.37.0" - resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.37.0.tgz#0b6a0ce6fdbe9576e25f1f2d2fde8830dc0ad0d8" - integrity sha512-R3C4db6bgQhlIhPU48fUtdVmKnflq+hRdad7IyKhtFj06VPNVdk2RhiYL3UjQIlso8L+YxAtFkobT0VK+S/ybg== +mime-db@~1.38.0: + version "1.38.0" + resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad" + integrity sha512-bqVioMFFzc2awcdJZIzR3HjZFX20QhilVS7hytkKrv7xFAn8bM1gzc/FOX2awLISvWe0PV8ptFKcon+wZ5qYkg== mime-types@^2.1.12, mime-types@~2.1.19: - version "2.1.21" - resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.21.tgz#28995aa1ecb770742fe6ae7e58f9181c744b3f96" - integrity sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg== + version "2.1.22" + resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.22.tgz#fe6b355a190926ab7698c9a0556a11199b2199bd" + integrity sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog== dependencies: - mime-db "~1.37.0" + mime-db "~1.38.0" mimic-fn@^1.0.0: version "1.2.0" resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022" integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ== -minimatch@^2.0.1: - version "2.0.10" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-2.0.10.tgz#8d087c39c6b38c001b97fca7ce6d0e1e80afbac7" - integrity sha1-jQh8OcazjAAbl/ynzm0OHoCvusc= - dependencies: - brace-expansion "^1.0.0" - -minimatch@^3.0.2, minimatch@^3.0.4, minimatch@~3.0.2: +minimatch@^3.0.0, minimatch@^3.0.4, minimatch@~3.0.2: version "3.0.4" resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== dependencies: brace-expansion "^1.1.7" -minimatch@~0.2.11: - version "0.2.14" - resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-0.2.14.tgz#c74e780574f63c6f9a090e90efbe6ef53a6a756a" - integrity sha1-x054BXT2PG+aCQ6Q775u9TpqdWo= - dependencies: - lru-cache "2" - sigmund "~1.0.0" - minimist-options@^3.0.1: version "3.0.2" resolved "https://registry.yarnpkg.com/minimist-options/-/minimist-options-3.0.2.tgz#fba4c8191339e13ecf4d61beb03f070103f3d954" @@ -2745,11 +2799,26 @@ minimist@1.1.x: resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.1.3.tgz#3bedfd91a92d39016fcfaa1c681e8faa1a1efda8" integrity sha1-O+39kaktOQFvz6ocaB6Pqhoe/ag= -minimist@^1.1.0, minimist@^1.1.3, minimist@^1.2.0: +minimist@^1.1.3, minimist@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= +minipass@^2.2.1, minipass@^2.3.4: + version "2.3.5" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" + integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA== + dependencies: + safe-buffer "^5.1.2" + yallist "^3.0.0" + +minizlib@^1.1.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" + integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA== + dependencies: + minipass "^2.2.1" + mixin-deep@^1.2.0: version "1.3.1" resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe" @@ -2775,19 +2844,32 @@ ms@^2.1.1: resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a" integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg== -multipipe@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/multipipe/-/multipipe-0.1.2.tgz#2a8f2ddf70eed564dff2d57f1e1a137d9f05078b" - integrity sha1-Ko8t33Du1WTf8tV/HhoTfZ8FB4s= +multimatch@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-2.1.0.tgz#9c7906a22fb4c02919e2f5f75161b4cdbd4b2a2b" + integrity sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis= dependencies: - duplexer2 "0.0.2" + array-differ "^1.0.0" + array-union "^1.0.1" + arrify "^1.0.0" + minimatch "^3.0.0" + +multimatch@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/multimatch/-/multimatch-3.0.0.tgz#0e2534cc6bc238d9ab67e1b9cd5fcd85a6dbf70b" + integrity sha512-22foS/gqQfANZ3o+W7ST2x25ueHDVNWl/b9OlGcLpy/iKxjCpvcNCM51YCenUi7Mt/jAjjqv8JwZRs8YP5sRjA== + dependencies: + array-differ "^2.0.3" + array-union "^1.0.2" + arrify "^1.0.1" + minimatch "^3.0.4" mute-stream@0.0.7: version "0.0.7" resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab" integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s= -nan@^2.10.0: +nan@^2.10.0, nan@^2.9.2: version "2.12.1" resolved "https://registry.yarnpkg.com/nan/-/nan-2.12.1.tgz#7b1aa193e9aa86057e3c7bbd0ac448e770925552" integrity sha512-JY7V6lRkStKcKTvHO5NVSQRv+RV+FIL5pvDoLiAtSL9pKlC5x9PKQcZDsq7m4FO4d57mkhC6Z+QhAh3Jdk5JFw== @@ -2809,16 +2891,25 @@ nanomatch@^1.2.9: snapdragon "^0.8.1" to-regex "^3.0.1" -natives@^1.1.0: - version "1.1.6" - resolved "https://registry.yarnpkg.com/natives/-/natives-1.1.6.tgz#a603b4a498ab77173612b9ea1acdec4d980f00bb" - integrity sha512-6+TDFewD4yxY14ptjKaS63GVdtKiES1pTPyxn9Jb0rBqPMZ7VcCiooEhPNsr+mqHtMGxa/5c/HhcC4uPEUw/nA== - natural-compare@^1.4.0: version "1.4.0" resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= +needle@^2.2.1: + version "2.2.4" + resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e" + integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA== + dependencies: + debug "^2.1.2" + iconv-lite "^0.4.4" + sax "^1.2.4" + +nice-try@^1.0.4: + version "1.0.5" + resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" + integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== + node-gyp@^3.8.0: version "3.8.0" resolved "https://registry.yarnpkg.com/node-gyp/-/node-gyp-3.8.0.tgz#540304261c330e80d0d5edce253a68cb3964218c" @@ -2837,14 +2928,30 @@ node-gyp@^3.8.0: tar "^2.0.0" which "1" -node-releases@^1.1.3: - version "1.1.6" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.6.tgz#47d160033e24a64e79487a62de63cf691052ec54" - integrity sha512-lODUVHEIZutZx+TDdOk47qLik8FJMXzJ+WnyUGci1MTvTOyzZrz5eVPIIpc5Hb3NfHZGeGHeuwrRYVI1PEITWg== +node-pre-gyp@^0.10.0: + version "0.10.3" + resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc" + integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A== + dependencies: + detect-libc "^1.0.2" + mkdirp "^0.5.1" + needle "^2.2.1" + nopt "^4.0.1" + npm-packlist "^1.1.6" + npmlog "^4.0.2" + rc "^1.2.7" + rimraf "^2.6.1" + semver "^5.3.0" + tar "^4" + +node-releases@^1.1.8: + version "1.1.9" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.9.tgz#70d0985ec4bf7de9f08fc481f5dae111889ca482" + integrity sha512-oic3GT4OtbWWKfRolz5Syw0Xus0KRFxeorLNj0s93ofX6PWyuzKjsiGxsCtWktBwwmTF6DdRRf2KreGqeOk5KA== dependencies: semver "^5.3.0" -node-sass@^4.8.3, node-sass@^4.9.0: +node-sass@^4.11.0: version "4.11.0" resolved "https://registry.yarnpkg.com/node-sass/-/node-sass-4.11.0.tgz#183faec398e9cbe93ba43362e2768ca988a6369a" integrity sha512-bHUdHTphgQJZaF1LASx0kAviPH7sGlcyNhWade4eVIpFp6tsn7SV8xNMTbsQFpEV9VXpnwTTnNYlfsZXgGgmkA== @@ -2869,6 +2976,22 @@ node-sass@^4.8.3, node-sass@^4.9.0: stdout-stream "^1.4.0" "true-case-path" "^1.0.2" +nodemon@^1.18.10: + version "1.18.10" + resolved "https://registry.yarnpkg.com/nodemon/-/nodemon-1.18.10.tgz#3ba63f64eb4c283cf3e4f75f30817e9d4f393afe" + integrity sha512-we51yBb1TfEvZamFchRgcfLbVYgg0xlGbyXmOtbBzDwxwgewYS/YbZ5tnlnsH51+AoSTTsT3A2E/FloUbtH8cQ== + dependencies: + chokidar "^2.1.0" + debug "^3.1.0" + ignore-by-default "^1.0.1" + minimatch "^3.0.4" + pstree.remy "^1.1.6" + semver "^5.5.0" + supports-color "^5.2.0" + touch "^3.1.0" + undefsafe "^2.0.2" + update-notifier "^2.5.0" + "nopt@2 || 3": version "3.0.6" resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9" @@ -2876,16 +2999,43 @@ node-sass@^4.8.3, node-sass@^4.9.0: dependencies: abbrev "1" +nopt@^4.0.1: + version "4.0.1" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d" + integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00= + dependencies: + abbrev "1" + osenv "^0.1.4" + +nopt@~1.0.10: + version "1.0.10" + resolved "https://registry.yarnpkg.com/nopt/-/nopt-1.0.10.tgz#6ddd21bd2a31417b92727dd585f8a6f37608ebee" + integrity sha1-bd0hvSoxQXuScn3Vhfim83YI6+4= + dependencies: + abbrev "1" + normalize-package-data@^2.3.2, normalize-package-data@^2.3.4: - version "2.4.2" - resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.4.2.tgz#6b2abd85774e51f7936f1395e45acb905dc849b2" - integrity sha512-YcMnjqeoUckXTPKZSAsPjUPLxH85XotbpqK3w4RyCwdFQSU5FxxBys8buehkSfg0j9fKvV1hn7O0+8reEgkAiw== + version "2.5.0" + resolved "https://registry.yarnpkg.com/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8" + integrity sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA== dependencies: hosted-git-info "^2.1.4" - is-builtin-module "^1.0.0" + resolve "^1.10.0" semver "2 || 3 || 4 || 5" validate-npm-package-license "^3.0.1" +normalize-path@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9" + integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk= + dependencies: + remove-trailing-separator "^1.0.1" + +normalize-path@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" + integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== + normalize-range@^0.1.2: version "0.1.2" resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" @@ -2896,7 +3046,27 @@ normalize-selector@^0.2.0: resolved "https://registry.yarnpkg.com/normalize-selector/-/normalize-selector-0.2.0.tgz#d0b145eb691189c63a78d201dc4fdb1293ef0c03" integrity sha1-0LFF62kRicY6eNIB3E/bEpPvDAM= -"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0: +npm-bundled@^1.0.1: + version "1.0.6" + resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" + integrity sha512-8/JCaftHwbd//k6y2rEWp6k1wxVfpFzB6t1p825+cUb7Ym2XQfhwIC5KwhrvzZRJu+LtDE585zVaS32+CGtf0g== + +npm-packlist@^1.1.6: + version "1.4.1" + resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc" + integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw== + dependencies: + ignore-walk "^3.0.1" + npm-bundled "^1.0.1" + +npm-run-path@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f" + integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8= + dependencies: + path-key "^2.0.0" + +"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.0, npmlog@^4.0.2: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== @@ -2921,10 +3091,10 @@ oauth-sign@~0.9.0: resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455" integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ== -object-assign@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-3.0.0.tgz#9bedd5ca0897949bca47e7ff408062d549f587f2" - integrity sha1-m+3VygiXlJvKR+f/QIBi1Un1h/I= +obj-props@^1.0.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/obj-props/-/obj-props-1.1.0.tgz#626313faa442befd4a44e9a02c3cb6bde937b511" + integrity sha1-YmMT+qRCvv1KROmgLDy2vek3tRE= object-assign@^4.0.1, object-assign@^4.1.0: version "4.1.1" @@ -2947,25 +3117,7 @@ object-visit@^1.0.0: dependencies: isobject "^3.0.0" -object.defaults@^1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/object.defaults/-/object.defaults-1.1.0.tgz#3a7f868334b407dea06da16d88d5cd29e435fecf" - integrity sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8= - dependencies: - array-each "^1.0.1" - array-slice "^1.0.0" - for-own "^1.0.0" - isobject "^3.0.0" - -object.map@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/object.map/-/object.map-1.0.1.tgz#cf83e59dc8fcc0ad5f4250e1f78b3b81bd801d37" - integrity sha1-z4Plncj8wK1fQlDh94s7gb2AHTc= - dependencies: - for-own "^1.0.0" - make-iterator "^1.0.0" - -object.pick@^1.2.0, object.pick@^1.3.0: +object.pick@^1.3.0: version "1.3.0" resolved "https://registry.yarnpkg.com/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747" integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c= @@ -2979,13 +3131,6 @@ once@^1.3.0: dependencies: wrappy "1" -once@~1.3.0: - version "1.3.3" - resolved "https://registry.yarnpkg.com/once/-/once-1.3.3.tgz#b2e261557ce4c314ec8304f3fa82663e4297ca20" - integrity sha1-suJhVXzkwxTsgwTz+oJmPkKXyiA= - dependencies: - wrappy "1" - onetime@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4" @@ -2993,6 +3138,22 @@ onetime@^2.0.0: dependencies: mimic-fn "^1.0.0" +open-editor@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/open-editor/-/open-editor-1.2.0.tgz#75ca23f0b74d4b3f55ee0b8a4e0f5c2325eb775f" + integrity sha1-dcoj8LdNSz9V7guKTg9cIyXrd18= + dependencies: + env-editor "^0.3.1" + line-column-path "^1.0.0" + opn "^5.0.0" + +opn@^5.0.0: + version "5.4.0" + resolved "https://registry.yarnpkg.com/opn/-/opn-5.4.0.tgz#cb545e7aab78562beb11aa3bfabc7042e1761035" + integrity sha512-YF9MNdVy/0qvJvDtunAOzFw9iasOQHpVthTCvGzxt61Il64AYSGdK+rYwld7NAfk9qJ7dt+hymBNSc9LNYS+Sw== + dependencies: + is-wsl "^1.1.0" + optionator@^0.8.2: version "0.8.2" resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64" @@ -3005,20 +3166,6 @@ optionator@^0.8.2: type-check "~0.3.2" wordwrap "~1.0.0" -orchestrator@^0.3.0: - version "0.3.8" - resolved "https://registry.yarnpkg.com/orchestrator/-/orchestrator-0.3.8.tgz#14e7e9e2764f7315fbac184e506c7aa6df94ad7e" - integrity sha1-FOfp4nZPcxX7rBhOUGx6pt+UrX4= - dependencies: - end-of-stream "~0.1.5" - sequencify "~0.0.7" - stream-consume "~0.1.0" - -ordered-read-streams@^0.1.0: - version "0.1.0" - resolved "https://registry.yarnpkg.com/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz#fd565a9af8eb4473ba69b6ed8a34352cb552f126" - integrity sha1-/VZamvjrRHO6abbtijQ1LLVS8SY= - os-homedir@^1.0.0: version "1.0.2" resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3" @@ -3036,7 +3183,7 @@ os-tmpdir@^1.0.0, os-tmpdir@~1.0.2: resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ= -osenv@0: +osenv@0, osenv@^0.1.4: version "0.1.5" resolved "https://registry.yarnpkg.com/osenv/-/osenv-0.1.5.tgz#85cdfafaeb28e8677f416e287592b5f3f49ea410" integrity sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g== @@ -3044,6 +3191,11 @@ osenv@0: os-homedir "^1.0.0" os-tmpdir "^1.0.0" +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= + p-limit@^1.1.0: version "1.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" @@ -3051,6 +3203,13 @@ p-limit@^1.1.0: dependencies: p-try "^1.0.0" +p-limit@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.2.0.tgz#417c9941e6027a9abcba5092dd2904e255b5fbc2" + integrity sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ== + dependencies: + p-try "^2.0.0" + p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" @@ -3058,15 +3217,44 @@ p-locate@^2.0.0: dependencies: p-limit "^1.1.0" +p-locate@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4" + integrity sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ== + dependencies: + p-limit "^2.0.0" + p-try@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= +p-try@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.0.0.tgz#85080bb87c64688fa47996fe8f7dfbe8211760b1" + integrity sha512-hMp0onDKIajHfIkdRk3P4CdCmErkYAxxDtP3Wx/4nZ3aGlau2VKh3mZpcuFkH27WQkL/3WBCPOktzA9ZOAnMQQ== + +package-json@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/package-json/-/package-json-4.0.1.tgz#8869a0401253661c4c4ca3da6c2121ed555f5eed" + integrity sha1-iGmgQBJTZhxMTKPabCEh7VVfXu0= + dependencies: + got "^6.7.1" + registry-auth-token "^3.0.1" + registry-url "^3.0.3" + semver "^5.1.0" + +parent-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.0.tgz#df250bdc5391f4a085fb589dad761f5ad6b865b5" + integrity sha512-8Mf5juOMmiE4FcmzYc4IaiS9L3+9paz2KOiXzkRviCP6aDmN49Hz6EMWz0lGNp9pX80GvvAuLADtyGfW/Em3TA== + dependencies: + callsites "^3.0.0" + parse-entities@^1.0.2, parse-entities@^1.1.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.0.tgz#9deac087661b2e36814153cb78d7e54a4c5fd6f4" - integrity sha512-XXtDdOPLSB0sHecbEapQi6/58U/ODj/KWfIXmmMCJF/eRn8laX6LZbOyioMoETOOJoWRW8/qTSl5VQkUIfKM5g== + version "1.2.1" + resolved "https://registry.yarnpkg.com/parse-entities/-/parse-entities-1.2.1.tgz#2c761ced065ba7dc68148580b5a225e4918cdd69" + integrity sha512-NBWYLQm1KSoDKk7GAHyioLTvCZ5QjdH/ASBBQTD3iLiAWJXS5bg1jEWI8nIJ+vgVvsceBVBcDGRWSo0KVQBvvg== dependencies: character-entities "^1.0.0" character-entities-legacy "^1.0.0" @@ -3075,15 +3263,6 @@ parse-entities@^1.0.2, parse-entities@^1.1.0: is-decimal "^1.0.0" is-hexadecimal "^1.0.0" -parse-filepath@^1.0.1: - version "1.0.2" - resolved "https://registry.yarnpkg.com/parse-filepath/-/parse-filepath-1.0.2.tgz#a632127f53aaf3d15876f5872f3ffac763d6c891" - integrity sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE= - dependencies: - is-absolute "^1.0.0" - map-cache "^0.2.0" - path-root "^0.1.1" - parse-json@^2.2.0: version "2.2.0" resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9" @@ -3099,16 +3278,6 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" -parse-node-version@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/parse-node-version/-/parse-node-version-1.0.1.tgz#e2b5dbede00e7fa9bc363607f53327e8b073189b" - integrity sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA== - -parse-passwd@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" - integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY= - pascalcase@^0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14" @@ -3136,28 +3305,21 @@ path-is-absolute@^1.0.0: resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= -path-is-inside@^1.0.2: +path-is-inside@^1.0.1, path-is-inside@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/path-is-inside/-/path-is-inside-1.0.2.tgz#365417dede44430d1c11af61027facf074bdfc53" integrity sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM= +path-key@^2.0.0, path-key@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40" + integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A= + path-parse@^1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== -path-root-regex@^0.1.0: - version "0.1.2" - resolved "https://registry.yarnpkg.com/path-root-regex/-/path-root-regex-0.1.2.tgz#bfccdc8df5b12dc52c8b43ec38d18d72c04ba96d" - integrity sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0= - -path-root@^0.1.1: - version "0.1.1" - resolved "https://registry.yarnpkg.com/path-root/-/path-root-0.1.1.tgz#9a4a6814cac1c0cd73360a95f32083c8ea4745b7" - integrity sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc= - dependencies: - path-root-regex "^0.1.0" - path-type@^1.0.0: version "1.1.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441" @@ -3167,6 +3329,13 @@ path-type@^1.0.0: pify "^2.0.0" pinkie-promise "^2.0.0" +path-type@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-2.0.0.tgz#f012ccb8415b7096fc2daa1054c3d72389594c73" + integrity sha1-8BLMuEFbcJb8LaoQVMPXI4lZTHM= + dependencies: + pify "^2.0.0" + path-type@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f" @@ -3206,20 +3375,41 @@ pinkie@^2.0.0: resolved "https://registry.yarnpkg.com/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870" integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA= -plugin-error@^1.0.0, plugin-error@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/plugin-error/-/plugin-error-1.0.1.tgz#77016bd8919d0ac377fdcdd0322328953ca5781c" - integrity sha512-L1zP0dk7vGweZME2i+EeakvUNqSrdiI3F91TwEoYiGrAfUXmVv6fJIq4g82PAXxNsWOp0J7ZqQy/3Szz0ajTxA== +pkg-conf@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/pkg-conf/-/pkg-conf-2.1.0.tgz#2126514ca6f2abfebd168596df18ba57867f0058" + integrity sha1-ISZRTKbyq/69FoWW3xi6V4Z/AFg= dependencies: - ansi-colors "^1.0.1" - arr-diff "^4.0.0" - arr-union "^3.1.0" - extend-shallow "^3.0.2" + find-up "^2.0.0" + load-json-file "^4.0.0" -pluralize@^7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-7.0.0.tgz#298b89df8b93b0221dbf421ad2b1b1ea23fc6777" - integrity sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow== +pkg-dir@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b" + integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s= + dependencies: + find-up "^2.1.0" + +pkg-dir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3" + integrity sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw== + dependencies: + find-up "^3.0.0" + +pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" + integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= + dependencies: + find-up "^2.1.0" + +plur@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/plur/-/plur-3.0.1.tgz#268652d605f816699b42b86248de73c9acd06a7c" + integrity sha512-lJl0ojUynAM1BZn58Pas2WT/TXeC1+bS+UqShl0x9+49AtOn7DixRXVzaC8qrDOIxNDmepKnLuMTH7NQmkX0PA== + dependencies: + irregular-plurals "^2.0.0" posix-character-classes@^0.1.0: version "0.1.1" @@ -3306,6 +3496,15 @@ postcss-selector-parser@^3.1.0: indexes-of "^1.0.1" uniq "^1.0.1" +postcss-selector-parser@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" + integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== + dependencies: + cssesc "^2.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + postcss-syntax@^0.36.2: version "0.36.2" resolved "https://registry.yarnpkg.com/postcss-syntax/-/postcss-syntax-0.36.2.tgz#f08578c7d95834574e5593a82dfbfa8afae3b51c" @@ -3330,10 +3529,22 @@ prelude-ls@~1.1.2: resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= -pretty-hrtime@^1.0.0: - version "1.0.3" - resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" - integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= +prepend-http@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc" + integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw= + +prettier-linter-helpers@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" + integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== + dependencies: + fast-diff "^1.1.2" + +prettier@^1.15.2: + version "1.16.4" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717" + integrity sha512-ZzWuos7TI5CKUeQAtFd6Zhm2s6EpAD/ZLApIhsF9pRvRtM1RFo61dM/4MSRUA0SuLugA/zgrZD8m0BaY46Og7g== process-nextick-args@~2.0.0: version "2.0.0" @@ -3345,12 +3556,10 @@ progress@^2.0.0: resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== -promise@^8.0.1: - version "8.0.2" - resolved "https://registry.yarnpkg.com/promise/-/promise-8.0.2.tgz#9dcd0672192c589477d56891271bdc27547ae9f0" - integrity sha512-EIyzM39FpVOMbqgzEHhxdrEhtOSDOtjMZQ0M6iVfCE+kWNgCkAyOdnuCWqfmflylftfadU6FkiMgHZA2kUzwRw== - dependencies: - asap "~2.0.6" +proto-props@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/proto-props/-/proto-props-2.0.0.tgz#8ac6e6dec658545815c623a3bc81580deda9a181" + integrity sha512-2yma2tog9VaRZY2mn3Wq51uiSW4NcPYT1cQdBagwyrznrilKSZwIZ0UG3ZPL/mx+axEns0hE35T5ufOYZXEnBQ== pseudomap@^1.0.2: version "1.0.2" @@ -3362,6 +3571,11 @@ psl@^1.1.24: resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184" integrity sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw== +pstree.remy@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/pstree.remy/-/pstree.remy-1.1.6.tgz#73a55aad9e2d95814927131fbf4dc1b62d259f47" + integrity sha512-NdF35+QsqD7EgNEI5mkI/X+UwaxVEbQaz9f4IooEmMUv6ZPmlTQYGjBPJGgrlzNdjSvIy4MWMg6Q6vCgBO2K+w== + punycode@^1.4.1: version "1.4.1" resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e" @@ -3382,6 +3596,16 @@ quick-lru@^1.0.0: resolved "https://registry.yarnpkg.com/quick-lru/-/quick-lru-1.1.0.tgz#4360b17c61136ad38078397ff11416e186dcfbb8" integrity sha1-Q2CxfGETatOAeDl/8RQW4Ybc+7g= +rc@^1.0.1, rc@^1.1.6, rc@^1.2.7: + version "1.2.8" + resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" + integrity sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw== + dependencies: + deep-extend "^0.6.0" + ini "~1.3.0" + minimist "^1.2.0" + strip-json-comments "~2.0.1" + read-pkg-up@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02" @@ -3390,6 +3614,14 @@ read-pkg-up@^1.0.1: find-up "^1.0.0" read-pkg "^1.0.0" +read-pkg-up@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-2.0.0.tgz#6b72a8048984e0c41e79510fd5e9fa99b3b549be" + integrity sha1-a3KoBImE4MQeeVEP1en6mbO1Sb4= + dependencies: + find-up "^2.0.0" + read-pkg "^2.0.0" + read-pkg-up@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/read-pkg-up/-/read-pkg-up-3.0.0.tgz#3ed496685dba0f8fe118d0691dc51f4a1ff96f07" @@ -3407,6 +3639,15 @@ read-pkg@^1.0.0: normalize-package-data "^2.3.2" path-type "^1.0.0" +read-pkg@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-2.0.0.tgz#8ef1c0623c6a6db0dc6713c4bfac46332b2368f8" + integrity sha1-jvHAYjxqbbDcZxPEv6xGMysjaPg= + dependencies: + load-json-file "^2.0.0" + normalize-package-data "^2.3.2" + path-type "^2.0.0" + read-pkg@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/read-pkg/-/read-pkg-3.0.0.tgz#9cbc686978fee65d16c00e2b19c237fcf6e38389" @@ -3416,17 +3657,7 @@ read-pkg@^3.0.0: normalize-package-data "^2.3.2" path-type "^3.0.0" -"readable-stream@>=1.0.33-1 <1.1.0-0": - version "1.0.34" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c" - integrity sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw= - dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.2.2, readable-stream@~2.3.6: +readable-stream@^2.0.1, readable-stream@^2.0.2, readable-stream@^2.0.6: version "2.3.6" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== @@ -3439,31 +3670,23 @@ readable-stream@^2.0.1, readable-stream@^2.0.6, readable-stream@^2.2.2, readable string_decoder "~1.1.1" util-deprecate "~1.0.1" -readable-stream@^3.0.6: - version "3.1.1" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.1.1.tgz#ed6bbc6c5ba58b090039ff18ce670515795aeb06" - integrity sha512-DkN66hPyqDhnIQ6Jcsvx9bFjhw214O4poMBcIMgPVpQvNy9a0e0Uhg5SqySyDKAmUlwt8LonTBz1ezOnM8pUdA== +readable-stream@^3.1.1: + version "3.2.0" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.2.0.tgz#de17f229864c120a9f56945756e4f32c4045245d" + integrity sha512-RV20kLjdmpZuTF1INEb9IA3L68Nmi+Ri7ppZqo78wj//Pn62fCoJyV9zalccNzDD/OuJpMG4f+pfMl8+L6QdGw== dependencies: inherits "^2.0.3" string_decoder "^1.1.1" util-deprecate "^1.0.1" -readable-stream@~1.1.9: - version "1.1.14" - resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.1.14.tgz#7cf4c54ef648e3813084c636dd2079e166c081d9" - integrity sha1-fPTFTvZI44EwhMY23SB54WbAgdk= +readdirp@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525" + integrity sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ== dependencies: - core-util-is "~1.0.0" - inherits "~2.0.1" - isarray "0.0.1" - string_decoder "~0.10.x" - -rechoir@^0.6.2: - version "0.6.2" - resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" - integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q= - dependencies: - resolve "^1.1.6" + graceful-fs "^4.1.11" + micromatch "^3.1.10" + readable-stream "^2.0.2" redent@^1.0.0: version "1.0.0" @@ -3489,10 +3712,30 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regexpp@^1.0.1: - version "1.1.0" - resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-1.1.0.tgz#0e3516dd0b7904f413d2d4193dce4618c3a689ab" - integrity sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw== +regexp-tree@~0.1.1: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.5.tgz#7cd71fca17198d04b4176efd79713f2998009397" + integrity sha512-nUmxvfJyAODw+0B13hj8CFVAxhe7fDEAgJgaotBu3nnR+IgGgZq59YedJP5VYTlkEfqjuK6TuRpnymKdatLZfQ== + +regexpp@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-2.0.1.tgz#8d19d31cf632482b589049f8281f93dbcba4d07f" + integrity sha512-lv0M6+TkDVniA3aD1Eg0DVpfU/booSu7Eev3TDO/mZKHBfVjgCGTV4t4buppESEYDtkArYFOxTJWv6S5C+iaNw== + +registry-auth-token@^3.0.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/registry-auth-token/-/registry-auth-token-3.3.2.tgz#851fd49038eecb586911115af845260eec983f20" + integrity sha512-JL39c60XlzCVgNrO+qq68FoNb56w/m7JYvGR2jT5iR1xBrUA3Mfx5Twk5rqTThPmQKMWydGmq8oFtDlxfrmxnQ== + dependencies: + rc "^1.1.6" + safe-buffer "^5.0.1" + +registry-url@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/registry-url/-/registry-url-3.1.0.tgz#3d4ef870f73dde1d77f0cf9a381432444e174942" + integrity sha1-PU74cPc93h138M+aOBQyRE4XSUI= + dependencies: + rc "^1.0.1" remark-parse@^6.0.0: version "6.0.3" @@ -3544,6 +3787,11 @@ remark@^10.0.1: remark-stringify "^6.0.0" unified "^7.0.0" +remove-trailing-separator@^1.0.1: + version "1.1.0" + resolved "https://registry.yarnpkg.com/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef" + integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8= + repeat-element@^1.1.2: version "1.1.3" resolved "https://registry.yarnpkg.com/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce" @@ -3561,12 +3809,7 @@ repeating@^2.0.0: dependencies: is-finite "^1.0.0" -replace-ext@0.0.1: - version "0.0.1" - resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-0.0.1.tgz#29bbd92078a739f0bcce2b4ee41e837953522924" - integrity sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ= - -replace-ext@1.0.0, replace-ext@^1.0.0: +replace-ext@1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/replace-ext/-/replace-ext-1.0.0.tgz#de63128373fcbf7c3ccfa4de5a480c45a67958eb" integrity sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs= @@ -3607,26 +3850,12 @@ require-main-filename@^1.0.1: resolved "https://registry.yarnpkg.com/require-main-filename/-/require-main-filename-1.0.1.tgz#97f717b69d48784f5f526a6c5aa8ffdda055a4d1" integrity sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE= -require-uncached@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/require-uncached/-/require-uncached-1.0.3.tgz#4e0d56d6c9662fd31e43011c4b95aa49955421d3" - integrity sha1-Tg1W1slmL9MeQwEcS5WqSZVUIdM= +resolve-cwd@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-2.0.0.tgz#00a9f7387556e27038eae232caa372a6a59b665a" + integrity sha1-AKn3OHVW4nA46uIyyqNypqWbZlo= dependencies: - caller-path "^0.1.0" - resolve-from "^1.0.0" - -resolve-dir@^1.0.0, resolve-dir@^1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/resolve-dir/-/resolve-dir-1.0.1.tgz#79a40644c362be82f26effe739c9bb5382046f43" - integrity sha1-eaQGRMNivoLybv/nOcm7U4IEb0M= - dependencies: - expand-tilde "^2.0.0" - global-modules "^1.0.0" - -resolve-from@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-1.0.1.tgz#26cbfe935d1aeeeabb29bc3fe5aeb01e93d44226" - integrity sha1-Jsv+k10a7uq7Kbw/5a6wHpPUQiY= + resolve-from "^3.0.0" resolve-from@^3.0.0: version "3.0.0" @@ -3643,7 +3872,7 @@ resolve-url@^0.2.1: resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= -resolve@^1.1.6, resolve@^1.1.7, resolve@^1.3.2: +resolve@^1.10.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1, resolve@^1.9.0: version "1.10.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba" integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg== @@ -3663,7 +3892,7 @@ ret@~0.1.10: resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc" integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg== -rimraf@2, rimraf@2.6.3, rimraf@~2.6.2: +rimraf@2, rimraf@2.6.3, rimraf@^2.6.1: version "2.6.3" resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab" integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA== @@ -3677,17 +3906,12 @@ run-async@^2.2.0: dependencies: is-promise "^2.1.0" -rx-lite-aggregates@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/rx-lite-aggregates/-/rx-lite-aggregates-4.0.8.tgz#753b87a89a11c95467c4ac1626c4efc4e05c67be" - integrity sha1-dTuHqJoRyVRnxKwWJsTvxOBcZ74= +rxjs@^6.4.0: + version "6.4.0" + resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.4.0.tgz#f3bb0fe7bda7fb69deac0c16f17b50b0b8790504" + integrity sha512-Z9Yfa11F6B9Sg/BK9MnqnQ+aQYicPLtilXBp2yUtDt2JRCE0h26d33EnfO3ZxoNxG0T92OUucP3Ct7cpfkdFfw== dependencies: - rx-lite "*" - -rx-lite@*, rx-lite@^4.0.8: - version "4.0.8" - resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444" - integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ= + tslib "^1.9.0" safe-buffer@^5.0.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1: version "5.1.2" @@ -3701,6 +3925,13 @@ safe-regex@^1.1.0: dependencies: ret "~0.1.10" +safe-regex@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-2.0.2.tgz#3601b28d3aefe4b963d42f6c2cdb241265cbd63c" + integrity sha512-rRALJT0mh4qVFIJ9HvfjKDN77F9vp7kltOpFFI/8e6oKyHFmmxz4aSkY/YVauRDe7U0RrHdw9Lsxdel3E19s0A== + dependencies: + regexp-tree "~0.1.1" + "safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0: version "2.1.2" resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" @@ -3716,6 +3947,11 @@ sass-graph@^2.2.4: scss-tokenizer "^0.2.3" yargs "^7.0.0" +sax@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9" + integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw== + scss-tokenizer@^0.2.3: version "0.2.3" resolved "https://registry.yarnpkg.com/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz#8eb06db9a9723333824d3f5530641149847ce5d1" @@ -3724,26 +3960,23 @@ scss-tokenizer@^0.2.3: js-base64 "^2.1.8" source-map "^0.4.2" -"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1: +semver-diff@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/semver-diff/-/semver-diff-2.1.0.tgz#4bbb8437c8d37e4b0cf1a68fd726ec6d645d6d36" + integrity sha1-S7uEN8jTfksM8aaP1ybsbWRdbTY= + dependencies: + semver "^5.0.3" + +"semver@2 || 3 || 4 || 5", semver@^5.0.3, semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1: version "5.6.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004" integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg== -semver@^4.1.0: - version "4.3.6" - resolved "https://registry.yarnpkg.com/semver/-/semver-4.3.6.tgz#300bc6e0e86374f7ba61068b5b1ecd57fc6532da" - integrity sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto= - semver@~5.3.0: version "5.3.0" resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f" integrity sha1-myzl094C0XxgEq0yaqa00M9U+U8= -sequencify@~0.0.7: - version "0.0.7" - resolved "https://registry.yarnpkg.com/sequencify/-/sequencify-0.0.7.tgz#90cff19d02e07027fd767f5ead3e7b95d1e7380c" - integrity sha1-kM/xnQLgcCf9dn9erT57ldHnOAw= - set-blocking@^2.0.0, set-blocking@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7" @@ -3781,11 +4014,6 @@ shebang-regex@^1.0.0: resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3" integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM= -sigmund@~1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590" - integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA= - signal-exit@^3.0.0, signal-exit@^3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d" @@ -3796,14 +4024,7 @@ slash@^2.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-2.0.0.tgz#de552851a1759df3a8f206535442f5ec4ddeab44" integrity sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A== -slice-ansi@1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-1.0.0.tgz#044f1a49d8842ff307aad6b505ed178bd950134d" - integrity sha512-POqxBK6Lb3q6s047D/XsDVNPnF9Dl8JSaqe9h9lURl0OdNqy/ujDrOiIHtsqXMGbWWTIomRzAMaTyawAU//Reg== - dependencies: - is-fullwidth-code-point "^2.0.0" - -slice-ansi@^2.0.0: +slice-ansi@^2.1.0: version "2.1.0" resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-2.1.0.tgz#cacd7693461a637a5788d92a7dd4fba068e81636" integrity sha512-Qu+VC3EwYLldKa1fCxuuvULvSJOKEgk9pi8dZeCVK7TqBfUNTH4sFkk4joj8afVSfAYgJoSOetjx9QWOJ5mYoQ== @@ -3842,6 +4063,13 @@ snapdragon@^0.8.1: source-map-resolve "^0.5.0" use "^3.1.0" +sort-keys@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128" + integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg= + dependencies: + is-plain-obj "^1.0.0" + source-map-resolve@^0.5.0: version "0.5.2" resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.5.2.tgz#72e2cc34095543e43b2c62b2c4c10d4a9054f259" @@ -3865,7 +4093,7 @@ source-map@^0.4.2: dependencies: amdefine ">=0.0.4" -source-map@^0.5.0, source-map@^0.5.1, source-map@^0.5.6: +source-map@^0.5.0, source-map@^0.5.6: version "0.5.7" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= @@ -3875,11 +4103,6 @@ source-map@^0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -sparkles@^1.0.0: - version "1.0.1" - resolved "https://registry.yarnpkg.com/sparkles/-/sparkles-1.0.1.tgz#008db65edce6c50eec0c5e228e1945061dd0437c" - integrity sha512-dSO0DDYUahUt/0/pD/Is3VIm5TGJjludZ0HVymmhYF6eNA53PVLhnUk0znSYbH8IYBuJdCE+1luR22jNLMaQdw== - spdx-correct@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4" @@ -3958,11 +4181,6 @@ stdout-stream@^1.4.0: dependencies: readable-stream "^2.0.1" -stream-consume@~0.1.0: - version "0.1.1" - resolved "https://registry.yarnpkg.com/stream-consume/-/stream-consume-0.1.1.tgz#d3bdb598c2bd0ae82b8cac7ac50b1107a7996c48" - integrity sha512-tNa3hzgkjEP7XbCkbRXe1jpg+ievoa0O4SCFlMOYEscGSS4JJsckGL8swUyAa/ApGU3Ae4t6Honor4HhL+tRyg== - string-width@^1.0.1, string-width@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/string-width/-/string-width-1.0.2.tgz#118bdf5b8cdc51a2a7e70d211e07e2b0b9b107d3" @@ -3972,7 +4190,7 @@ string-width@^1.0.1, string-width@^1.0.2: is-fullwidth-code-point "^1.0.0" strip-ansi "^3.0.0" -"string-width@^1.0.2 || 2", string-width@^2.1.0, string-width@^2.1.1: +"string-width@^1.0.2 || 2", string-width@^2.0.0, string-width@^2.1.0, string-width@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== @@ -3996,11 +4214,6 @@ string_decoder@^1.1.1: dependencies: safe-buffer "~5.1.0" -string_decoder@~0.10.x: - version "0.10.31" - resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94" - integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ= - string_decoder@~1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" @@ -4039,14 +4252,6 @@ strip-ansi@^5.0.0: dependencies: ansi-regex "^4.0.0" -strip-bom@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-1.0.0.tgz#85b8862f3844b5a6d5ec8467a93598173a36f794" - integrity sha1-hbiGLzhEtabV7IRnqTWYFzo295Q= - dependencies: - first-chunk-stream "^1.0.0" - is-utf8 "^0.2.0" - strip-bom@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e" @@ -4059,6 +4264,11 @@ strip-bom@^3.0.0: resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" integrity sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM= +strip-eof@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" + integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8= + strip-indent@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2" @@ -4071,7 +4281,7 @@ strip-indent@^2.0.0: resolved "https://registry.yarnpkg.com/strip-indent/-/strip-indent-2.0.0.tgz#5ef8db295d01e6ed6cbf7aab96998d7822527b68" integrity sha1-XvjbKV0B5u1sv3qrlpmNeCJSe2g= -strip-json-comments@~2.0.1: +strip-json-comments@^2.0.1, strip-json-comments@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-2.0.1.tgz#3c531942e908c2697c0ec344858c286c7ca0a60a" integrity sha1-PFMZQukIwml8DsNEhYwobHygpgo= @@ -4086,7 +4296,18 @@ stylelint-config-recommended@^2.1.0: resolved "https://registry.yarnpkg.com/stylelint-config-recommended/-/stylelint-config-recommended-2.1.0.tgz#f526d5c771c6811186d9eaedbed02195fee30858" integrity sha512-ajMbivOD7JxdsnlS5945KYhvt7L/HwN6YeYF2BH6kE4UCLJR0YvXMf+2j7nQpJyYLZx9uZzU5G1ZOSBiWAc6yA== -stylelint@^9.2.1: +stylelint-scss@^3.5.4: + version "3.5.4" + resolved "https://registry.yarnpkg.com/stylelint-scss/-/stylelint-scss-3.5.4.tgz#ff3ee989ac48f5c4f57313523b5ace059ffd6cc2" + integrity sha512-hEdEOfFXVqxWcUbenBONW/cAw5cJcEDasY8tGwKNAAn1GDHoZO1ATdWpr+iIk325mPGIQqVb1sUxsRxuL70trw== + dependencies: + lodash "^4.17.11" + postcss-media-query-parser "^0.2.3" + postcss-resolve-nested-selector "^0.1.1" + postcss-selector-parser "^5.0.0" + postcss-value-parser "^3.3.1" + +stylelint@^9.10.1: version "9.10.1" resolved "https://registry.yarnpkg.com/stylelint/-/stylelint-9.10.1.tgz#5f0ee3701461dff1d68284e1386efe8f0677a75d" integrity sha512-9UiHxZhOAHEgeQ7oLGwrwoDR8vclBKlSX7r4fH0iuu0SfPwFaLkb1c7Q2j1cqg9P7IDXeAV2TvQML/fRQzGBBQ== @@ -4151,7 +4372,7 @@ supports-color@^2.0.0: resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= -supports-color@^5.3.0: +supports-color@^5.0.0, supports-color@^5.2.0, supports-color@^5.3.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== @@ -4165,32 +4386,28 @@ supports-color@^6.1.0: dependencies: has-flag "^3.0.0" +supports-hyperlinks@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-1.0.1.tgz#71daedf36cc1060ac5100c351bb3da48c29c0ef7" + integrity sha512-HHi5kVSefKaJkGYXbDuKbUGRVxqnWGn3J2e39CYcNJEfWciGq2zYtOhXLTlvrOZW1QU7VX67w7fMmWafHX9Pfw== + dependencies: + has-flag "^2.0.0" + supports-color "^5.0.0" + svg-tags@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764" integrity sha1-WPcc7jvVGbWdSyqEO2x95krAR2Q= -table@4.0.2: - version "4.0.2" - resolved "https://registry.yarnpkg.com/table/-/table-4.0.2.tgz#a33447375391e766ad34d3486e6e2aedc84d2e36" - integrity sha512-UUkEAPdSGxtRpiV9ozJ5cMTtYiqz7Ni1OGqLXRCynrvzdtR1p+cfOWe2RJLwvUG8hNanaSRjecIqwOjqeatDsA== +table@^5.0.0, table@^5.2.3: + version "5.2.3" + resolved "https://registry.yarnpkg.com/table/-/table-5.2.3.tgz#cde0cc6eb06751c009efab27e8c820ca5b67b7f2" + integrity sha512-N2RsDAMvDLvYwFcwbPyF3VmVSSkuF+G1e+8inhBLtHpvwXGw4QRPEZhihQNeEN0i1up6/f6ObCJXNdlRG3YVyQ== dependencies: - ajv "^5.2.3" - ajv-keywords "^2.1.0" - chalk "^2.1.0" - lodash "^4.17.4" - slice-ansi "1.0.0" - string-width "^2.1.1" - -table@^5.0.0: - version "5.2.2" - resolved "https://registry.yarnpkg.com/table/-/table-5.2.2.tgz#61d474c9e4d8f4f7062c98c7504acb3c08aa738f" - integrity sha512-f8mJmuu9beQEDkKHLzOv4VxVYlU68NpdzjbGPl69i4Hx0sTopJuNxuzJd17iV2h24dAfa93u794OnDA5jqXvfQ== - dependencies: - ajv "^6.6.1" + ajv "^6.9.1" lodash "^4.17.11" - slice-ansi "^2.0.0" - string-width "^2.1.1" + slice-ansi "^2.1.0" + string-width "^3.0.0" tar@^2.0.0: version "2.2.1" @@ -4201,43 +4418,45 @@ tar@^2.0.0: fstream "^1.0.2" inherits "2" -text-table@~0.2.0: +tar@^4: + version "4.4.8" + resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" + integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ== + dependencies: + chownr "^1.1.1" + fs-minipass "^1.2.5" + minipass "^2.3.4" + minizlib "^1.1.1" + mkdirp "^0.5.0" + safe-buffer "^5.1.2" + yallist "^3.0.2" + +term-size@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/term-size/-/term-size-1.2.0.tgz#458b83887f288fc56d6fffbfad262e26638efa69" + integrity sha1-RYuDiH8oj8Vtb/+/rSYuJmOO+mk= + dependencies: + execa "^0.7.0" + +text-table@^0.2.0: version "0.2.0" resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= -through2@^0.6.1: - version "0.6.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-0.6.5.tgz#41ab9c67b29d57209071410e1d7a7a968cd3ad48" - integrity sha1-QaucZ7KdVyCQcUEOHXp6lozTrUg= - dependencies: - readable-stream ">=1.0.33-1 <1.1.0-0" - xtend ">=4.0.0 <4.1.0-0" - -through2@^2.0.0, through2@^2.0.3: - version "2.0.5" - resolved "https://registry.yarnpkg.com/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd" - integrity sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ== - dependencies: - readable-stream "~2.3.6" - xtend "~4.0.1" +the-argv@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/the-argv/-/the-argv-1.0.0.tgz#0084705005730dd84db755253c931ae398db9522" + integrity sha1-AIRwUAVzDdhNt1UlPJMa45jblSI= through@^2.3.6: version "2.3.8" resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= -tildify@^1.0.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/tildify/-/tildify-1.2.0.tgz#dcec03f55dca9b7aa3e5b04f21817eb56e63588a" - integrity sha1-3OwD9V3Km3qj5bBPIYF+tW5jWIo= - dependencies: - os-homedir "^1.0.0" - -time-stamp@^1.0.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/time-stamp/-/time-stamp-1.1.0.tgz#764a5a11af50561921b133f3b44e618687e0f5c3" - integrity sha1-dkpaEa9QVhkhsTPztE5hhofg9cM= +timed-out@^4.0.0: + version "4.0.1" + resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f" + integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8= tmp@^0.0.33: version "0.0.33" @@ -4276,6 +4495,13 @@ to-regex@^3.0.1, to-regex@^3.0.2: regex-not "^1.0.2" safe-regex "^1.1.0" +touch@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/touch/-/touch-3.1.0.tgz#fe365f5f75ec9ed4e56825e0bb76d24ab74af83b" + integrity sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA== + dependencies: + nopt "~1.0.10" + tough-cookie@~2.4.3: version "2.4.3" resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781" @@ -4321,6 +4547,11 @@ trough@^1.0.0: dependencies: glob "^7.1.2" +tslib@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286" + integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ== + tunnel-agent@^0.6.0: version "0.6.0" resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd" @@ -4340,15 +4571,12 @@ type-check@~0.3.2: dependencies: prelude-ls "~1.1.2" -typedarray@^0.0.6: - version "0.0.6" - resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" - integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= - -unc-path-regex@^0.1.2: - version "0.1.2" - resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa" - integrity sha1-5z3T17DXxe2G+6xrCufYxqadUPo= +undefsafe@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/undefsafe/-/undefsafe-2.0.2.tgz#225f6b9e0337663e0d8e7cfd686fc2836ccace76" + integrity sha1-Il9rngM3Zj4Njnz9aG/Cg2zKznY= + dependencies: + debug "^2.2.0" unherit@^1.0.4: version "1.1.1" @@ -4387,10 +4615,12 @@ uniq@^1.0.1: resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= -unique-stream@^1.0.0: +unique-string@^1.0.0: version "1.0.0" - resolved "https://registry.yarnpkg.com/unique-stream/-/unique-stream-1.0.0.tgz#d59a4a75427447d9aa6c91e70263f8d26a4b104b" - integrity sha1-1ZpKdUJ0R9mqbJHnAmP40mpLEEs= + resolved "https://registry.yarnpkg.com/unique-string/-/unique-string-1.0.0.tgz#9e1057cca851abb93398f8b33ae187b99caec11a" + integrity sha1-nhBXzKhRq7kzmPizOuGHuZyuwRo= + dependencies: + crypto-random-string "^1.0.0" unist-util-find-all-after@^1.0.2: version "1.0.2" @@ -4430,6 +4660,11 @@ unist-util-visit@^1.1.0: dependencies: unist-util-visit-parents "^2.0.0" +universalify@^0.1.0: + version "0.1.2" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" + integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== + unset-value@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559" @@ -4438,6 +4673,32 @@ unset-value@^1.0.0: has-value "^0.3.1" isobject "^3.0.0" +unzip-response@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/unzip-response/-/unzip-response-2.0.1.tgz#d2f0f737d16b0615e72a6935ed04214572d56f97" + integrity sha1-0vD3N9FrBhXnKmk17QQhRXLVb5c= + +upath@^1.1.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/upath/-/upath-1.1.1.tgz#497f7c1090b0818f310bbfb06783586a68d28014" + integrity sha512-D0yetkpIOKiZQquxjM2Syvy48Y1DbZ0SWxgsZiwd9GCWRpc75vN8ytzem14WDSg+oiX6+Qt31FpiS/ExODCrLg== + +update-notifier@^2.3.0, update-notifier@^2.5.0: + version "2.5.0" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" + integrity sha512-gwMdhgJHGuj/+wHJJs9e6PcCszpxR1b236igrOkUofGhqJuG+amlIKwApH1IW1WWl7ovZxsX49lMBWLxSdm5Dw== + dependencies: + boxen "^1.2.1" + chalk "^2.0.1" + configstore "^3.0.0" + import-lazy "^2.1.0" + is-ci "^1.0.10" + is-installed-globally "^0.1.0" + is-npm "^1.0.0" + latest-version "^3.0.0" + semver-diff "^2.0.0" + xdg-basedir "^3.0.0" + uri-js@^4.2.2: version "4.2.2" resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0" @@ -4450,16 +4711,18 @@ urix@^0.1.0: resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72" integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI= +url-parse-lax@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73" + integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM= + dependencies: + prepend-http "^1.0.1" + use@^3.1.0: version "3.1.1" resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f" integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ== -user-home@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/user-home/-/user-home-1.1.1.tgz#2b5be23a32b63a7c9deb8d0f28d485724a3df190" - integrity sha1-K1viOjK2Onyd640PKNSFcko98ZA= - usercss-creator@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/usercss-creator/-/usercss-creator-1.2.0.tgz#3414a83d58982d3f209efa6d0460b98a0338c3d5" @@ -4475,13 +4738,6 @@ uuid@^3.3.2: resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.3.2.tgz#1b4af4955eb3077c501c23872fc6513811587131" integrity sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA== -v8flags@^2.0.2: - version "2.1.1" - resolved "https://registry.yarnpkg.com/v8flags/-/v8flags-2.1.1.tgz#aab1a1fa30d45f88dd321148875ac02c0b55e5b4" - integrity sha1-qrGh+jDUX4jdMhFIh1rALAtV5bQ= - dependencies: - user-home "^1.1.1" - validate-npm-package-license@^3.0.1: version "3.0.4" resolved "https://registry.yarnpkg.com/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a" @@ -4521,50 +4777,12 @@ vfile@^3.0.0: unist-util-stringify-position "^1.0.0" vfile-message "^1.0.0" -vinyl-fs@^0.3.0: - version "0.3.14" - resolved "https://registry.yarnpkg.com/vinyl-fs/-/vinyl-fs-0.3.14.tgz#9a6851ce1cac1c1cea5fe86c0931d620c2cfa9e6" - integrity sha1-mmhRzhysHBzqX+hsCTHWIMLPqeY= - dependencies: - defaults "^1.0.0" - glob-stream "^3.1.5" - glob-watcher "^0.0.6" - graceful-fs "^3.0.0" - mkdirp "^0.5.0" - strip-bom "^1.0.0" - through2 "^0.6.1" - vinyl "^0.4.0" - -vinyl-sourcemaps-apply@^0.2.0: - version "0.2.1" - resolved "https://registry.yarnpkg.com/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz#ab6549d61d172c2b1b87be5c508d239c8ef87705" - integrity sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU= - dependencies: - source-map "^0.5.1" - -vinyl@^0.4.0: - version "0.4.6" - resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.4.6.tgz#2f356c87a550a255461f36bbeb2a5ba8bf784847" - integrity sha1-LzVsh6VQolVGHza76ypbqL94SEc= - dependencies: - clone "^0.2.0" - clone-stats "^0.0.1" - -vinyl@^0.5.0: - version "0.5.3" - resolved "https://registry.yarnpkg.com/vinyl/-/vinyl-0.5.3.tgz#b0455b38fc5e0cf30d4325132e461970c2091cde" - integrity sha1-sEVbOPxeDPMNQyUTLkYZcMIJHN4= - dependencies: - clone "^1.0.0" - clone-stats "^0.0.1" - replace-ext "0.0.1" - which-module@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f" integrity sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8= -which@1, which@^1.2.14, which@^1.2.9, which@^1.3.1: +which@1, which@^1.2.9, which@^1.3.1: version "1.3.1" resolved "https://registry.yarnpkg.com/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a" integrity sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ== @@ -4578,6 +4796,13 @@ wide-align@^1.1.0: dependencies: string-width "^1.0.2 || 2" +widest-line@^2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/widest-line/-/widest-line-2.0.1.tgz#7438764730ec7ef4381ce4df82fb98a53142a3fc" + integrity sha512-Ba5m9/Fa4Xt9eb2ELXt77JxVDV8w7qQrH0zS/TWSJdLyAwQjWoOzpzj5lwVftDz6n/EOu3tNACS84v509qwnJA== + dependencies: + string-width "^2.1.1" + wordwrap@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb" @@ -4596,6 +4821,35 @@ wrappy@1: resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= +write-file-atomic@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-2.4.2.tgz#a7181706dfba17855d221140a9c06e15fcdd87b9" + integrity sha512-s0b6vB3xIVRLWywa6X9TOMA7k9zio0TMOsl9ZnDkliA/cfJlpHXAscj0gbHVJiTdIuAYpIyqS5GW91fqm6gG5g== + dependencies: + graceful-fs "^4.1.11" + imurmurhash "^0.1.4" + signal-exit "^3.0.2" + +write-json-file@^2.2.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/write-json-file/-/write-json-file-2.3.0.tgz#2b64c8a33004d54b8698c76d585a77ceb61da32f" + integrity sha1-K2TIozAE1UuGmMdtWFp3zrYdoy8= + dependencies: + detect-indent "^5.0.0" + graceful-fs "^4.1.2" + make-dir "^1.0.0" + pify "^3.0.0" + sort-keys "^2.0.0" + write-file-atomic "^2.0.0" + +write-pkg@^3.1.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/write-pkg/-/write-pkg-3.2.0.tgz#0e178fe97820d389a8928bc79535dbe68c2cff21" + integrity sha512-tX2ifZ0YqEFOF1wjRW2Pk93NLsj02+n1UP5RvO6rCs0K6R2g1padvf006cY74PQJKMGS2r42NK7FD0dG6Y6paw== + dependencies: + sort-keys "^2.0.0" + write-json-file "^2.2.0" + write@1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/write/-/write-1.0.3.tgz#0800e14523b923a387e415123c865616aae0f5c3" @@ -4603,19 +4857,69 @@ write@1.0.3: dependencies: mkdirp "^0.5.1" -write@^0.2.1: - version "0.2.1" - resolved "https://registry.yarnpkg.com/write/-/write-0.2.1.tgz#5fc03828e264cea3fe91455476f7a3c566cb0757" - integrity sha1-X8A4KOJkzqP+kUVUdvejxWbLB1c= - dependencies: - mkdirp "^0.5.1" - x-is-string@^0.1.0: version "0.1.0" resolved "https://registry.yarnpkg.com/x-is-string/-/x-is-string-0.1.0.tgz#474b50865af3a49a9c4657f05acd145458f77d82" integrity sha1-R0tQhlrzpJqcRlfwWs0UVFj3fYI= -"xtend@>=4.0.0 <4.1.0-0", xtend@^4.0.1, xtend@~4.0.1: +xdg-basedir@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4" + integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ= + +xo-init@^0.7.0: + version "0.7.0" + resolved "https://registry.yarnpkg.com/xo-init/-/xo-init-0.7.0.tgz#634b4789e366b4f87f747ef0cee1a99ce273aa15" + integrity sha512-mrrCKMu52vz0u2tiOl8DoG709pBtnSp58bb4/j58a4jeXjrb1gV7dxfOBjOlXitYtfW2QnlxxxfAojoFcpynDg== + dependencies: + arrify "^1.0.0" + execa "^0.9.0" + has-yarn "^1.0.0" + minimist "^1.1.3" + path-exists "^3.0.0" + read-pkg-up "^3.0.0" + the-argv "^1.0.0" + write-pkg "^3.1.0" + +xo@^0.24.0: + version "0.24.0" + resolved "https://registry.yarnpkg.com/xo/-/xo-0.24.0.tgz#f931ff453f3440919d51da908591371e8ed714e0" + integrity sha512-eaXWpNtXHbJ+DSiDkdRnDcMYPeUi/MWFUoUgorBhzAueTCM+v4o9Xv6buYgyoL4r7JuTp5EWXx3lGn9Md4dgWA== + dependencies: + arrify "^1.0.1" + debug "^4.1.0" + eslint "^5.12.0" + eslint-config-prettier "^3.3.0" + eslint-config-xo "^0.26.0" + eslint-formatter-pretty "^2.0.0" + eslint-plugin-ava "^5.1.0" + eslint-plugin-eslint-comments "^3.0.1" + eslint-plugin-import "^2.14.0" + eslint-plugin-no-use-extend-native "^0.4.0" + eslint-plugin-node "^8.0.0" + eslint-plugin-prettier "^3.0.0" + eslint-plugin-promise "^4.0.0" + eslint-plugin-unicorn "^7.0.0" + find-cache-dir "^2.0.0" + get-stdin "^6.0.0" + globby "^9.0.0" + has-flag "^3.0.0" + lodash.isequal "^4.5.0" + lodash.mergewith "^4.6.1" + meow "^5.0.0" + multimatch "^3.0.0" + open-editor "^1.2.0" + path-exists "^3.0.0" + pkg-conf "^2.1.0" + prettier "^1.15.2" + resolve-cwd "^2.0.0" + resolve-from "^4.0.0" + semver "^5.5.0" + slash "^2.0.0" + update-notifier "^2.3.0" + xo-init "^0.7.0" + +xtend@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= @@ -4630,6 +4934,11 @@ yallist@^2.1.2: resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52" integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI= +yallist@^3.0.0, yallist@^3.0.2: + version "3.0.3" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9" + integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A== + yargs-parser@^10.0.0: version "10.1.0" resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-10.1.0.tgz#7202265b89f7e9e9f2e5765e0fe735a905edbaa8"