Index: remoting/webapp/me2mom/toolbar.css |
diff --git a/remoting/webapp/me2mom/toolbar.css b/remoting/webapp/me2mom/toolbar.css |
new file mode 100644 |
index 0000000000000000000000000000000000000000..d5991deca86f7947eebb0bfc7edc52dd9f0822bf |
--- /dev/null |
+++ b/remoting/webapp/me2mom/toolbar.css |
@@ -0,0 +1,50 @@ |
+/* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+.toolbar-container { |
+ position: absolute; |
+ top: -46px; |
+ width: 640px; |
+ left: 50%; |
+ margin-left: -320px; |
+ -webkit-transition: top 0.2s linear; |
+ -webkit-transition-delay: 0.7s; |
+} |
+ |
+.toolbar-container:hover { |
+ top: -8px; |
+ -webkit-transition-delay: 0s; |
+} |
+ |
+.toolbar-container div { |
+ margin-left: auto; |
+ margin-right: auto; |
+} |
+ |
+.toolbar-stub { |
+ width: 134px; /* Needs to match the width of the 'stub' img */ |
+} |
+ |
+.toolbar-border { |
+ border-radius: 7px; |
+ border: 3px solid #4695ff; |
+ width: 640px; |
+ padding: 10px 5px 5px 5px; |
+ background-color: #e9e9e9; |
+ -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); |
+} |
+ |
+/* Ensure that the 'connected to' string doesn't make the tool-bar overflow */ |
+#connected-to { |
+ display: inline-block; |
+ max-width: 240px; |
+ overflow: hidden; |
+ margin-right: 1em; |
+ white-space: nowrap; |
+} |
+ |
+.right-align { |
+ float: right; |
+} |