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

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

Issue 9884001: Added screen options menu. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reviewer feedback. Created 8 years, 8 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
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: 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;
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 } 42 }
43 43
44 .toolbar-border { 44 .toolbar-border {
45 border-radius: 7px; 45 border-radius: 7px;
46 border: 3px solid #4695ff; 46 border: 3px solid #4695ff;
47 width: 620px; 47 width: 620px;
48 padding: 10px 7px 5px 7px; 48 padding: 10px 7px 5px 7px;
49 background-color: #e9e9e9; 49 background-color: #e9e9e9;
50 -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); 50 -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
51 pointer-events: all; 51 pointer-events: all;
52 display: -webkit-box;
52 } 53 }
53 54
54 /* Ensure that the 'connected to' string doesn't make the tool-bar overflow */ 55 /* Ensure that the 'connected to' string doesn't make the tool-bar overflow */
55 #connected-to { 56 #connected-to {
56 display: inline-block; 57 display: inline-block;
57 max-width: 280px; 58 max-width: 280px;
58 overflow: hidden; 59 overflow: hidden;
59 margin-__MSG_@@bidi_end_edge__: 8px; 60 margin-__MSG_@@bidi_end_edge__: 8px;
60 white-space: nowrap; 61 white-space: nowrap;
61 } 62 }
(...skipping 21 matching lines...) Expand all
83 } 84 }
84 85
85 86
86 .toolbar-stub:hover .arrow-down { 87 .toolbar-stub:hover .arrow-down {
87 opacity: 1.0; 88 opacity: 1.0;
88 } 89 }
89 90
90 .toolbar-visible .arrow-down { 91 .toolbar-visible .arrow-down {
91 -webkit-transform: rotate(180deg); 92 -webkit-transform: rotate(180deg);
92 } 93 }
OLDNEW
« remoting/webapp/client_session.js ('K') | « remoting/webapp/remoting.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698