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

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

Issue 265393005: Implement apps v2 custom window frame. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 7 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/remoting.js ('k') | remoting/webapp/window_frame.css » ('j') | 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) 2012 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2012 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: absolute;
8 top: -48px; 8 top: -48px;
9 width: 640px; 9 width: 640px;
10 -webkit-transition: top 0.15s ease; 10 -webkit-transition: top 0.15s ease;
11 font-size: 13px; 11 font-size: 13px;
12 pointer-events: none; 12 pointer-events: none;
13 z-index: 1; 13 z-index: 1;
14 } 14 }
15 15
16 .toolbar-visible { 16 .toolbar-visible {
17 top: -8px; 17 top: -8px;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 } 85 }
86 86
87 87
88 .toolbar-stub:hover .arrow-down { 88 .toolbar-stub:hover .arrow-down {
89 opacity: 1.0; 89 opacity: 1.0;
90 } 90 }
91 91
92 .toolbar-visible .arrow-down { 92 .toolbar-visible .arrow-down {
93 -webkit-transform: rotate(180deg); 93 -webkit-transform: rotate(180deg);
94 } 94 }
OLDNEW
« no previous file with comments | « remoting/webapp/remoting.js ('k') | remoting/webapp/window_frame.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698