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:
authorKushal Pandya <kushal@gitlab.com>2018-01-03 09:42:18 +0300
committerKushal Pandya <kushal@gitlab.com>2018-01-04 10:02:00 +0300
commit9222900b5f528ad38299a7dac2b3fa92bdb858e4 (patch)
tree68f36b275147ea601477a231367897223b75ec28 /app/assets/stylesheets/framework/lists.scss
parentcabbb5bdeb5dfc80eb860b8bdb8b2700367ac8d3 (diff)
Fix groups list icon, timestamp alignment and row height
Diffstat (limited to 'app/assets/stylesheets/framework/lists.scss')
-rw-r--r--app/assets/stylesheets/framework/lists.scss27
1 files changed, 24 insertions, 3 deletions
diff --git a/app/assets/stylesheets/framework/lists.scss b/app/assets/stylesheets/framework/lists.scss
index 17915a55b45..f453fc2b547 100644
--- a/app/assets/stylesheets/framework/lists.scss
+++ b/app/assets/stylesheets/framework/lists.scss
@@ -450,6 +450,7 @@ ul.indent-list {
}
.stats {
+ position: relative;
line-height: 46px;
> span {
@@ -459,20 +460,40 @@ ul.indent-list {
min-width: 30px;
}
+ > span:last-child {
+ margin-right: 0;
+ }
+
.stat-value {
margin: 2px 0 0 5px;
}
}
+
+ .controls {
+ margin-left: 5px;
+
+ > .btn {
+ margin-right: $btn-xs-side-margin;
+ }
+ }
}
.project-row-contents .stats {
line-height: inherit;
- span:first-child {
+ > span:first-child {
margin-left: 25px;
}
+ .item-visibility {
+ margin-right: 0;
+ }
+
.last-updated {
+ position: absolute;
+ right: 12px;
+ min-width: 250px;
+ text-align: right;
color: $gl-text-color-secondary;
}
}
@@ -486,11 +507,11 @@ ul.indent-list {
ul.group-list-tree {
li.group-row {
- .title {
+ > .group-row-contents .title {
line-height: $list-text-height;
}
- &.has-description .title {
+ &.has-description > .group-row-contents .title {
line-height: inherit;
}
}