Separate Simple Backend creation from initialization.
[chromium-blink-merge.git] / remoting / webapp / toolbar.css
blob2e4854e8d254b0a6ee45a34f5c1a95c4cc70675b
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
3 * found in the LICENSE file.
4 */
6 .toolbar-container {
7 position: fixed;
8 top: -48px;
9 width: 640px;
10 -webkit-transition: top 0.15s ease;
11 font-size: 13px;
12 pointer-events: none;
13 z-index: 1;
16 .toolbar-visible {
17 top: -8px;
20 .toolbar-stub {
21 position: absolute;
22 width: 134px;
23 height: 7px;
24 left: 243px;
25 border-bottom-left-radius: 7px;
26 border-bottom-right-radius: 7px;
27 background-color: #4695ff;
28 box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
29 pointer-events: all;
30 clip: rect(0, 999px, 999px, -999px);
31 -webkit-transition: height 0.15s ease;
34 .toolbar-stub-extended,
35 .toolbar-visible .toolbar-stub {
36 height: 14px;
39 .toolbar-border {
40 border-radius: 7px;
41 border: 3px solid #4695ff;
42 width: 620px;
43 padding: 10px 7px 5px 7px;
44 background-color: #e9e9e9;
45 box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
46 pointer-events: all;
47 display: -webkit-flex;
50 .toolbar-border > div {
51 margin: 4px;
54 /* Ensure that the 'connected to' string doesn't make the tool-bar overflow */
55 #connected-to {
56 max-width: 280px;
57 overflow: hidden;
58 margin-__MSG_@@bidi_end_edge__: 8px;
59 white-space: nowrap;
62 .end-align {
63 float: __MSG_@@bidi_end_edge__;
66 .arrow-down {
67 position: absolute;
68 width: 0;
69 height: 0;
70 border-left: 5px solid transparent;
71 border-right: 5px solid transparent;
72 border-top: 5px solid white;
73 left: 62px;
74 bottom: 2px;
75 opacity: 0.5;
76 -webkit-transition: bottom 0.15s ease, opacity 0.1s linear;
79 .toolbar-stub-extended .arrow-down,
80 .toolbar-visible .arrow-down {
81 bottom: 6px;
85 .toolbar-stub:hover .arrow-down {
86 opacity: 1.0;
89 .toolbar-visible .arrow-down {
90 -webkit-transform: rotate(180deg);