| Index: remoting/webapp/me2mom/toolbar.css
|
| diff --git a/remoting/webapp/me2mom/toolbar.css b/remoting/webapp/me2mom/toolbar.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d5a92b6f0552ef3d602948a88d85923da1f50bd8
|
| --- /dev/null
|
| +++ b/remoting/webapp/me2mom/toolbar.css
|
| @@ -0,0 +1,45 @@
|
| +/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| +.toolbar-container {
|
| + position: absolute;
|
| + top: -46px;
|
| + width: 640px;
|
| + left: 50%;
|
| + margin-left: -320px;
|
| + -webkit-transition: top 0.2s linear;
|
| + -webkit-transition-delay: 0.7s;
|
| +}
|
| +
|
| +.toolbar-container:hover {
|
| + top: -8px;
|
| + -webkit-transition-delay: 0s;
|
| +}
|
| +
|
| +.toolbar-container div {
|
| + margin-left: auto;
|
| + margin-right: auto;
|
| +}
|
| +
|
| +.toolbar-stub {
|
| + width: 134px; /* Needs to match the width of the 'stub' img */
|
| +}
|
| +
|
| +.toolbar-border {
|
| + border-radius: 7px;
|
| + border: 3px solid #4695ff;
|
| + width: 640px;
|
| + padding: 10px 5px 5px 5px;
|
| + background-color: #e9e9e9;
|
| + -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
|
| +}
|
| +
|
| +#connected-to {
|
| + margin-right: 1em;
|
| +}
|
| +
|
| +.right-align {
|
| + float: right;
|
| +}
|
|
|