OLD | NEW |
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 .menu-button { | 6 .menu-button { |
7 position: relative; | 7 position: relative; |
8 } | 8 } |
9 | 9 |
10 .menu-button-activator + ul { | 10 .menu-button-activator + ul { |
11 visibility: hidden; | 11 visibility: hidden; |
12 position: absolute; | 12 position: absolute; |
| 13 line-height: normal; |
| 14 text-align: __MSG_@@bidi_start_edge__; |
13 } | 15 } |
14 | 16 |
15 .menu-button-activator + ul:not(.right-align) { | 17 .menu-button-activator + ul:not(.right-align) { |
16 left: 1px; | 18 left: 1px; |
17 } | 19 } |
18 | 20 |
19 .menu-button-activator + ul.right-align { | 21 .menu-button-activator + ul.right-align { |
20 right: 1px; | 22 right: 1px; |
21 } | 23 } |
22 | 24 |
23 .menu-button-activator.active + ul { | 25 .menu-button-activator.active + ul { |
24 visibility: visible; | 26 visibility: visible; |
25 } | 27 } |
26 | 28 |
27 .menu-button-activator.active { | 29 button.menu-button-activator.active { |
28 background-color: #EEE; | 30 background-color: #EEE; |
29 background-image: -webkit-gradient(linear, left top, left bottom, | 31 background-image: -webkit-gradient(linear, left top, left bottom, |
30 from(#EEE), to(#E0E0E0)); | 32 from(#EEE), to(#E0E0E0)); |
31 box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); | 33 box-shadow: inset 0px 1px 2px rgba(0, 0, 0, 0.1); |
32 border: 1px solid #CCC; | 34 border: 1px solid #CCC; |
33 color: #333; | 35 color: #333; |
34 } | 36 } |
35 | 37 |
36 .menu-button-activator .kd-disclosureindicator { | 38 .menu-button-activator .kd-disclosureindicator { |
37 vertical-align: middle; | 39 vertical-align: middle; |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 } | 82 } |
81 | 83 |
82 .help-icon:hover, .help-icon.active { | 84 .help-icon:hover, .help-icon.active { |
83 opacity: 0.5; | 85 opacity: 0.5; |
84 } | 86 } |
85 | 87 |
86 #help-feedback-toolbar { | 88 #help-feedback-toolbar { |
87 margin-left: 8px; | 89 margin-left: 8px; |
88 margin-top: 4px; | 90 margin-top: 4px; |
89 } | 91 } |
OLD | NEW |