diff options
author | JakobDev <jakobdev@gmx.de> | 2023-06-05 08:25:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-05 14:25:46 +0800 |
commit | 7d192cb674bc475b123c84b205aca821247c5dd1 (patch) | |
tree | ef807c91835dc2cbf8f8b6e9be2f5ca6f45232d6 /web_src | |
parent | d63d8108b455c7288710e2c61834f848759992be (diff) | |
download | gitea-7d192cb674bc475b123c84b205aca821247c5dd1.tar.gz gitea-7d192cb674bc475b123c84b205aca821247c5dd1.zip |
Add Progressbar to Milestone Page (#25050)
This is adds the progress bar, which is already on the Milestone List,
also to the Page of a Single Milestone.
![grafik](https://github.com/go-gitea/gitea/assets/15185051/24e0fa28-369b-4bb9-807a-ee823b46ba81)
---------
Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/css/repo.css | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/web_src/css/repo.css b/web_src/css/repo.css index 71cd7a2846..b2b544a7ea 100644 --- a/web_src/css/repo.css +++ b/web_src/css/repo.css @@ -1225,6 +1225,11 @@ height: 200px; } +.milestone-progress-big { + width: min(420px, 96vw); + height: 10px; +} + .repository.compare.pull .show-form-container { text-align: left; } |