$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80662 - website/public_html/beta/style-v2/css_0
From: dnljms_at_[hidden]
Date: 2012-09-23 07:21:11
Author: danieljames
Date: 2012-09-23 07:21:10 EDT (Sun, 23 Sep 2012)
New Revision: 80662
URL: http://svn.boost.org/trac/boost/changeset/80662
Log:
Website: Place the out of date notice over the header.
Placing it inline was messy on some pages (such as exception), so
position it above the header. A bit scrappy, and looks pretty bad when
the window is narrow, but I didn't want to mess around with the header,
so this seemed like the easiest solution.
Text files modified: 
   website/public_html/beta/style-v2/css_0/header.css |    20 +++++++++++++++++---                    
   1 files changed, 17 insertions(+), 3 deletions(-)
Modified: website/public_html/beta/style-v2/css_0/header.css
==============================================================================
--- website/public_html/beta/style-v2/css_0/header.css	(original)
+++ website/public_html/beta/style-v2/css_0/header.css	2012-09-23 07:21:10 EDT (Sun, 23 Sep 2012)
@@ -102,10 +102,24 @@
 #heading .heading-search #search-text #q:hover {
   border-bottom: 1px #FFFFFF solid;
 }
+
 .boost-common-header-notice {
+    font-family: sans-serif;
+    font-size: 13px;
+    position: absolute;
+    top: 10px;
+    left: 300px;
+    max-width: 400px;
+    max-height: 66px;
+    overflow: hidden;
     border: 1px solid #aa5;
     background: #ffc;
     color: #000;
-    margin: 0 auto 1em auto;
-    padding: 0.5em 1em;
-}
\ No newline at end of file
+    padding: 10px 13px;
+    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
+}
+
+.boost-common-header-notice a {
+    text-decoration: underline;
+    color: #005a9c;
+}