diff options
author | silverwind <me@silverwind.io> | 2016-08-03 17:53:28 +0200 |
---|---|---|
committer | 无闻 <u@gogs.io> | 2016-08-03 08:53:28 -0700 |
commit | b1133c99348c332df4cede25af9093aa0cfd302b (patch) | |
tree | 4be386db23eaa3e5253ff2f1344b306d9cedc521 /public/css | |
parent | 991ce42c48d2dc5e8be42245a432e782df0f3d23 (diff) |
Lighter icon colors for repo files (#3351)
* Lighter icon colors for repo files
* also color submodule icon
Diffstat (limited to 'public/css')
-rw-r--r-- | public/css/gogs.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/public/css/gogs.css b/public/css/gogs.css index f512a563..ae58c7c5 100644 --- a/public/css/gogs.css +++ b/public/css/gogs.css @@ -1248,10 +1248,15 @@ footer .ui.language .menu { .repository.file.list #repo-files-table tbody .octicon { margin-left: 3px; margin-right: 5px; + color: #777; } .repository.file.list #repo-files-table tbody .octicon.octicon-mail-reply { margin-right: 10px; } +.repository.file.list #repo-files-table tbody .octicon.octicon-file-directory, +.repository.file.list #repo-files-table tbody .octicon.octicon-file-submodule { + color: #1e70bf; +} .repository.file.list #repo-files-table td { padding-top: 8px; padding-bottom: 8px; |