From b64ed343c260e0161cfa488234db862b497c5ed2 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Mon, 27 Nov 2017 13:54:07 +0200 Subject: [PATCH] feature(package) stylelint-config-standard v18.0.0 --- .stylelintrc.yml | 1 + css/config.css | 39 ++++++++++++++++----------------------- css/query.css | 11 ++++++----- css/style.css | 17 +++++++++-------- package.json | 2 +- 5 files changed, 33 insertions(+), 37 deletions(-) diff --git a/.stylelintrc.yml b/.stylelintrc.yml index a3e39ca7..ddbd3acf 100644 --- a/.stylelintrc.yml +++ b/.stylelintrc.yml @@ -11,5 +11,6 @@ rules: function-url-quotes: never no-eol-whitespace: null font-family-name-quotes: always-unless-keyword + font-family-no-missing-generic-family-keyword: null rule-empty-line-before: null diff --git a/css/config.css b/css/config.css index 646ded98..ab456d97 100644 --- a/css/config.css +++ b/css/config.css @@ -1,6 +1,7 @@ .config { white-space: normal; overflow: hidden; + width : 250px; } .list li { @@ -28,11 +29,16 @@ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s; } -.config .form-control:focus:invalid:focus { - border-color: #e9322d; - -webkit-box-shadow: 0 0 6px #f8b9b7; - -moz-box-shadow: 0 0 6px #f8b9b7; - box-shadow: 0 0 6px #f8b9b7; +.config .form-control::-moz-placeholder { + color: #999; +} + +.config .form-control::-ms-input-placeholder { + color: #999; +} + +.config .form-control::-webkit-input-placeholder { + color: #999; } .config .form-control:focus { @@ -43,20 +49,11 @@ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(102, 175, 233, 0.6); } -.config .form-control:-moz-placeholder { - color: #999; -} - -.config .form-control::-moz-placeholder { - color: #999; -} - -.config .form-control:-ms-input-placeholder { - color: #999; -} - -.config .form-control::-webkit-input-placeholder { - color: #999; +.config .form-control:focus:invalid:focus { + border-color: #e9322d; + -webkit-box-shadow: 0 0 6px #f8b9b7; + -moz-box-shadow: 0 0 6px #f8b9b7; + box-shadow: 0 0 6px #f8b9b7; } .config .list { @@ -64,10 +61,6 @@ margin : 5%; } -.config { - width : 250px; -} - .config .full-width { width: 100%; } diff --git a/css/query.css b/css/query.css index 5384d9b6..2e55188a 100644 --- a/css/query.css +++ b/css/query.css @@ -104,6 +104,12 @@ .current-file a { color: white; } + + .text-file::before { + color: rgba(26, 224, 124, 0.56); + content: '\e80d'; + } + .current-file .text-file::before { color: white; } @@ -129,11 +135,6 @@ content: '\e807'; } - .text-file::before { - color: rgba(26, 224, 124, 0.56); - content: '\e80d'; - } - .text-file { background-image: none; } diff --git a/css/style.css b/css/style.css index f9c70fc9..6bb969b4 100644 --- a/css/style.css +++ b/css/style.css @@ -117,6 +117,15 @@ body, pre, code { outline: 0; } +a { + text-decoration: none; +} + +a:hover, a:active { + color: #06e; + text-decoration: none; +} + .links a { color: red; } @@ -238,11 +247,3 @@ body, pre, code { overflow: hidden; } -a { - text-decoration: none; -} - -a:hover, a:active { - color: #06e; - text-decoration: none; -} diff --git a/package.json b/package.json index 78d38654..a9008ea0 100644 --- a/package.json +++ b/package.json @@ -198,7 +198,7 @@ "socket.io-client": "^2.0.1", "style-loader": "^0.19.0", "stylelint": "^8.0.0", - "stylelint-config-standard": "^17.0.0", + "stylelint-config-standard": "^18.0.0", "tape": "^4.4.0", "tar-stream": "^1.5.2", "url-loader": "^0.6.1",