From dbcf2b64995d33b314f24c154f7d354d3fc5db4c Mon Sep 17 00:00:00 2001 From: Kerrick Long Date: Thu, 21 Jul 2011 18:34:58 -0500 Subject: [PATCH] styled notificationArea --- css/popup.css | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/css/popup.css b/css/popup.css index 7150e57..e90d60e 100644 --- a/css/popup.css +++ b/css/popup.css @@ -253,3 +253,27 @@ ol[data-commentspage="true"] button.cancel { #submit .status { color: red; } +#notificationArea { + position: fixed; + z-index: 5; + top: -3px; + left: 0; + width: 100%; + height:20px; + text-align: center; + display: none; +} +#notificationArea span { + background: #FEF7CB; + padding: 3px 5px; + line-height:20px; + font-size: medium; + border: 1px solid #FFE475; + border-radius: 3px; + box-shadow: 0px 2px 5px #444; + display:inline-block; +} +#notificationArea span.error { + background: #FECBCB; + border: 1px solid #FF7575; +}