From 5d9ae252829c9a07a6a89c6347b74bf987fd77f0 Mon Sep 17 00:00:00 2001 From: Paulo Reis Date: Tue, 6 Dec 2016 15:41:58 +0000 Subject: [PATCH] Allow announcements to overflow the header. --- .../web/public/stylesheets/app/project-list.less | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/services/web/public/stylesheets/app/project-list.less b/services/web/public/stylesheets/app/project-list.less index 796ce3e747..d2562d4546 100644 --- a/services/web/public/stylesheets/app/project-list.less +++ b/services/web/public/stylesheets/app/project-list.less @@ -19,7 +19,6 @@ .project-list-page { position: relative; - overflow: hidden; } .project-header { @@ -320,8 +319,12 @@ ul.project-list { .announcements { position: absolute; + top: -100%; bottom: 0; - right: 3%; + right: 0; + height: auto; + width: 100%; + overflow: hidden; } .announcements-backdrop { @@ -339,7 +342,7 @@ ul.project-list { .announcements-btn { position: absolute; bottom: -50px; - right: 0; + right: 3%; width: 80px; height: 80px; background: url(/img/lion-128.png) no-repeat center/80% transparent; @@ -384,7 +387,8 @@ ul.project-list { .announcements-body { position: absolute; - right: 95px; + right: 3%; + margin-right: 95px; bottom: 30px; width: 700px; min-height: 100px;