summaryrefslogtreecommitdiff
path: root/app/assets
diff options
context:
space:
mode:
authorAndrew Smith <espadav8@gmail.com>2016-11-30 23:17:21 +1000
committerAndrew Smith <espadav8@gmail.com>2017-02-15 07:26:47 +1000
commitfa79fefef8880ac4ba8b4390dd191f8f04171025 (patch)
tree4936cec879f07ad58c228221bc6663032cd2b3f3 /app/assets
parentedb8ed36cd5ce315ca45a047bd06ab1dfcf44203 (diff)
downloadgitlab-ce-fa79fefef8880ac4ba8b4390dd191f8f04171025.tar.gz
Fix position of counters within milestone panels
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/stylesheets/pages/milestone.scss20
1 files changed, 20 insertions, 0 deletions
diff --git a/app/assets/stylesheets/pages/milestone.scss b/app/assets/stylesheets/pages/milestone.scss
index 3da1150f89b..27c47d36818 100644
--- a/app/assets/stylesheets/pages/milestone.scss
+++ b/app/assets/stylesheets/pages/milestone.scss
@@ -30,6 +30,26 @@
word-wrap: break-word;
}
}
+
+ .panel-heading {
+ line-height: $line-height-base;
+ padding: 14px 16px;
+ display: -webkit-flex;
+ display: flex;
+
+ .title {
+ -webkit-flex: 1;
+ -webkit-flex-grow: 1;
+ flex: 1;
+ flex-grow: 2;
+ }
+
+ .counter {
+ -webkit-flex: 1;
+ flex: 0;
+ padding-left: 16px;
+ }
+ }
}
.milestone-summary {