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

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

Issue 575303002: Fix bump-scroll on Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 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
« no previous file with comments | « remoting/webapp/fullscreen_v1.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) 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: absolute; 7 position: fixed;
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/fullscreen_v1.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698