Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1167)

Unified Diff: remoting/webapp/me2mom/toolbar.css

Issue 7383015: Replace in-session header with auto-hide tool-bar. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed comment. Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/webapp/me2mom/remoting.js ('k') | remoting/webapp/me2mom/toolbar-stub.png » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
+}
« no previous file with comments | « remoting/webapp/me2mom/remoting.js ('k') | remoting/webapp/me2mom/toolbar-stub.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698