Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/stylesheets/page_bundles/milestone.scss')
-rw-r--r--app/assets/stylesheets/page_bundles/milestone.scss23
1 files changed, 20 insertions, 3 deletions
diff --git a/app/assets/stylesheets/page_bundles/milestone.scss b/app/assets/stylesheets/page_bundles/milestone.scss
index 03dd12ec230..08d9d24d246 100644
--- a/app/assets/stylesheets/page_bundles/milestone.scss
+++ b/app/assets/stylesheets/page_bundles/milestone.scss
@@ -65,15 +65,32 @@ $status-box-line-height: 26px;
line-height: $line-height-base;
padding: 14px 16px;
display: flex;
+ justify-content: space-between;
.title {
flex: 1;
flex-grow: 2;
}
- .counter {
- flex: 0;
- padding-left: 16px;
+ .issuable-count-weight {
+ white-space: nowrap;
+
+ .counter,
+ .weight {
+ color: var(--gray-500, $gray-500);
+ font-weight: $gl-font-weight-bold;
+ }
+ }
+
+ &.text-white {
+ .issuable-count-weight svg {
+ fill: $white;
+ }
+
+ .issuable-count-weight .counter,
+ .weight {
+ color: var(--white, $white);
+ }
}
}
}