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:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-08-17 20:15:36 +0300
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-08-17 20:15:36 +0300
commit162ef4b07262fdc0ad75564225f311a67c11833b (patch)
treeeb13eadc8c4c68b663839bde67854df4b998cb5e /app/assets/stylesheets/pages/builds.scss
parent8dbb1b2fbeff6caf1ad91173d707b5f55469cb40 (diff)
Display jobs as scrolling list in sidebar
Diffstat (limited to 'app/assets/stylesheets/pages/builds.scss')
-rw-r--r--app/assets/stylesheets/pages/builds.scss68
1 files changed, 49 insertions, 19 deletions
diff --git a/app/assets/stylesheets/pages/builds.scss b/app/assets/stylesheets/pages/builds.scss
index 5ecbe038612..f22b5fb84f8 100644
--- a/app/assets/stylesheets/pages/builds.scss
+++ b/app/assets/stylesheets/pages/builds.scss
@@ -53,22 +53,6 @@
left: 70px;
}
}
-
- .build-dropdown {
- display: inline-block;
- margin-top: 16px;
-
- svg {
- position: relative;
- top: 2px;
- margin-right: 3px;
- height: 13px;
- }
-
- .stage-item {
- cursor: pointer;
- }
- }
}
.build-header {
@@ -116,24 +100,70 @@
}
.right-sidebar.build-sidebar {
- padding-top: $gl-padding;
- padding-bottom: $gl-padding;
+ padding: $gl-padding 0;
+ border-left: 1px solid $border-color;
&.right-sidebar-collapsed {
display: none;
}
+ .blocks-container {
+ padding: $gl-padding;
+ }
+
.block {
width: 100%;
}
.build-sidebar-header {
- padding-top: 0;
+ padding: 0 $gl-padding $gl-padding;
.gutter-toggle {
margin-top: 0;
}
}
+
+ .stage-item {
+ cursor: pointer;
+
+ &:hover {
+ color: $gl-text-color;
+ }
+ }
+
+ .build-dropdown {
+ padding: 0 $gl-padding;
+ }
+
+ .builds-container {
+ margin: $gl-padding 0;
+ background-color: $white-light;
+ border-top: 1px solid $border-color;
+ border-bottom: 1px solid $border-color;
+
+ svg {
+ position: relative;
+ top: 2px;
+ margin-right: 3px;
+ height: 13px;
+ }
+
+ a {
+ display: block;
+ padding: $gl-padding 10px;
+
+ &:hover {
+ background-color: $row-hover;
+ color: $gl-text-color;
+ }
+ }
+
+ .build-job {
+ &.active {
+ font-weight: bold;
+ }
+ }
+ }
}
.build-detail-row {