diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2016-02-08 17:03:18 -0200 |
---|---|---|
committer | Andrey Nering <andrey.nering@gmail.com> | 2016-02-08 17:03:18 -0200 |
commit | e40d94bb4f46a60b15a1d461f1fbbf76130a07e0 (patch) | |
tree | 7b8052d8f28ba4ac76db26f094ce58a9776e4bea /conf/app.ini | |
parent | 7ffe845c61fde3b2eac821a303668206b014a666 (diff) | |
download | gitea-e40d94bb4f46a60b15a1d461f1fbbf76130a07e0.tar.gz gitea-e40d94bb4f46a60b15a1d461f1fbbf76130a07e0.zip |
Implementing the "theme-color" meta tag.
Used by Android >= 5.0 to make the top bar colored.
Reference: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android
Diffstat (limited to 'conf/app.ini')
-rw-r--r-- | conf/app.ini | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/conf/app.ini b/conf/app.ini index d62a9e1ee0..8b19e725e6 100644 --- a/conf/app.ini +++ b/conf/app.ini @@ -27,6 +27,10 @@ EXPLORE_PAGING_NUM = 20 ISSUE_PAGING_NUM = 10 ; Number of maximum commits showed in one activity feed FEED_MAX_COMMIT_NUM = 5 +; Value of `theme-color` meta tag, used by Android >= 5.0 +; An invalid color like "none" or "disable" will have the default style +; More info: https://developers.google.com/web/updates/2014/11/Support-for-theme-color-in-Chrome-39-for-Android +THEME_COLOR_META_TAG = `#ff5343` [ui.admin] ; Number of users that are showed in one page |