summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKushal Pandya <kushal@gitlab.com>2017-12-22 13:05:46 +0530
committerKushal Pandya <kushal@gitlab.com>2017-12-26 13:29:34 +0530
commit495c714e14b7b15354e29caead680a5f104c7a87 (patch)
tree5f75b7e145ef84bf3825fde926710d52b74c41a7
parentf39f5d2f230d0b99852a6f5e40c2150a51022856 (diff)
downloadgitlab-ce-495c714e14b7b15354e29caead680a5f104c7a87.tar.gz
Update styles to show `updatedAt`
-rw-r--r--app/assets/stylesheets/framework/lists.scss43
1 files changed, 34 insertions, 9 deletions
diff --git a/app/assets/stylesheets/framework/lists.scss b/app/assets/stylesheets/framework/lists.scss
index f79a71221c4..a063b82d193 100644
--- a/app/assets/stylesheets/framework/lists.scss
+++ b/app/assets/stylesheets/framework/lists.scss
@@ -125,10 +125,8 @@ ul.content-list {
}
.description {
- p {
- @include str-truncated;
- margin-bottom: 0;
- }
+ @include str-truncated;
+ color: $gl-text-color-secondary;
}
.controls {
@@ -314,7 +312,7 @@ ul.indent-list {
border: 2px solid $white-normal;
&.identicon {
- line-height: 30px;
+ line-height: 15px;
}
}
}
@@ -351,6 +349,7 @@ ul.indent-list {
}
.item-type-icon {
+ margin-top: 2px;
width: 20px;
}
@@ -444,6 +443,32 @@ ul.indent-list {
display: block;
padding: 20px 10px;
}
+
+ .stats {
+ line-height: 46px;
+
+ > span {
+ display: inline-flex;
+ align-items: center;
+ height: 16px;
+ }
+
+ .stat-value {
+ margin: 2px 0 0 5px;
+ }
+ }
+ }
+
+ .project-row-contents .stats {
+ line-height: inherit;
+
+ span:first-child {
+ margin-left: 25px;
+ }
+
+ .last-updated {
+ color: $gl-text-color-secondary;
+ }
}
}
@@ -455,12 +480,12 @@ ul.indent-list {
ul.group-list-tree {
li.group-row {
- &.has-description .title {
- line-height: inherit;
+ .title {
+ line-height: $list-text-height;
}
- &:not(.has-description) .title {
- line-height: $list-text-height;
+ &.has-description .title {
+ line-height: inherit;
}
}
}