OLD | NEW |
(Empty) | |
| 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 |
| 5 #services-list > div.deletable-item { |
| 6 /* override the fixed 32px height of standard row. */ |
| 7 height: auto; |
| 8 } |
| 9 |
| 10 .intents-column-headers { |
| 11 display: -webkit-box; |
| 12 font-size: 13px; |
| 13 font-weight: bold; |
| 14 } |
| 15 |
| 16 .intents-row { |
| 17 margin: 5px; |
| 18 } |
| 19 |
| 20 .intents-preferred-service { |
| 21 font-weight: bold; |
| 22 } |
| 23 |
| 24 .intents-service-matching-criteria { |
| 25 color: #555; |
| 26 font-size: .85em; |
| 27 } |
| 28 |
| 29 .intents-remove-column { |
| 30 -webkit-box-flex: 1; |
| 31 } |
| 32 |
| 33 div > .intents-remove-column { |
| 34 opacity: 0; |
| 35 } |
| 36 |
| 37 div:not(.none):hover > .intents-remove-column { |
| 38 opacity: 1; |
| 39 } |
| 40 |
| 41 #intents { |
| 42 min-height: 250px; |
| 43 } |
OLD | NEW |