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:
authorAlfredo Sumaran <alfredo@gitlab.com>2017-05-17 09:28:28 +0300
committerAlfredo Sumaran <alfredo@gitlab.com>2017-05-17 09:41:47 +0300
commita87d447c3547e8ccf96449056b450574bbbf7980 (patch)
tree22d924f962e811112b192fda7a179614977d4d55 /app/assets/stylesheets/framework/lists.scss
parent07f985bc486694a2275666249f883f76d83b0b37 (diff)
Restore previous tree format
Tree object is an array now. - All groups are displayed at the top level - To access subgroups now we have to click every parent which will make a request to fetch sub groups. [ci skip]
Diffstat (limited to 'app/assets/stylesheets/framework/lists.scss')
-rw-r--r--app/assets/stylesheets/framework/lists.scss18
1 files changed, 5 insertions, 13 deletions
diff --git a/app/assets/stylesheets/framework/lists.scss b/app/assets/stylesheets/framework/lists.scss
index b79afa51b62..0b1e97f67a1 100644
--- a/app/assets/stylesheets/framework/lists.scss
+++ b/app/assets/stylesheets/framework/lists.scss
@@ -307,7 +307,7 @@ ul.indent-list {
border-top: solid 1px $border-white-light;
position: relative;
- &:before {
+ &::before {
content: '';
display: block;
width: 0;
@@ -320,8 +320,8 @@ ul.indent-list {
.group-row {
position: relative;
-
- &:before {
+
+ &::before {
content: "";
display: block;
width: 10px;
@@ -332,20 +332,12 @@ ul.indent-list {
left: -16px;
}
- &:last-child:before {
- background: white;
+ &:last-child::before {
+ background: $white-light;
height: auto;
top: 30px;
bottom: 0;
}
}
}
-
- .branch-connector {
- &:after {
- content: ' ';
- position: absolute;
- background-color: red;
- }
- }
}