diff options
author | silverwind <me@silverwind.io> | 2022-02-02 00:42:23 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-02 08:42:23 +0000 |
commit | 1d173139497189e19ca2e68285a70f44b77ca452 (patch) | |
tree | 2e5a4bb950a3bf2e13f18cdb80478003fd435ed0 /web_src | |
parent | 9c318a17f576887736e97c7bc2971d2ad7579a33 (diff) | |
download | gitea-1d173139497189e19ca2e68285a70f44b77ca452.tar.gz gitea-1d173139497189e19ca2e68285a70f44b77ca452.zip |
Update JS dependencies, fix lint (#18389) (#18540)
- 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 18c463bf18..76ca5dff7d 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; } |