summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitrie Hoekstra <dimitriehoekstra@gmail.com>2016-10-31 22:43:44 +0100
committerFatih Acet <acetfatih@gmail.com>2016-11-04 12:37:34 +0300
commit2cb7285bc41f6cb8533c092c067b0f50806655ae (patch)
tree398aeb56ec28cf2d208c9e439cce12b5139f5476
parent957744dab4297f66dc70c1727fe2cf5282d2ea5a (diff)
downloadgitlab-ce-24017-long-build-list-dropdowns-which-scroll-are-not-immediately-obvious.tar.gz
change build list height to show 6,5 builds + improve padding of list, with first/last child selectors24017-long-build-list-dropdowns-which-scroll-are-not-immediately-obvious
-rw-r--r--CHANGELOG.md4
-rw-r--r--app/assets/stylesheets/pages/pipelines.scss10
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd6b4e0ba11..d6e62922ec1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -71,6 +71,10 @@ entry.
- Removes any symlinks before importing a project export file. CVE-2016-9086
- Fixed Import/Export foreign key issue to do with project members.
+- Fix relative links in Markdown wiki when displayed in "Project" tab !7218
+- Reduce the overhead to calculate number of open/closed issues and merge requests within the group or project
+- Fix project features default values
+- Changed build dropdown list length to be 6,5 builds long in the pipeline graph
## 8.13.2 (2016-10-31)
diff --git a/app/assets/stylesheets/pages/pipelines.scss b/app/assets/stylesheets/pages/pipelines.scss
index 4f3a6d01625..bf3cb6e7ad9 100644
--- a/app/assets/stylesheets/pages/pipelines.scss
+++ b/app/assets/stylesheets/pages/pipelines.scss
@@ -444,7 +444,7 @@
}
.grouped-pipeline-dropdown {
- padding: 8px 0;
+ padding: 0;
width: 186px;
left: auto;
right: -197px;
@@ -453,6 +453,14 @@
ul {
max-height: 245px;
overflow: auto;
+
+ li:first-child {
+ padding-top: 8px;
+ }
+
+ li:last-child {
+ padding-bottom: 8px;
+ }
}
a {