diff --git a/.editorconfig b/.editorconfig index 5b3a4ff79..6059fa100 100644 --- a/.editorconfig +++ b/.editorconfig @@ -23,3 +23,6 @@ indent_size = 2 [Makefile] indent_style = tab + +[*.svg] +insert_final_newline = false diff --git a/assets/svg/gitea-lock-cog.svg b/assets/svg/gitea-lock-cog.svg new file mode 100644 index 000000000..13e374a9d --- /dev/null +++ b/assets/svg/gitea-lock-cog.svg @@ -0,0 +1,4 @@ + \ No newline at end of file diff --git a/assets/svg/gitea-lock.svg b/assets/svg/gitea-lock.svg new file mode 100644 index 000000000..2511b9433 --- /dev/null +++ b/assets/svg/gitea-lock.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/assets/svg/gitea-unlock.svg b/assets/svg/gitea-unlock.svg new file mode 100644 index 000000000..afaa9f03d --- /dev/null +++ b/assets/svg/gitea-unlock.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/templates/repo/commit_page.tmpl b/templates/repo/commit_page.tmpl index 51f56574c..f9e8c4acb 100644 --- a/templates/repo/commit_page.tmpl +++ b/templates/repo/commit_page.tmpl @@ -90,7 +90,7 @@
diff --git a/web_src/less/_repository.less b/web_src/less/_repository.less index 2fd67b66f..b26f0fa88 100644 --- a/web_src/less/_repository.less +++ b/web_src/less/_repository.less @@ -1484,8 +1484,12 @@ margin-right: 0; } + .svg { + margin: 0 .25em 0 0; + } + > div { - display: inline-flex; + display: flex; align-items: center; } } diff --git a/webpack.config.js b/webpack.config.js index fa96f42e9..7b917cbdc 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -50,7 +50,10 @@ module.exports = { serviceworker: [ resolve(__dirname, 'web_src/js/serviceworker.js'), ], - icons: glob('node_modules/@primer/octicons/build/svg/**/*.svg'), + icons: [ + ...glob('node_modules/@primer/octicons/build/svg/**/*.svg'), + ...glob('assets/svg/*.svg'), + ], ...themes, }, devtool: false,