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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « remoting/webapp/me2mom/remoting.js ('k') | remoting/webapp/me2mom/toolbar-stub.png » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file.
4 */
5
6 .toolbar-container {
7 position: absolute;
8 top: -46px;
9 width: 640px;
10 left: 50%;
11 margin-left: -320px;
12 -webkit-transition: top 0.2s linear;
13 -webkit-transition-delay: 0.7s;
14 }
15
16 .toolbar-container:hover {
17 top: -8px;
18 -webkit-transition-delay: 0s;
19 }
20
21 .toolbar-container div {
22 margin-left: auto;
23 margin-right: auto;
24 }
25
26 .toolbar-stub {
27 width: 134px; /* Needs to match the width of the 'stub' img */
28 }
29
30 .toolbar-border {
31 border-radius: 7px;
32 border: 3px solid #4695ff;
33 width: 640px;
34 padding: 10px 5px 5px 5px;
35 background-color: #e9e9e9;
36 -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
37 }
38
39 /* Ensure that the 'connected to' string doesn't make the tool-bar overflow */
40 #connected-to {
41 display: inline-block;
42 max-width: 240px;
43 overflow: hidden;
44 margin-right: 1em;
45 white-space: nowrap;
46 }
47
48 .right-align {
49 float: right;
50 }
OLDNEW
« 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