summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-05-26 14:21:34 -0500
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-05-26 14:21:34 -0500
commit7903e44efc9af625b8d28cc93ad0a88b585e751e (patch)
tree680f0ae95ab18a0cd2591e07bacf3f39515377f6
parent8f11d35a9204de4f681e0cbfef54b1890d3b77da (diff)
downloadgitlab-ce-scroll-links-bug.tar.gz
Fix bug where fade div covers up controls buttonscroll-links-bug
-rw-r--r--app/assets/stylesheets/framework/nav.scss21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/assets/stylesheets/framework/nav.scss b/app/assets/stylesheets/framework/nav.scss
index adfe5540704..7eb7a8e4544 100644
--- a/app/assets/stylesheets/framework/nav.scss
+++ b/app/assets/stylesheets/framework/nav.scss
@@ -336,6 +336,16 @@
@include fade(right, rgba(255, 255, 255, 0.4), $white-light);
left: 0;
}
+
+ &.event-filter {
+ .fade-right {
+ visibility: hidden;
+
+ @media (max-width: $screen-xs-max) {
+ visibility: visible;
+ }
+ }
+ }
}
}
@@ -346,3 +356,14 @@
top: ($header-height * 2) + 2;
}
}
+
+.activities {
+
+ .nav-block {
+ border-bottom: 1px solid $border-color;
+
+ .nav-links {
+ border-bottom: none;
+ }
+ }
+}