diff options
author | Rémy Boulanouar <rboulanouar@gmail.com> | 2017-09-14 13:46:14 +0200 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2017-09-14 14:46:14 +0300 |
commit | e5d80b7090d7c1088854e8a0f8223bdf8a769d12 (patch) | |
tree | 0ce2f8ded817b346d6637dd06cf78080dab17bf1 /public | |
parent | 1739e84ac02c0384c04576a00abab9348293f9c7 (diff) | |
download | gitea-e5d80b7090d7c1088854e8a0f8223bdf8a769d12.tar.gz gitea-e5d80b7090d7c1088854e8a0f8223bdf8a769d12.zip |
Implementation of all repositories of a user from user->settings (#1740)
* Implementation of all repositories of a user from user->settings
* Update message when no repository found
* Update according to comments
* Change UI to have a better look
* improved user repositories UI
Diffstat (limited to 'public')
-rw-r--r-- | public/css/index.css | 3 | ||||
-rw-r--r-- | public/less/_user.less | 5 |
2 files changed, 8 insertions, 0 deletions
diff --git a/public/css/index.css b/public/css/index.css index d09490adbe..ebf8cd1a51 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -2877,6 +2877,9 @@ footer .ui.language .menu { padding-top: 15px; padding-bottom: 5px; } +.user.settings .iconFloat { + float: left; +} .dashboard { padding-top: 15px; padding-bottom: 80px; diff --git a/public/less/_user.less b/public/less/_user.less index a3e6852994..7b6294448d 100644 --- a/public/less/_user.less +++ b/public/less/_user.less @@ -101,4 +101,9 @@ padding-top: 15px; padding-bottom: 5px; } + &.settings { + .iconFloat { + float: left; + } + } } |