diff options
author | silverwind <me@silverwind.io> | 2022-02-01 10:21:08 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-01 13:21:08 -0500 |
commit | 99e1e30b0b13cab4300352c2d0e8170155cfa0bb (patch) | |
tree | adc6e41926be049dab62fa98e2ca3fd3a7e70830 /web_src | |
parent | 367894adc820964135095e50c1ae6d6a0b2b0310 (diff) | |
download | gitea-99e1e30b0b13cab4300352c2d0e8170155cfa0bb.tar.gz gitea-99e1e30b0b13cab4300352c2d0e8170155cfa0bb.zip |
Update JS dependencies, fix lint (#18389)
- Update all JS dependencies, including a security issue in mermaid
- Fix new linter errors related to value-keyword-case
- Tested Mermaid and Swagger
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/less/_repository.less | 2 | ||||
-rw-r--r-- | web_src/less/_svg.less | 2 | ||||
-rw-r--r-- | web_src/less/features/heatmap.less | 2 | ||||
-rw-r--r-- | web_src/less/standalone/swagger.less | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 75ccc8d25f..a2c40b3f0a 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -3039,7 +3039,7 @@ td.blob-excerpt { } .file-info-entry + .file-info-entry { - border-left: 1px solid currentColor; + border-left: 1px solid currentcolor; margin-left: 8px; padding-left: 8px; } diff --git a/web_src/less/_svg.less b/web_src/less/_svg.less index 696d0558e0..a2ea64c438 100644 --- a/web_src/less/_svg.less +++ b/web_src/less/_svg.less @@ -1,7 +1,7 @@ .svg { display: inline-block; vertical-align: text-top; - fill: currentColor; + fill: currentcolor; .middle & { vertical-align: middle; diff --git a/web_src/less/features/heatmap.less b/web_src/less/features/heatmap.less index f82f3d12cd..f551daf333 100644 --- a/web_src/less/features/heatmap.less +++ b/web_src/less/features/heatmap.less @@ -17,7 +17,7 @@ } text { - fill: currentColor !important; + fill: currentcolor !important; } .total-contributions { diff --git a/web_src/less/standalone/swagger.less b/web_src/less/standalone/swagger.less index cc829961d3..3b902483d8 100644 --- a/web_src/less/standalone/swagger.less +++ b/web_src/less/standalone/swagger.less @@ -26,6 +26,6 @@ body { .swagger-back-link svg { color: inherit; - fill: currentColor; + fill: currentcolor; margin-right: .5rem; } |