OLD | NEW |
1 /* Copyright 2014 The Chromium Authors. All rights reserved. | 1 /* Copyright 2014 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 .cast-menu { | 5 .cast-menu { |
6 border: 1px solid #7f7f7f; | 6 border: 1px solid #7f7f7f; |
7 border-radius: 1px; | 7 border-radius: 1px; |
8 min-width: 120px; | 8 min-width: 120px; |
9 padding: 0; | 9 padding: 0; |
10 position: absolute; | 10 position: absolute; |
11 z-index: 1000; | 11 z-index: 1000; |
12 } | 12 } |
13 | 13 |
14 .cast-menu.hidden { | 14 .cast-menu.hidden { |
15 display: none; | 15 display: none; |
16 } | 16 } |
17 | 17 |
18 .cast-menu > :not(hr) { | 18 .cast-menu > :not(hr) { |
19 background-color: #fff; | 19 background-color: #fff; |
20 font-size: 12px; | 20 font-size: 12px; |
21 padding: 5px 10px; /* top&bottom, left&right */ | 21 padding: 5px 10px; /* top&bottom, left&right */ |
22 text-overflow: ellipsis; | 22 text-overflow: ellipsis; |
23 } | 23 } |
24 | 24 |
25 .cast-menu > :not(hr):hover { | 25 .cast-menu > :not(hr):hover { |
26 background-color: #eee; | 26 background-color: #eee; |
27 } | 27 } |
28 | |
OLD | NEW |