| OLD | NEW |
| (Empty) |
| 1 /* Copyright (c) 2011 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 */ | |
| 5 | |
| 6 .toolbar-container { | |
| 7 position: fixed; | |
| 8 top: -45px; | |
| 9 width: 640px; | |
| 10 -webkit-transition: top 0.2s linear; | |
| 11 -webkit-transition-delay: 0.7s; | |
| 12 font-size: 13px; | |
| 13 pointer-events: none; | |
| 14 z-index: 1; | |
| 15 } | |
| 16 | |
| 17 .toolbar-container button { | |
| 18 padding: 3px 9px; | |
| 19 } | |
| 20 | |
| 21 .toolbar-visible { | |
| 22 top: -8px; | |
| 23 -webkit-transition-delay: 0s; | |
| 24 } | |
| 25 | |
| 26 .toolbar-container div { | |
| 27 margin-left: auto; | |
| 28 margin-right: auto; | |
| 29 } | |
| 30 | |
| 31 .toolbar-stub { | |
| 32 position: absolute; | |
| 33 width: 134px; | |
| 34 height: 7px; | |
| 35 left: 253px; | |
| 36 border-bottom-left-radius: 7px; | |
| 37 border-bottom-right-radius: 7px; | |
| 38 background-color: #4695ff; | |
| 39 -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); | |
| 40 pointer-events: all; | |
| 41 clip: rect(0, 999px, 999px, -999px); | |
| 42 } | |
| 43 | |
| 44 .toolbar-border { | |
| 45 border-radius: 7px; | |
| 46 border: 3px solid #4695ff; | |
| 47 width: 620px; | |
| 48 padding: 10px 7px 5px 7px; | |
| 49 background-color: #e9e9e9; | |
| 50 -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); | |
| 51 pointer-events: all; | |
| 52 } | |
| 53 | |
| 54 /* Ensure that the 'connected to' string doesn't make the tool-bar overflow */ | |
| 55 #connected-to { | |
| 56 display: inline-block; | |
| 57 max-width: 280px; | |
| 58 overflow: hidden; | |
| 59 margin-__MSG_@@bidi_end_edge__: 8px; | |
| 60 white-space: nowrap; | |
| 61 } | |
| 62 | |
| 63 .end-align { | |
| 64 float: __MSG_@@bidi_end_edge__; | |
| 65 } | |
| 66 | |
| 67 .arrow-down { | |
| 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: auto; | |
| 74 right: auto; | |
| 75 } | |
| OLD | NEW |