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

Side by Side Diff: remoting/webapp/me2mom/toolbar.css

Issue 7821017: Center the desktop if it's smaller than the frame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments. Created 9 years, 3 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/client_session.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 * found in the LICENSE file.
4 */ 4 */
5 5
6 .toolbar-container { 6 .toolbar-container {
7 position: fixed; 7 position: fixed;
8 top: -45px; 8 top: -45px;
9 width: 640px; 9 width: 640px;
10 left: 50%; 10 left: 50%;
11 margin-left: -320px; 11 margin-left: -320px;
12 -webkit-transition: top 0.2s linear; 12 -webkit-transition: top 0.2s linear;
13 -webkit-transition-delay: 0.7s; 13 -webkit-transition-delay: 0.7s;
14 font-size: 13px; 14 font-size: 13px;
15 pointer-events: none; 15 pointer-events: none;
16 z-index: 1;
16 } 17 }
17 18
18 .toolbar-container button { 19 .toolbar-container button {
19 padding: 3px 9px; 20 padding: 3px 9px;
20 } 21 }
21 22
22 .toolbar-container:hover, .toolbar-preview { 23 .toolbar-container:hover, .toolbar-preview {
23 top: -8px; 24 top: -8px;
24 -webkit-transition-delay: 0s; 25 -webkit-transition-delay: 0s;
25 } 26 }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 68
68 .arrow-down { 69 .arrow-down {
69 width: 0; 70 width: 0;
70 height: 0; 71 height: 0;
71 border-left: 5px solid transparent; 72 border-left: 5px solid transparent;
72 border-right: 5px solid transparent; 73 border-right: 5px solid transparent;
73 border-top: 5px solid white; 74 border-top: 5px solid white;
74 left: auto; 75 left: auto;
75 right: auto; 76 right: auto;
76 } 77 }
OLDNEW
« no previous file with comments | « remoting/webapp/me2mom/client_session.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698