summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2018-02-19 17:27:23 +0000
committerFilipa Lacerda <filipa@gitlab.com>2018-02-19 17:27:23 +0000
commit9f06e3139803f0f20a0150bfe3ab13a06f2e3148 (patch)
tree90a13584d4741430d04e54cda9043d71463d2862
parentfb2a76ac484f5bba305abdf7b54a18ee8133f63f (diff)
parentaf49e61e0d501f10299f567fec01d9da2dcebf3a (diff)
downloadgitlab-ce-9f06e3139803f0f20a0150bfe3ab13a06f2e3148.tar.gz
Merge branch 'kp-fix-stacked-bar-progress-value-clipping' into 'master'
Fix single digit value clipping for stacked progress bar Closes gitlab-ee#4864 See merge request gitlab-org/gitlab-ce!17217
-rw-r--r--app/assets/stylesheets/framework/stacked_progress_bar.scss2
-rw-r--r--changelogs/unreleased/kp-fix-stacked-bar-progress-value-clipping.yml5
2 files changed, 6 insertions, 1 deletions
diff --git a/app/assets/stylesheets/framework/stacked_progress_bar.scss b/app/assets/stylesheets/framework/stacked_progress_bar.scss
index 4869cda73e5..528ba53a48b 100644
--- a/app/assets/stylesheets/framework/stacked_progress_bar.scss
+++ b/app/assets/stylesheets/framework/stacked_progress_bar.scss
@@ -10,7 +10,7 @@
.status-neutral,
.status-red, {
height: 100%;
- min-width: 25px;
+ min-width: 30px;
padding: 0 5px;
font-size: $tooltip-font-size;
font-weight: normal;
diff --git a/changelogs/unreleased/kp-fix-stacked-bar-progress-value-clipping.yml b/changelogs/unreleased/kp-fix-stacked-bar-progress-value-clipping.yml
new file mode 100644
index 00000000000..690536a533b
--- /dev/null
+++ b/changelogs/unreleased/kp-fix-stacked-bar-progress-value-clipping.yml
@@ -0,0 +1,5 @@
+---
+title: Fix single digit value clipping for stacked progress bar
+merge_request: 17217
+author:
+type: fixed